Research topics and create Agent Skills with proper structure and documentation
Researches topics and creates Agent Skills with proper structure, documentation, and source tracking.
/plugin marketplace add vinnie357/claude-skills/plugin install claude-code@vinnie357<skill-name> [--complexity=low|medium|high]Research a topic and create a properly structured Agent Skill following the Agent Skills Specification.
Skill Creation:
skills/<skill-name>/SKILL.md with proper frontmatterreferences/ for deep contextpromptlog/sources.md with all research sourcesFeatures:
--complexity=<level> to force thinking depthExamples:
/research-skill elixir-genserver
# Creates: skills/elixir-genserver/SKILL.md
# Updates: promptlog/sources.md
/research-skill kubernetes-operators --complexity=high
# Creates: skills/kubernetes-operators/SKILL.md
# skills/kubernetes-operators/references/
# Updates: promptlog/sources.md
/research-skill react-hooks --complexity=medium
# Creates: skills/react-hooks/SKILL.md with enhanced analysis
SKILL.md Structure:
---
name: skill-name
description: When Claude should use this skill (concise, activation-focused)
license: MIT
---
# Skill Name
## When to Use This Skill
[Activation criteria]
## Core Concepts
[Essential knowledge]
## Best Practices
[Guidelines and patterns]
## Examples
[Concrete usage examples]
## References
[Links to reference files if needed]
Workflow:
Task Instructions: Use Task tool with subagent_type: "general-purpose" to:
skills/<skill-name>/skills/<skill-name>/references/ if detailed documentation is neededpromptlog/sources.md with:
The agent should produce a complete, spec-compliant skill ready for use.