[Sprint 6] fix: Register sprint-diagram as invokable skill #278

Closed
opened 2026-01-28 20:27:43 +00:00 by lmiranda · 1 comment
Owner

Summary

The /sprint-diagram command exists in plugins/projman/commands/sprint-diagram.md but is not registered as an invokable skill in the Skill tool.

Problem

  • Command file exists and is documented
  • Cannot invoke via /sprint-diagram - returns "Unknown skill"
  • Was added in Sprint 4 but skill registration was missed

Expected

/sprint-diagram should be invokable like other projman commands.

Fix Required

Ensure sprint-diagram is properly registered. Check if there's a skills/ directory or manifest that needs updating.

## Summary The `/sprint-diagram` command exists in `plugins/projman/commands/sprint-diagram.md` but is not registered as an invokable skill in the Skill tool. ## Problem - Command file exists and is documented - Cannot invoke via `/sprint-diagram` - returns "Unknown skill" - Was added in Sprint 4 but skill registration was missed ## Expected `/sprint-diagram` should be invokable like other projman commands. ## Fix Required Ensure sprint-diagram is properly registered. Check if there's a skills/ directory or manifest that needs updating.
lmiranda added the Type/BugPriority/MediumComplexity/Simple labels 2026-01-28 20:27:43 +00:00
lmiranda added this to the Sprint 6 - Visual Branding Overhaul milestone 2026-01-28 20:27:51 +00:00
Author
Owner

Resolution

Root Cause: Claude Code discovers skills at session start. The /sprint-diagram command was added to the installed location DURING the active session, so it wasn't picked up by skill discovery.

Evidence:

File Modified Discoverable
sprint-diagram.md Jan 28 13:46 (during session) No
sprint-status.md Jan 28 11:03 (before session) Yes

Fix: Restart Claude Code session - the skill will be discovered.

Prevention: Updated sprint-close.md with a "New Command Verification" section that:

  1. Reminds about session restart requirement
  2. Creates follow-up task for verification

Lesson Learned: Created at lessons/patterns/sprint-4---new-commands-not-discoverable-until-session-restart

This is NOT a bug in the command file - it's correct. It's a workflow gap in sprint verification.

## Resolution **Root Cause:** Claude Code discovers skills at session start. The `/sprint-diagram` command was added to the installed location DURING the active session, so it wasn't picked up by skill discovery. **Evidence:** | File | Modified | Discoverable | |------|----------|--------------| | sprint-diagram.md | Jan 28 13:46 (during session) | No | | sprint-status.md | Jan 28 11:03 (before session) | Yes | **Fix:** Restart Claude Code session - the skill will be discovered. **Prevention:** Updated `sprint-close.md` with a "New Command Verification" section that: 1. Reminds about session restart requirement 2. Creates follow-up task for verification **Lesson Learned:** Created at `lessons/patterns/sprint-4---new-commands-not-discoverable-until-session-restart` This is NOT a bug in the command file - it's correct. It's a workflow gap in sprint verification.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: personal-projects/leo-claude-mktplace#278