feat: add skills inventory to feedback and support meta <name>#45
Merged
LadyBluenotes merged 6 commits intomainfrom Mar 6, 2026
Merged
feat: add skills inventory to feedback and support meta <name>#45LadyBluenotes merged 6 commits intomainfrom
meta <name>#45LadyBluenotes merged 6 commits intomainfrom
Conversation
Feedback now captures which skills the agent loaded vs. which were available but never read. This helps maintainers distinguish "the skill was wrong" from "the agent never loaded the right skill." Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
commit: |
Feedback now captures which skills the agent loaded vs. which were available but never read. This helps maintainers distinguish "the skill was wrong" from "the agent never loaded the right skill." Also adds support for `intent meta <name>` to print a specific meta-skill's SKILL.md content directly. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
meta <name>
The setup command creates skill:<name> labels but feedback collection used feedback:<name>, causing label-not-found errors on submission. Also adds path traversal guard and try-catch to meta <name> command. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
LadyBluenotes
approved these changes
Mar 6, 2026
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
Three improvements to feedback collection and the
metaCLI command:intent meta <name>prints the SKILL.md content directly instead of ignoring the argumentfeedback:→skill:label prefix mismatch that caused label-not-found errors on feedback submissionApproach
Feedback skill: Added a new Phase 1a "Skills inventory" step that runs before gap/error analysis, plus a corresponding section in the markdown template. Renumbered existing subsections and updated cross-references.
CLI
meta <name>:cmdMetanow accepts args. When a name is provided, it reads and prints the SKILL.md file. Includes path traversal guard (rejects..,/,\in names) and try-catch onreadFileSync. With no args, behavior is unchanged.Label prefix fix: Changed
feedback:<skill-name>→skill:<skill-name>in three places: the feedback SKILL.md template, thesetupchecklist incli.ts, and the meta-feedback submission infeedback.ts. This matches the labels thatintent setupactually creates.Key Invariants
meta <name>exits with code 1 and a helpful message if the name doesn't matchmetawith no args is unchangedskill:prefix consistentlyNon-goals
FeedbackPayloadtype — feedback is submitted as markdownVerification
Files changed
cmdMetaaccepts optional name arg with path traversal guard; fixed label prefix in setup checklist; updated help text🤖 Generated with Claude Code