Initial commit

This commit is contained in:
Zhongwei Li
2025-11-29 18:19:59 +08:00
commit 9f60012661
14 changed files with 824 additions and 0 deletions

View 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
}
]
}
]
}
}

View File

@@ -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]

View 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]

View File

@@ -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).

View File

@@ -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]