Problem
The agentry registry list command prints "Not yet implemented" and exits. This is a dead stub that has been present since Phase 1. It should either be wired up or removed.
Proposed Solution
Implement agentry registry list to discover and list available workflows:
- Scan
workflows/ directory for .yaml files
- Parse each workflow's
identity block (name, version, description)
- Print a formatted table to stdout
Example Output
NAME VERSION DESCRIPTION
code-review 1.0.0 Review pull request code changes for quality issues
triage 1.0.0 Classify and triage a software issue
bug-fix 1.0.0 Diagnose a reported bug and suggest a targeted fix
task-decompose 1.0.0 Break down a triaged issue into implementation tasks
planning-pipeline 1.0.0 Comprehensive issue planning pipeline
feature-implement 1.0.0 Implement a feature based on planning-pipeline output
Acceptance Criteria
Source
Backlog item from Source Code Cleanup section.
Problem
The
agentry registry listcommand prints "Not yet implemented" and exits. This is a dead stub that has been present since Phase 1. It should either be wired up or removed.Proposed Solution
Implement
agentry registry listto discover and list available workflows:workflows/directory for.yamlfilesidentityblock (name, version, description)Example Output
Acceptance Criteria
agentry registry listprints a table of discovered workflowsworkflows/directory relative to CWDSource
Backlog item from Source Code Cleanup section.