Add structural validation report for .claude/agents catalog - #3117
Open
harshthul wants to merge 1 commit into
Open
Add structural validation report for .claude/agents catalog#3117harshthul wants to merge 1 commit into
harshthul wants to merge 1 commit into
Conversation
Adds a JSON report from a structural validation pass over the 108 agent definition files under .claude/agents/. All 108 files have valid frontmatter (name + description) and non-empty system-prompt bodies. Also surfaces 11 agent names that are defined twice under different paths (e.g. code-analyzer, backend-dev, pr-manager, python-specialist, typescript-specialist, tdd-london-swarm, production-validator, goal-planner, sublinear-goal-planner, database-specialist, project-coordinator) - mostly a legacy flat file plus a newer categorized copy. Not a parse failure, but worth a look since it's ambiguous which definition wins when agents are loaded by name. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
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
Adds a JSON report from a structural validation pass over the 108 agent definition files under
.claude/agents/.108/108 files valid — every agent
.mdhas a parseable YAML frontmatter block with a non-emptynameanddescription, plus a non-trivial system-prompt body. No LLM calls were made; this is a pure structural/schema check.11 duplicate agent names found, each defined twice under different paths — mostly a legacy flat file plus a newer categorized copy:
code-analyzer,backend-dev,pr-manager,python-specialist,typescript-specialist,tdd-london-swarm,production-validator,goal-planner,sublinear-goal-planner,database-specialist,project-coordinatorThis isn't a parse failure, but it is a real ambiguity — if agents are loaded/resolved by
name, it's undefined which of the two definitions actually wins. Full per-name file listing is in the JSON report.See
verification/agent-catalog-structural-report.jsonfor the full per-file report.Notes for reviewers
🤖 Generated with Claude Code