plugins/claude/agentic/skills/seed-agent-developer/SKILL.md
Claude 481c1c557f
feat(claude): add agentic plugin — agents, flows, patterns
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>
2026-02-15 15:05:56 +00:00

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

  1. Fetch issue via gh issue view - get title, body, labels, comments
  2. Identify affected code paths from description - file paths, package names, errors
  3. Query pattern-library for relevant patterns - RAG or grep fallback
  4. Find related issues/PRs - linked references and similar issues
  5. 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