From dev-team
This skill should be used when the user asks to "create a new dev-team agent", "scaffold a subagent", "port a Gemini/Cursor/Cline agent", "canonicalize an agent", or "validate the agents folder". Owns the full lifecycle — generate, research, validate, and update dev-team subagents to match the plugin's 7-section spec, tool allowlist, and task-tracker integration.
How this skill is triggered — by the user, by Claude, or both
Slash command
/dev-team:create-agentThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Owns the full lifecycle of a dev-team subagent. Five procedures: **Create**, **Port**, **Research**, **Validate**, **Update** — each ends by invoking Validate so the loop is always closed.
Owns the full lifecycle of a dev-team subagent. Five procedures: Create, Port, Research, Validate, Update — each ends by invoking Validate so the loop is always closed.
Trigger on any of:
<domain>"<role> subagent"<slug> agent from Gemini / Cursor / Cline"agents/<slug>.md"Do not trigger for: editing .claude-plugin/plugin.json, generating MCP servers, generating non-agent skills, authoring slash commands.
Every agent file under agents/<slug>.md must satisfy:
name, description, tools. Recommended: model: inherit.Role, When to use, When NOT to use (Boundaries), Workflow, Tools, Constraints, Worked example.knowledge/<slug>-refs.md.security-analyst, pentester) must not have Write or Edit./Users/, Linux /home/, or Windows C:\Users\ patterns are forbidden. Use ~ or relative paths.UFC Hydration, no execute_agent, no .gemini/ references.Full structural detail: references/agent-structure.md.
Use when no source agent exists. Steps:
references/agent-structure.md and references/tool-allowlists.md to determine the allowlist.agents/<slug>.md with the 7 canonical sections. Reference shared docs by relative path: knowledge/coding-standards.md, knowledge/task-tracker-api.md, etc.references/integration.md and weave the task-tracker MCP protocol into the Workflow section (get_task → update_task(in_progress) → work → complete_task).Reference output: examples/backend-developer.md is the canonical pilot — follow its shape.
Use when porting from .gemini/agents/<slug>/, Cursor rules, Cline modes, or any other external agent format.
bun ../../scripts/port-agent.ts <slug>
This emits agents/<slug>.md with TODO(author): markers in sections that need human judgment.TODO(author): marker using references/agent-structure.md, references/tool-allowlists.md, and references/integration.md.UFC Hydration, etc. are already filtered, but check for new patterns).The port script lives at scripts/port-agent.ts (repo root). Sources read from .gemini/agents/<slug>/agent.{json,md}.
Use when the agent's domain is unfamiliar or when external library APIs are involved.
Procedure (full detail in references/research.md):
use context7 to any code you intend to write. Library APIs change; training data is stale.WebSearch (current) or WebFetch (specific URL).Workflow or Tools section.knowledge/<slug>-refs.md and link from the agent body.Run after every Create, Port, or Update. This is the gate.
# Lint one agent (strict — no TODO markers allowed)
bun ../../scripts/verify-agents.ts <slug>
# Lint everything
bun ../../scripts/verify-agents.ts
# Pilot-stage only: allow TODO(author) markers
bun ../../scripts/verify-agents.ts <slug> --allow-todo
# Lint skills (frontmatter + residue paths only)
bun ../../scripts/verify-agents.ts --skills
Linter checks: YAML frontmatter (name, description, tools), 7 canonical sections, ≤ 200-line body, no absolute home paths, no TODO(author) markers (unless --allow-todo).
Exit 0 = pass. Any non-zero exit means findings printed to stderr — read them and route back to Create or Update.
Use when references/agent-structure.md, references/tool-allowlists.md, or references/integration.md is edited (because spec §5.4–§5.6 changed).
agents/: re-read the agent body, apply the change, re-run Validate.bun ../../scripts/verify-agents.ts once.This skill does not introduce new tools. It composes:
| Tool | Used by | Notes |
|---|---|---|
bun ../../scripts/port-agent.ts | Port | Reads .gemini/agents/<slug>/, emits skeleton |
bun ../../scripts/verify-agents.ts | Validate | Lints frontmatter, sections, line cap, residue |
context7 MCP | Research | Authoritative library APIs |
WebSearch / WebFetch | Research | General + specific URL |
Read / Grep / Glob | All | Explore before edit |
Edit / Write | Create, Update | Author the agent file |
The calling agent (agent-builder) needs at minimum: Read, Write, Edit, Bash, Grep, Glob, Skill, WebSearch per spec §5.4.
agent-builder task. The agent calls update_task(in_progress) before this skill, complete_task after./buddy routing — /buddy "build me a <X> agent" routes to agent-builder, which invokes this skill.github-manager via create_task.Full protocol: references/integration.md.
Before marking any procedure complete:
name, description, toolsreferences/tool-allowlists.md for the slugknowledge/...)bun ../../scripts/verify-agents.ts <slug> exits 0 (strict, no --allow-todo)If any check fails, route back to Create or Update — do not mark the task complete.
references/agent-structure.md — canonical 7 sections, frontmatter contract, 200-line cap, default-deny toolsreferences/tool-allowlists.md — per-agent allowlist matrix mirroring spec §5.4 (single source of truth for what each agent may use)references/integration.md — task-tracker MCP protocol, /buddy routing, knowledge tiers (§5.5), github-manager hand-offreferences/research.md — when to use context7 / WebSearch / repo grep, where gathered refs landexamples/backend-developer.md — the canonical pilot agent. Strict-verify passes. Use it as the shape reference for any new agent.This skill is the single source of truth for "how to author a dev-team agent." When the parent spec (specs/plugin-pivot.md) §5.4, §5.5, or §5.6 changes:
agents/.Never let the spec drift ahead of this skill. The skill ships with the plugin; users extending the plugin rely on it as documentation of the canonical shape.
npx claudepluginhub rohirik/dev-team --plugin dev-teamProvides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.