-
Notifications
You must be signed in to change notification settings - Fork 1
docs: clarify commands and skills use same Skill tool mechanism #201
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Update documentation to reflect Anthropic's conceptual merge of slash commands and skills. Both are now invoked via the Skill tool but differ in complexity level: - Commands: Simple .md files in commands/ for quick prompts - Skills: Full directories in skills/ with bundled resources Changes: - Add "Commands and Skills: Same Mechanism" section to command-development - Add "Skills and Commands: Unified Mechanism" section to skill-development - Update plugin-structure component descriptions - Update plugin-dev-guide quick reference and decision tree - Add key insight note to skill-tool.md reference - Create new commands-vs-skills.md reference with decision matrix Fixes #198 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
|
Claude finished @sjnims's task in 55s —— View job PR Review: docs: clarify commands and skills use same Skill tool mechanismTasks
Verdict: ✅ Looks goodThis is a well-structured documentation update that clearly explains the conceptual merge of commands and skills while maintaining the practical organizational distinction. Quality Checks
What's Good
Suggestions
These are minor polish suggestions, not blockers. Files Reviewed
|
- Add cross-reference to skill-development skill in command-development - Note that frontmatter fields are preserved during command-to-skill migration Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
|
Addressed review suggestions in 547715b:
|
|
Claude finished @sjnims's task in 1m 22s —— View job PR Review: docs: clarify commands and skills use same Skill tool mechanismTasks
Verdict: ✅ Looks goodBoth suggestions from the previous review have been addressed in commit 547715b:
Quality Checks
Note: The linting tools were not pre-installed. The PR description indicates the author ran these checks locally and they passed. What's Good
Files Reviewed
This PR is ready to merge. |
Description
Update documentation to reflect Anthropic's conceptual merge of slash commands and skills. Both are now invoked via the same Skill tool but differ in complexity level:
commands/): Simple.mdfiles for quick promptsskills/name/): Full directories with bundled resources (scripts, references, examples)Thanks to @KRRT7 for opening the issue!
Type of Change
Component(s) Affected
Motivation and Context
Anthropic has merged the concepts of slash commands and skills at the mechanism level—both are now invoked via the Skill tool. This PR updates plugin-dev documentation to clearly explain this relationship while maintaining the organizational distinction (commands = simple, skills = complex with resources).
Fixes #198
How Has This Been Tested?
Test Configuration:
Test Steps:
markdownlint 'plugins/plugin-dev/**/*.md' --ignore node_modules- passesnpx prettier --writeon modified filesChecklist
General
Documentation
Markdown
markdownlintand fixed all issuesVersion Management (if applicable)
Files Changed
skills/command-development/SKILL.mdskills/skill-development/SKILL.mdskills/plugin-structure/SKILL.mdskills/plugin-dev-guide/SKILL.mdskills/command-development/references/skill-tool.mdskills/skill-development/references/commands-vs-skills.mdCHANGELOG.mdAdditional Notes
The approach keeps commands and skills as separate concepts from an organizational standpoint while making clear they share the same invocation mechanism. This aligns with how plugin developers should think about the choice: complexity needs drive whether to use a simple command or a full skill with resources.
🤖 Generated with Claude Code