Initial commit
This commit is contained in:
51
skills/builder/assets/templates/agent-template.md
Normal file
51
skills/builder/assets/templates/agent-template.md
Normal file
@@ -0,0 +1,51 @@
|
||||
---
|
||||
name: agent-name
|
||||
description: Brief description of what this agent does and when to use it. Include specific examples like "Use when analyzing code for security vulnerabilities" or "Use for comprehensive code reviews before merging."
|
||||
model: inherit
|
||||
color: blue
|
||||
tools: Read, Write, Edit, Grep, Glob
|
||||
---
|
||||
|
||||
# Agent Name
|
||||
|
||||
You are an expert [domain] specialist with deep knowledge of [specific area].
|
||||
|
||||
## Your Expertise
|
||||
|
||||
- Expertise area 1
|
||||
- Expertise area 2
|
||||
- Expertise area 3
|
||||
|
||||
## Workflow
|
||||
|
||||
When the user requests [task]:
|
||||
|
||||
1. **Analysis Phase**
|
||||
- Step 1
|
||||
- Step 2
|
||||
|
||||
2. **Planning Phase**
|
||||
- Step 1
|
||||
- Step 2
|
||||
|
||||
3. **Implementation Phase**
|
||||
- Step 1
|
||||
- Step 2
|
||||
|
||||
4. **Validation Phase**
|
||||
- Step 1
|
||||
- Step 2
|
||||
|
||||
## Success Criteria
|
||||
|
||||
Your work is successful when:
|
||||
- Criteria 1
|
||||
- Criteria 2
|
||||
- Criteria 3
|
||||
|
||||
## Communication Style
|
||||
|
||||
- Be clear and specific
|
||||
- Provide examples
|
||||
- Explain trade-offs
|
||||
- Reference authoritative sources
|
||||
25
skills/builder/assets/templates/command-template.md
Normal file
25
skills/builder/assets/templates/command-template.md
Normal file
@@ -0,0 +1,25 @@
|
||||
---
|
||||
description: Brief description of what this command does
|
||||
allowed-tools:
|
||||
- Bash(npm:*)
|
||||
- Bash(git:*)
|
||||
- Read
|
||||
- Write
|
||||
args:
|
||||
- name: arg-name
|
||||
description: What this argument does
|
||||
---
|
||||
|
||||
Brief instruction on what to accomplish.
|
||||
|
||||
**Steps:**
|
||||
|
||||
1. Step 1: [action]
|
||||
2. Step 2: [action using $1 for first argument]
|
||||
3. Step 3: [verification]
|
||||
|
||||
**Example usage:**
|
||||
|
||||
```
|
||||
/command-name value
|
||||
```
|
||||
13
skills/builder/assets/templates/plugin.json
Normal file
13
skills/builder/assets/templates/plugin.json
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"name": "plugin-name",
|
||||
"version": "1.0.0",
|
||||
"description": "Brief description of what this plugin does",
|
||||
"author": "Your Name",
|
||||
"homepage": "https://github.com/username/repo",
|
||||
"license": "MIT",
|
||||
"keywords": ["keyword1", "keyword2", "keyword3"],
|
||||
"category": "productivity",
|
||||
"agents": [],
|
||||
"commands": [],
|
||||
"skills": []
|
||||
}
|
||||
84
skills/builder/assets/templates/skill-template.md
Normal file
84
skills/builder/assets/templates/skill-template.md
Normal file
@@ -0,0 +1,84 @@
|
||||
---
|
||||
name: skill-name
|
||||
description: Expert in [domain]. Automatically activates when [specific triggers like file patterns, technologies, or tasks]. Include concrete examples like "working with .py files", "using pytest", or "implementing authentication".
|
||||
---
|
||||
|
||||
# Skill Name
|
||||
|
||||
## Overview
|
||||
|
||||
Brief description of what this skill provides and its core principle.
|
||||
|
||||
## Automatic Activation
|
||||
|
||||
This skill automatically activates when:
|
||||
- Working with specific file types or patterns (e.g., .py, .tsx, Dockerfile)
|
||||
- Using specific technology/framework (e.g., React, Django, Kubernetes)
|
||||
- Implementing specific feature types (e.g., authentication, API endpoints)
|
||||
- Encountering specific problem domains (e.g., performance optimization, security)
|
||||
|
||||
## When NOT to Use This Skill
|
||||
|
||||
Do not activate this skill for:
|
||||
- Unrelated domain 1
|
||||
- Unrelated domain 2
|
||||
- General tasks outside scope
|
||||
|
||||
## Core Expertise Areas
|
||||
|
||||
### Expertise Area 1
|
||||
|
||||
Key concepts and capabilities:
|
||||
- Concept 1
|
||||
- Concept 2
|
||||
- Concept 3
|
||||
|
||||
### Expertise Area 2
|
||||
|
||||
Key concepts and capabilities:
|
||||
- Concept 1
|
||||
- Concept 2
|
||||
|
||||
## Workflows
|
||||
|
||||
### Common Workflow 1
|
||||
|
||||
Steps to accomplish task:
|
||||
1. Step 1
|
||||
2. Step 2
|
||||
3. Step 3
|
||||
|
||||
### Common Workflow 2
|
||||
|
||||
Steps to accomplish task:
|
||||
1. Step 1
|
||||
2. Step 2
|
||||
|
||||
## Best Practices
|
||||
|
||||
- Best practice 1
|
||||
- Best practice 2
|
||||
- Best practice 3
|
||||
|
||||
## Bundled Resources
|
||||
|
||||
This skill includes bundled resources to support its functionality:
|
||||
|
||||
**References** (loaded into context as needed):
|
||||
- `./references/guide-name.md` - Detailed guide on specific topic
|
||||
- `./references/patterns.md` - Common patterns and examples
|
||||
|
||||
**Scripts** (executable utilities):
|
||||
- `./scripts/utility-name.py` - Utility script for common tasks
|
||||
- `./scripts/validate.sh` - Validation helper
|
||||
|
||||
**Assets** (used in output, not loaded into context):
|
||||
- `./assets/templates/template-name.tsx` - Code template for scaffolding
|
||||
- `./assets/boilerplate/` - Project starter structure
|
||||
|
||||
## Success Criteria
|
||||
|
||||
Guidance is successful when:
|
||||
- Criteria 1
|
||||
- Criteria 2
|
||||
- Criteria 3
|
||||
Reference in New Issue
Block a user