Agent skill
implement
Implement features and tasks with production-quality code. Use when implementing features, building components, or any task requiring code implementation from any context source (Linear tickets, markdown specs, or conversation).
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/implement-nehatanti-afk-neha-notes
SKILL.md
Implement
Purpose
Implement features and tasks with production-quality code, following codebase conventions and best practices. Works with any context source.
When to Use
- Implementing new features (from any source)
- Building new components, hooks, or utilities
- Adding functionality to existing code
- Any task that requires writing code
Context Sources
This skill works with multiple input types:
| Source | Detection | How to Extract |
|---|---|---|
| Linear ticket | NEX-### pattern in input |
mcp__linear__get_issue(id: "{issue_id}") |
| Markdown file | .md file path referenced |
Read the file content |
| Figma design | Figma URL in context | mcp__figma__get_design_context |
| Conversation | Requirements in chat | Parse from conversation history |
Task-Specific Rules
Based on what you're implementing, load these rules before writing any code:
| Task Type | Detect By | Rules to Load |
|---|---|---|
| Component | packages/react/src/components/ |
components.md, testing.md, storybook.md, figma.md |
| Hook | packages/react/src/hooks/ |
testing.md |
| Utility | packages/react/src/lib/ |
testing.md |
| Token | packages/core/, packages/tailwind/ |
tokens.md |
| Context Engine | packages/context-engine/ |
context-engine.md |
Always also load: Base rules (workflow, github, linear — if Linear context present)
Agent Delegation
Implementation phases are delegated to the SDE2 agent for strict convention adherence.
Flow
Coordinator → Spawn SDE2 "implement phase X" → SDE2 implements → Returns result → Show user → User feedback → Spawn/Resume SDE2 with feedback
How It Works
| Step | Actor | Action |
|---|---|---|
| 1 | Coordinator | Gathers requirements, creates todo list, gets user approval on plan |
| 2 | Coordinator | Spawns SDE2 agent for first implementation phase |
| 3 | SDE2 | Implements the phase following all conventions |
| 4 | SDE2 | Returns summary with code snippets and file:line refs |
| 5 | Coordinator | Relays summary to user |
| 6 | User | Reviews, provides feedback or approves |
| 7 | Coordinator | If changes needed: resume SDE2 with feedback. If approved: spawn SDE2 for next phase |
SDE2 Task Prompt Template
Implement phase: {phase_name}
Context:
- Spec/ticket: {reference}
- Todo: {current todo item}
- Rules to follow: {list of rule files}
Requirements:
{phase-specific requirements}
After completion, provide:
1. Summary table of changes (file | change)
2. Key code snippets with file:line references
3. Any issues encountered
When to Resume vs New Spawn
| Situation | Action |
|---|---|
| User requests changes to current phase | Resume same SDE2 agent with feedback |
| Moving to next phase | Spawn new SDE2 agent |
| Bug fix in previously completed phase | Spawn new SDE2 agent with fix context |
Implementation Process
Phase 1: Gather Requirements
-
Detect context source:
If NEX-### pattern → Fetch Linear ticket If .md file referenced → Read markdown file If Figma URL present → Fetch design context Otherwise → Use conversation context -
If Linear ticket:
mcp__linear__get_issue(id: "{issue_id}", includeRelations: true)- Extract requirements, acceptance criteria
- Check for linked Figma designs
-
If Markdown file:
- Read the referenced file
- Extract requirements and acceptance criteria
-
If Figma design:
- Use
mcp__figma__get_design_contextto understand the design - Note variants, sizes, states required
- Use
-
If conversation context:
- Summarize what the user is asking for
- Clarify any ambiguous requirements before proceeding
-
Extract key information:
- What needs to be built?
- Acceptance criteria (explicit or inferred)
- Any design references?
- Constraints or dependencies?
Phase 2: Explore Existing Code
-
Find similar implementations:
- How do existing features in this codebase work?
- What patterns are already established?
-
Identify dependencies:
- What existing utilities/hooks can be reused?
- Are there shared types to extend?
-
Note the file structure:
- Where should new files go?
- What's the naming convention?
Phase 3: Research Dependencies (MANDATORY)
Before writing any code, research any third-party dependencies you'll be using.
-
Identify what you'll use:
- What libraries/frameworks does this feature require?
- Any new dependencies being introduced?
- Any existing dependencies you're unfamiliar with?
-
Research each one:
"{library} best practices {current year}" "{library} {version} documentation" "{library} common mistakes" -
Verify correct usage:
- How should this library be used?
- Are there configuration options to consider?
- What are common pitfalls to avoid?
-
Document findings:
- Note any important discoveries
- Include in implementation plan if relevant
Phase 4: Create Implementation Plan
-
Use TodoWrite to create task list:
- Break down into small, testable chunks
- Each todo should be completable independently
- Include testing as explicit todos
-
Example plan structure:
- [ ] Create main implementation file - [ ] Add core functionality - [ ] Add tests/stories - [ ] Update exports -
WAIT for user confirmation before proceeding
Phase 5: Implement
-
Work through todos one at a time:
- Mark todo as
in_progressbefore starting - Mark as
completedimmediately after finishing - Summarize what was done after each
- Mark todo as
-
Follow the loaded rules strictly:
- Rules files contain all conventions
- Don't deviate from established patterns
- Include proper TypeScript types
-
After each significant change:
- Provide summary with code snippets
- Include file:line references
- WAIT for user confirmation
Phase 6: Verify & Test
-
Run relevant checks:
bashyarn typecheck # TypeScript yarn lint # ESLint yarn test # All tests -
Fix any issues found
-
Verify against acceptance criteria:
- Does implementation meet all requirements?
- Any edge cases missed?
Output Format
After implementation is complete:
## Implementation Complete
### Task Reference
{Include whichever applies:}
- **Linear:** NEX-### - {title}
- **Spec:** {filename.md}
- **Request:** {brief summary of what was asked}
### Changes Made
| File | Change |
| ----------------------- | ------------- |
| `path/to/file.tsx` | {description} |
| `path/to/file.test.tsx` | {description} |
### Key Code
{Relevant code snippets with file:line references}
### Verification
- [ ] TypeScript: No errors
- [ ] Lint: No warnings
- [ ] Tests: All passing
- [ ] Requirements: Met
### Next Steps
{Any follow-up items or notes for the user}
Principles to Follow
- Read before write — Understand existing patterns first
- Research before coding — Don't guess how libraries work; look them up
- Follow loaded rules — Rules files are the source of truth for conventions
- Ask when unsure — Better to clarify than assume
- Small iterations — Complete one todo, summarize, wait for confirmation
- Context-agnostic — Same quality regardless of input source
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?