What's Fixed
Subcommands now work. /autoresearch:ship, /autoresearch:plan, and /autoresearch:security were returning "Unknown skill" because they lacked command registration files.
Root Cause
Claude Code resolves parent:subcommand syntax by looking for .md files in .claude/commands/<parent>/<subcommand>.md. PR #10 (v1.1.0) added the ship workflow as documentation in SKILL.md but never created these registration files.
Changes
- Added
commands/autoresearch/— command registration files for all 3 subcommands (ship, plan, security) - Synced distributable
skills/— theskills/directory was stuck at v1.0.4 while.claude/skills/had v1.1.0 content. Now synced with ship workflow reference. - Updated README — install instructions now include
commands/directory copy step, with a note explaining why it's needed
Updated Install Instructions
# Clone
git clone https://github.com/uditgoenka/autoresearch.git
# Copy BOTH directories
cp -r autoresearch/skills/autoresearch .claude/skills/autoresearch
cp -r autoresearch/commands/autoresearch .claude/commands/autoresearchThe
commands/directory is required for subcommands to be recognized. Without it, only/autoresearchworks.