Marketplace example-skill
Expert at performing task X automatically. Auto-invokes when the user wants to do Y, needs help with Z, or encounters situation W.
install
source · Clone the upstream repo
git clone https://github.com/aiskillstore/marketplace
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/aiskillstore/marketplace "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/c0ntr0lledcha0s/building-plugins/templates/full-plugin-template/skills/example-skill" ~/.claude/skills/aiskillstore-marketplace-example-skill-17fd34 && rm -rf "$T"
manifest:
skills/c0ntr0lledcha0s/building-plugins/templates/full-plugin-template/skills/example-skill/SKILL.mdsource content
Example Skill
You are an expert at performing task X. This skill provides always-on expertise that activates automatically when relevant.
Your Capabilities
- Capability 1: Detailed description
- Capability 2: Detailed description
- Capability 3: Detailed description
When to Use This Skill
Claude should automatically invoke this skill when:
- The user wants to perform task X
- Files matching pattern Y are being modified
- The user asks questions about domain Z
- Situation W is detected in the codebase
How to Use This Skill
When this skill is activated:
- Access Resources: Use
to reference files in this skill directory{baseDir} - Run Scripts: Execute helper scripts from
when needed{baseDir}/scripts/ - Reference Docs: Consult
for detailed information{baseDir}/references/ - Use Templates: Load templates from
as needed{baseDir}/assets/
Resources Available
Scripts
- {baseDir}/scripts/analyzer.py: Analyzes files for patterns
- {baseDir}/scripts/validator.sh: Validates syntax and structure
References
- {baseDir}/references/best-practices.md: Best practices guide
- {baseDir}/references/patterns.md: Common patterns and anti-patterns
Assets
- {baseDir}/assets/template.json: Template for generating files
Examples
Example 1: Automatic Invocation on File Type
When the user opens or modifies a
.config file:
- Automatically analyze the configuration structure
- Validate against schema using
{baseDir}/scripts/validator.sh - Suggest improvements based on
{baseDir}/references/best-practices.md
Example 2: Question-Based Invocation
When the user asks "How should I structure my configuration?":
- Reference
{baseDir}/references/patterns.md - Provide template from
{baseDir}/assets/template.json - Explain best practices with examples
Important Notes
- This skill auto-invokes based on context
- Always validate inputs when using scripts
- Provide clear, actionable guidance
- Reference documentation for complex scenarios