Consolidates agentic-flows plugin (v0.5.0) into claude/ folder: - 14 autonomous agents (engineer tiers, PR resolver, training collector) - 11 skills (flow orchestration, pattern library, KB learning) - 8 commands (/junior, /senior, /engineer, /qa, /analyze, /delegate, /seed, /learn) - 3 patterns (agent-memory, capability-tiers, handoff-protocol) - MCP server config, hooks, marketplace metadata Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1.4 KiB
1.4 KiB
| name | description |
|---|---|
| seed-agent-developer | Pre-seeds agent context from GitHub issue. Use when starting work on any GitHub issue. |
Seed Agent Developer
Pre-seeds agent context from a GitHub issue to prepare for development work.
Process
- Fetch issue via
gh issue view- get title, body, labels, comments - Identify affected code paths from description - file paths, package names, errors
- Query pattern-library for relevant patterns - RAG or grep fallback
- Find related issues/PRs - linked references and similar issues
- Output structured context seed - JSON format for agent consumption
Usage
# Via command
/seed <issue-url-or-number>
# Direct script usage
./fetch-issue.sh <repo> <issue-number>
./analyze-issue.sh <issue-json-file>
./match-patterns.sh "<search-terms>"
./assemble-context.sh <issue-number>
Output Format
The assembled context includes:
- Issue metadata (title, labels, author)
- Extracted code references (files, packages, errors)
- Matched patterns from pattern-library
- Related issues and PRs
- Suggested starting points for development
Scripts
| Script | Purpose |
|---|---|
fetch-issue.sh |
Fetch issue data from GitHub |
analyze-issue.sh |
Extract code references from issue body |
match-patterns.sh |
Find relevant patterns |
assemble-context.sh |
Combine into final context seed |