🎯

log-analysis

🎯Skill

from doubleslashse/claude-marketplace

VibeIndex|
What it does

I apologize, but I cannot generate a specific description for the "log-analysis" skill because the README does not mention or describe a "log-analysis" skill. The README only shows an example of a ...

πŸ“¦

Part of

doubleslashse/claude-marketplace(29 items)

log-analysis

Installation

πŸ“‹ No install commands found in docs. Showing default command. Check GitHub for actual instructions.
Quick InstallInstall with npx
npx skills add doubleslashse/claude-marketplace --skill log-analysis
1Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

Overview

# Claude Code Plugin Marketplace

A collection of plugins for [Claude Code](https://claude.com/claude-code) that extend its capabilities with specialized workflows, skills, and agents.

Available Plugins

| Plugin | Description | Version |

|--------|-------------|---------|

| [dotnet-tdd](./plugins/dotnet-tdd) | Test-Driven Development for .NET with SOLID, DRY, KISS, YAGNI, and CQS principles | 1.0.0 |

Installation

Install a plugin by pointing Claude Code to the plugin directory:

```bash

claude --plugin-dir ./plugins/dotnet-tdd

```

Repository Structure

```

plugins/

β”œβ”€β”€ dotnet-tdd/ # .NET TDD plugin

β”‚ β”œβ”€β”€ .claude-plugin/

β”‚ β”‚ └── plugin.json # Plugin manifest

β”‚ β”œβ”€β”€ agents/ # Specialized agents

β”‚ β”œβ”€β”€ commands/ # Slash commands

β”‚ β”œβ”€β”€ hooks/ # Event hooks

β”‚ β”œβ”€β”€ skills/ # Domain knowledge

β”‚ └── README.md

└── [future-plugins]/

```

Plugin Anatomy

Each plugin follows a standard structure:

```

plugin-name/

β”œβ”€β”€ .claude-plugin/

β”‚ └── plugin.json # Required: Plugin manifest

β”œβ”€β”€ agents/ # Optional: Subagent definitions

β”œβ”€β”€ commands/ # Optional: Slash commands

β”œβ”€β”€ hooks/ # Optional: Event hooks

β”œβ”€β”€ skills/ # Optional: Knowledge files

└── README.md # Plugin documentation

```

plugin.json

```json

{

"name": "plugin-name",

"version": "1.0.0",

"description": "What the plugin does",

"keywords": ["relevant", "tags"],

"commands": ["./commands/command.md"],

"agents": ["./agents/agent.md"],

"skills": ["./skills/skill-name"],

"hooks": "./hooks/hooks.json"

}

```

Contributing

Want to add a plugin? Submit a PR with your plugin in the plugins/ directory following the structure above.

License

MIT