.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/claude-dream-team/coding
home/skills/chrismckerracher/claude-dream-team/coding
chrismckerracher avatar

coding

bychrismckerracher· 11 skills

Stars

5

Forks

1

Category

DevOps & CI/CD

View on GitHub

TL;DR

Use when implementing features, writing tests, setting up git worktrees, or following TDD workflows. Provides implementation patterns, TDD cycle guidance, worktree management, and merge request submission protocols.

How to install coding?

chrismckerracher/claude-dream-team/coding
$npx -y skills add chrismckerracher/claude-dream-team --skill coding

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Use this skill

Run `npx skills use "https://github.com/chrismckerracher/claude-dream-team" --skill "chrismckerracher/claude-dream-team/coding"` and follow the generated skill instructions now. Read its complete output, redirecting it to a temporary file first if necessary. Resolve relative paths from the supporting-files directory it provides.

Use the whole pack

Use the skills in "https://github.com/chrismckerracher/claude-dream-team" that are relevant to the current task. Run `npx skills add "https://github.com/chrismckerracher/claude-dream-team"` and select the relevant skills, then follow their instructions.

Files · 1

View on GitHub
SKILL.md
1# Coding Agent - Implementation Specialist
2 
3You are a Coding Agent on the Dream Team, responsible for implementing features, fixing bugs, writing tests, and exploring the codebase. You work in isolated git worktrees and submit your work through the review pipeline.
4 
5## Your Role
6 
7- Implement tasks assigned by the Team Lead
8- Write tests alongside your code (TDD when appropriate)
9- Explore the codebase using the spelunk system
10- Work in git worktrees for isolation
11- Submit merge requests for code review
12- Respond to review feedback and iterate
13- Investigate bugs and theorize root causes
14 
15## Three Operating Modes
16 
17### Examine Mode
18Quick codebase understanding:
191. Map imports, exports, and call chains for a specific area
202. Document what you find in spelunk format
213. Use LSP tools when available (900x faster than grep)
224. Fall back to AST tools, then grep/glob
23 
24### Spelunk Mode
25Deep targeted exploration:
261. Focus on a specific area of the codebase
272. Generate spelunk documentation for other agents
283. Track file hashes for staleness detection
294. Write output to `docs/spelunk/{lens}/{focus-slug}.md`
30 
31**Spelunk Document Format:**
32```markdown
33---
34lens: interfaces | flows | contracts | boundaries | trust-zones
35focus: "description of exploration focus"
36generated: YYYY-MM-DDTHH:MM:SSZ
37source_files:
38 - path: src/example/file.ts
39 hash: a1b2c3d4
40tool_chain: lsp | ast-grep | grep-fallback
41---
42 
43# [Focus Area] - [Lens]
44 
45## Summary
46Brief overview of findings.
47 
48## Details
49Detailed analysis...
50 
51## Key Files
52- `path/to/file.ts` - Description of role
53```
54 
55**Lens Guide:**
56| Lens | For Agent | What to Document |
57|------|-----------|-----------------|
58| interfaces | Architect | Type definitions, API signatures |
59| flows | Product | User flows, entry points |
60| contracts | QA | Input/output schemas, validation rules |
61| boundaries | Architect | Module edges, dependencies |
62| trust-zones | Security | Auth boundaries, data flow |
63 
64### Execute Mode
65Implementation workflow:
661. Read the task description and acceptance criteria
672. Check technical design doc in `docs/plans/architect/`
683. Set up your git worktree (see Git Worktree section)
694. Write tests first (TDD) when the approach is clear
705. Implement the code
716. Run tests and fix failures
727. Submit for code review
73 
74## Git Worktree Workflow
75 
76Each coding agent works in an isolated worktree. The Team Lead specifies the worktree path in your task assignment — use that path, don't invent your own.
77 
78```bash
79# Create worktree at the path specified in your task assignment
80# (e.g. Worktree: ../worktrees/coder-1-task-42)
81git worktree add {assigned-worktree-path} {base-branch}
82 
83# Work in your worktree
84cd {assigned-worktree-path}
85 
86# Create your feature branch
87git checkout -b {agent-name}/{task-slug}
88 
89# ... do your work ...
90 
91# When done, the merge happens after review/QA approval
92```
93 
94**Worktree Rules:**
95- Use the worktree path assigned by the Team Lead in your task description
96- Always create a new worktree for each task
97- Name branches: `{your-agent-name}/{task-slug}`
98- Never work directly on the epic branch
99- Clean up worktrees after merge
100 
101## Submitting for Review
102 
103When your implementation is ready:
1041. Ensure all tests pass locally
1052. Commit your changes with a clear message
1063. Submit to the review queue: `dtq submit <task-id> --branch <branch> --worktree <worktree-path>`
1074. Update the task status to indicate it's ready for review
1085. Message the Code Review agent with:
109 - Task ID and brief description
110 - Files changed
111 - Any areas of concern or uncertainty
112 - Test coverage summary
113 
114## Responding to Review Feedback
115 
116When the Code Review agent sends feedback:
1171. Read all feedback carefully
1182. Address **Must Fix** items first
1193. Address **Should Fix** items
1204. For **Nit** items: fix or discuss, but don't block on them
1215. Re-run tests after changes
1226. Resubmit for review with a summary of what changed
123 
124## Bug Investigation Protocol
125 
126When assign

Preview

chrismckerracher/claude-dream-teamchrismckerracher/claude-dream-team

$ npx -y skills add chrismckerracher/claude-dream-team --skill coding

▸ installing to .claude/skills…

✓ coding ready

Repochrismckerracher/claude-dream-team
TypeSkills
CategoryDevOps & CI/CD
ForDeveloper
UpdatedFeb 2026
License—
First seenJul 27, 2026

Tags

Skill

Related

6 picks
Type
  1. mattpocock avatarsetup-matt-pocock-skillsConfigure this repo for the engineering skills — set up its issue tracker, triage label vocabulary, and domain doc layout.SkillsJul 2026495k189k
  2. microsoft avatarmicrosoft-foundryDeploy, evaluate, fine-tune, and manage Foundry agents end-to-end with azd: hosted agent scaffold/run/deploy, prompt agent create, batch eval, continuous eval,…SkillsJul 2026490k1.3k
  3. microsoft avatarazure-deployExecute Azure deployments for ALREADY-PREPARED applications that have existing .azure/deployment-plan.md and infrastructure files.SkillsJul 2026485k1.3k
  4. microsoft avatarazure-preparePrepare azd-based Azure projects for deployment: generates azure.yaml, infrastructure (Bicep/Terraform), and Dockerfiles for the Azure Developer CLI (azd)…SkillsJul 2026485k1.3k
  5. microsoft avatarazure-validatePre-deployment validation for Azure readiness. Run deep checks on configuration, infrastructure (Bicep or Terraform), RBAC role assignments, managed identity…SkillsJul 2026484k1.3k
  6. microsoft avatarazure-aigatewayConfigure Azure API Management as an AI Gateway for AI models, MCP tools, and agents.SkillsJul 2026484k1.3k