Skip to content

v1.1.1 — Fix subcommand registration for /autoresearch:ship, :plan, :security

Choose a tag to compare

@uditgoenka uditgoenka released this 16 Mar 11:24
· 144 commits to master since this release
ffcbeb5

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/ — the skills/ 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/autoresearch

The commands/ directory is required for subcommands to be recognized. Without it, only /autoresearch works.

Full Changelog

v1.1.0...v1.1.1