Create new skills for the KreativReason E2E CLI plugin, following the standard skill structure and conventions.
/plugin marketplace add KreativReason/merged-end-to-end-ai-dpp---e2e-cli/plugin install kreativreason-e2e-pipeline@kreativreason-marketplaceThis skill inherits all available tools. When active, it can use any tool Claude has access to.
Create new skills for the KreativReason E2E CLI plugin, following the standard skill structure and conventions.
skills/
└── my-new-skill/
├── my-new-skill.md # Documentation
├── index.ts # Entry point (optional)
└── templates/ # Templates (optional)
# [Skill Name] Skill
## Purpose
[One-sentence description of what this skill does]
## Capabilities
- Capability 1
- Capability 2
- Capability 3
## Usage
### Basic Usage
```javascript
// Example code
// More complex example
| Option | Type | Default | Description |
|---|---|---|---|
option1 | string | 'default' | Description |
{
"status": "success",
"data": {}
}
Used by:
## Creating a New Skill
### Step 1: Define Purpose
Clearly articulate:
- What problem does this skill solve?
- Who will use it?
- How does it fit with existing skills?
### Step 2: Design Interface
```typescript
interface SkillInput {
// Input parameters
}
interface SkillOutput {
status: 'success' | 'error';
data: {
// Output data
};
}
mkdir -p skills/my-skill
touch skills/my-skill/my-skill.md
Follow the template above.
Add to plugin.json if needed.
{
"artifact_type": "skill_created",
"status": "success",
"data": {
"skill_name": "my-new-skill",
"directory": "skills/my-new-skill/",
"files_created": [
"skills/my-new-skill/my-new-skill.md"
],
"next_steps": [
"Implement skill logic",
"Add to plugin.json",
"Test with agents"
]
}
}
Skills can be used by:
/kreativreason:create-skill name:"code-metrics" purpose:"Calculate code complexity and quality metrics"
Generated structure:
skills/
└── code-metrics/
├── code-metrics.md
└── index.ts
Generated documentation:
# Code Metrics Skill
## Purpose
Calculate code complexity and quality metrics for codebases.
## Capabilities
- Cyclomatic complexity calculation
- Lines of code counting
- Function/method length analysis
- Dependency counting
...
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.