Marketplace command-management
Use PROACTIVELY this skill when you need to create or update custom commands following best practices
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/emz1998/command-management" ~/.claude/skills/aiskillstore-marketplace-command-management && rm -rf "$T"
manifest:
skills/emz1998/command-management/SKILL.mdsource content
Goal: Create or update custom commands following template standards
IMPORTANT: Keep command content high-level and concise. Do not dive into implementation details.
Workflow
- Read command docs from
and template from.claude/skills/command-management/references/command-docs.md.claude/skills/command-management/templates/command.md - Analyze user requirements and determine command location
- Create or update the command file
- Test via
tool and report resultsSlashCommand
Constraints
- DO NOT deviate from template structure (YAML frontmatter + all sections)
- NEVER save commands outside
directory.claude/commands/ - DO NOT grant excessive tool permissions - apply least-privilege
Acceptance Criteria
- Command saved to correct location with complete YAML frontmatter
- All template sections populated
- Command tested successfully via
SlashCommand