[docs] dependencies: add missing superpowers references#106
Merged
Conversation
Add systematic-debugging, writing-plans (skills) and code-reviewer (subagent) that were referenced in agents/, commands/, and skills/ but absent from the doc. Split the superpowers row into Skills/Subagent sub-bullets so the invocation distinction is visible. Fix stale `development` references → `workflow-development` in both the table cell and the trailing install instruction.
code-reviewer is a skill (Skill tool), not a subagent_type dispatch. Move it into the Skills list alongside the other 10 superpowers skills and remove the false Subagent sub-bullet.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
superpowers:*identifiers (systematic-debugging,writing-plans,code-reviewer) that are referenced inagents/,commands/, andskills/but were absent from the docskills/workflow-development/,commands/implement.md,agents/debugger.md) so readers can audit with grep`development`→`workflow-development`in both the table cell and the trailing install instructionTest Plan
comm -23 <(grep -rohE 'superpowers:[a-z-]+' agents/ commands/ skills/ | sort -u) <(grep -ohE 'superpowers:[a-z-]+|\[a-z-]+`' docs/dependencies.md | sed -E 's/`([a-z-]+)`/superpowers:\1/' | sort -u)` returned empty (clean)Closes #71