Initial commit
This commit is contained in:
16
skills/scaffold-claude-feature/templates/hooks.template.json
Normal file
16
skills/scaffold-claude-feature/templates/hooks.template.json
Normal file
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"hooks": {
|
||||
"[EventName]": [
|
||||
{
|
||||
"matcher": "[ToolPattern or omit for events like Stop]",
|
||||
"hooks": [
|
||||
{
|
||||
"type": "command",
|
||||
"command": "[bash-command or $CLAUDE_PROJECT_DIR/script.sh]",
|
||||
"timeout": 60
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
---
|
||||
name: [Style Name]
|
||||
description: [Brief description shown in /output-style menu]
|
||||
keep-coding-instructions: [true or false]
|
||||
---
|
||||
|
||||
# [Style Name]
|
||||
|
||||
[Your custom system prompt instructions here]
|
||||
|
||||
Define how Claude should behave in this style:
|
||||
- [Behavior 1]
|
||||
- [Behavior 2]
|
||||
- [Behavior 3]
|
||||
|
||||
[Additional guidelines and approach]
|
||||
20
skills/scaffold-claude-feature/templates/skill.template.md
Normal file
20
skills/scaffold-claude-feature/templates/skill.template.md
Normal file
@@ -0,0 +1,20 @@
|
||||
---
|
||||
name: [skill-name-lowercase-with-hyphens]
|
||||
description: [What it does and when to use it. Include trigger keywords.]
|
||||
allowed-tools: [Optional: Read, Write, Bash - omit to inherit all tools]
|
||||
---
|
||||
|
||||
# [Skill Name]
|
||||
|
||||
## Instructions
|
||||
|
||||
1. [Step-by-step guidance]
|
||||
2. [What to do and how]
|
||||
|
||||
## Examples
|
||||
|
||||
[Simple, minimal examples]
|
||||
|
||||
## Tips
|
||||
|
||||
[Best practices or common patterns]
|
||||
@@ -0,0 +1,11 @@
|
||||
---
|
||||
description: [Brief description of what this command does]
|
||||
argument-hint: [arg1] [arg2]
|
||||
allowed-tools: [Tool1, Tool2]
|
||||
---
|
||||
|
||||
[Your command prompt here]
|
||||
|
||||
Use $ARGUMENTS for all args, or $1, $2 for individual args.
|
||||
Use @filepath to reference files.
|
||||
Use !`command` to execute bash (requires allowed-tools).
|
||||
@@ -0,0 +1,20 @@
|
||||
---
|
||||
name: [agent-name-lowercase-with-hyphens]
|
||||
description: [What it does. Use proactively when [condition].]
|
||||
tools: [Optional: Read, Write, Bash - omit to inherit all tools]
|
||||
model: [Optional: sonnet, opus, haiku, or inherit]
|
||||
---
|
||||
|
||||
You are [role description].
|
||||
|
||||
When invoked:
|
||||
1. [Step 1]
|
||||
2. [Step 2]
|
||||
3. [Step 3]
|
||||
|
||||
Focus on:
|
||||
- [Key aspect 1]
|
||||
- [Key aspect 2]
|
||||
- [Key aspect 3]
|
||||
|
||||
[Additional guidance and approach]
|
||||
Reference in New Issue
Block a user