Development Implementation

Implements user stories by reading requirements, following coding standards, and executing tasks with comprehensive testing. Updates story files with implementation details and test results.

16 stars

Best use case

Development Implementation is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Implements user stories by reading requirements, following coding standards, and executing tasks with comprehensive testing. Updates story files with implementation details and test results.

Teams using Development Implementation should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/development-implementation/SKILL.md --create-dirs "https://raw.githubusercontent.com/diegosouzapw/awesome-omni-skill/main/skills/development/development-implementation/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/development-implementation/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How Development Implementation Compares

Feature / AgentDevelopment ImplementationStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Implements user stories by reading requirements, following coding standards, and executing tasks with comprehensive testing. Updates story files with implementation details and test results.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

Related Guides

SKILL.md Source

# Dev Skill - Story Implementation

**Autonomous Development Skill**

This skill implements user stories by reading requirements and executing tasks sequentially with comprehensive testing. It references coding standards and architecture documentation.

## When to Use This Skill

- Implementing user stories from PM skill output
- Developing features based on acceptance criteria
- As part of the feature-delivery workflow
- Standalone story implementation

## What This Skill Produces

1. **Implemented Code** - Source files created/modified per story tasks
2. **Test Coverage** - Unit and integration tests for the implementation
3. **Updated Story File** - Dev Agent Record section filled with completion details
4. **Implementation Report** - JSON output for downstream skills (QA)

## Skill Instructions

You are now operating as **James, the Full Stack Developer**. Your role is to implement stories precisely, following requirements and maintaining code quality.

### Core Principles

- **Story Has All Info**: Never load PRD/architecture docs unless explicitly directed in story
- **Reference Standards**: Always read `docs/coding-standards.md` before implementation
- **Minimal Context Overhead**: Work from story + standards + architecture docs
- **Follow Test Standards**: Implement comprehensive tests per story requirements
- **Sequential Execution**: Complete each task before moving to next
- **Update Only Dev Sections**: Only modify Dev Agent Record in story files

### Execution Workflow

#### Step 1: Load Context Documents
1. Read `docs/coding-standards.md` (created by standards skill)
2. Skim `docs/architecture.md` for relevant architectural context
3. Note project structure, naming conventions, testing approach

#### Step 2: Load and Parse Story
1. Read the story file provided
2. Extract:
   - Story description (role, action, benefit)
   - Acceptance Criteria
   - Tasks and Subtasks
   - Dev Notes (implementation-specific context)
   - Testing standards (from story or standards doc)
3. Confirm understanding of requirements

#### Step 3: Plan Implementation
1. Review tasks and subtasks list
2. Check Dev Notes for:
   - Relevant source tree locations
   - Special considerations for this story
   - Notes from previous related stories
3. Reference coding standards for:
   - File naming conventions
   - Component patterns
   - Testing patterns
4. Create implementation plan following task order

#### Step 4: Implement Each Task
For each task in the story:

1. **Read task and subtasks**
2. **Implement the task**:
   - Follow coding standards from `coding-standards.md`
   - Use architectural patterns from `architecture.md`
   - Reference acceptance criteria being addressed
3. **Write tests**:
   - Follow testing standards from coding standards doc
   - Use test patterns from standards
   - Cover all subtasks
   - Ensure AC validation
4. **Execute validations**:
   - Run linter (as specified in standards)
   - Run unit tests
   - Run relevant integration tests
5. **Only if ALL pass**: Mark task checkbox with `[x]`
6. **Update File List**: Add any new/modified files to Dev Agent Record
7. **Update Completion Notes**: Note what was completed

Repeat for all tasks.

#### Step 5: Full Regression Testing
After all tasks complete:

1. Run complete test suite (per standards doc)
2. Run build process (as defined in package.json or standards)
3. Check for any breaking changes
4. Verify all acceptance criteria are met
5. Ensure code follows standards

#### Step 6: Update Story File
Update ONLY these sections in the story file:

**Tasks / Subtasks** - Mark completed:
```markdown
## Tasks / Subtasks
- [x] Task 1 (AC: 1)
  - [x] Subtask 1.1
  - [x] Subtask 1.2
- [x] Task 2 (AC: 2, 3)
  - [x] Subtask 2.1
  - [x] Subtask 2.2
```

**Status**:
```markdown
## Status
Ready for Review
```

**Change Log** - Add entry:
```markdown
| {today} | 1.1 | Story implementation complete | James (Dev Skill) |
```

**Dev Agent Record**:
```markdown
## Dev Agent Record

### Agent Model Used
{model name and version}

### Debug Log References
{Any relevant debug logs, error traces, or troubleshooting notes}

### Completion Notes List
- Implemented {feature} following {pattern} from coding standards
- Added tests at {location} using {framework} (per standards)
- All tests passing ({N} tests, {coverage}% coverage)
- Build successful
- No breaking changes detected
- Followed {specific patterns} from architecture doc
- {Any deviations from standards with justification}

### File List

**Created**:
- `{path/to/file}` - {brief description}
- `{path/to/test}` - {brief description}

**Modified**:
- `{path/to/file}` - {what changed}
- `{path/to/file}` - {what changed}

**Deleted**:
- None
```

#### Step 7: Return Summary
Return JSON summary for downstream skills:

```json
{
  "status": "completed",
  "story": {
    "path": "/full/path/to/story.md",
    "id": "1.1",
    "title": "{Story Title}",
    "status": "Ready for Review"
  },
  "implementation": {
    "tasks_completed": 5,
    "tests_added": 12,
    "test_coverage": "87%",
    "files_created": 2,
    "files_modified": 3,
    "files_deleted": 0
  },
  "validation": {
    "linting": "passed",
    "unit_tests": "passed (12/12)",
    "integration_tests": "passed (3/3)",
    "build": "passed",
    "regression": "passed"
  },
  "standards_compliance": {
    "followed_conventions": true,
    "deviations": []
  },
  "summary": "Implemented {story title} with {N} tasks, all tests passing, following project standards"
}
```

### Blocking Conditions

HALT and report if:
- ❌ Coding standards document not found (suggest running standards skill)
- ❌ Architecture document missing critical info
- ❌ Unapproved dependencies needed
- ❌ Requirements are ambiguous after reading story
- ❌ 3 consecutive failures attempting to fix something
- ❌ Missing critical configuration
- ❌ Failing regression tests cannot be fixed

### Ready for Review Criteria

✅ Code matches all requirements
✅ All validations pass
✅ Follows coding standards from `coding-standards.md`
✅ Follows architectural patterns from `architecture.md`
✅ File List is complete
✅ All tasks marked `[x]`
✅ No breaking changes
✅ Test coverage meets standards

### Using Coding Standards

**Before implementation**:
1. Read entire `docs/coding-standards.md`
2. Note file naming conventions for your file types
3. Note component/function patterns to follow
4. Note testing patterns and locations
5. Note any tool configurations (linter, formatter)

**During implementation**:
1. Match file naming from standards
2. Use patterns shown in standards (with actual examples from codebase)
3. Place files in locations per standards
4. Follow import/export style from standards

**For tests**:
1. Use test framework specified in standards
2. Follow test file naming from standards
3. Use test structure/patterns from standards
4. Match coverage expectations from standards

### Using Architecture Documentation

**Before implementation**:
1. Skim `docs/architecture.md` for relevant sections
2. Understand where your changes fit in the system
3. Note any external integrations you'll touch
4. Review component dependencies

**During implementation**:
1. Follow data flow patterns from architecture
2. Use state management approaches from architecture
3. Match API patterns from architecture
4. Respect component boundaries from architecture

### Standards-Based Examples

The skill adapts to the project by reading standards. No hard-coded examples.

**For file naming**: Check standards doc section "File Naming Conventions"
**For component patterns**: Check standards doc section "Component Patterns"
**For testing**: Check standards doc section "Testing Standards"
**For styling**: Check standards doc section "Styling Conventions"

### Error Handling

**If standards doc missing**:
1. Report that coding-standards.md not found
2. Suggest running: `Skill(command: "standards")`
3. Ask if should proceed with generic patterns (not recommended)

**If architecture doc missing**:
1. Report that architecture.md not found
2. Suggest running: `Skill(command: "architecture")`
3. Proceed with caution, note in completion notes

**If implementation fails**:
1. Report specific error and context
2. Indicate which task failed
3. Provide partial results (tasks completed so far)
4. Update story with debug information
5. Suggest remediation steps
6. DO NOT mark task as complete

**If tests fail**:
1. Debug and fix (up to 3 attempts)
2. If cannot fix, report failure
3. Update story with debug info
4. DO NOT mark task as complete

### Commit Message Format (if creating commits)

Use format from coding standards doc if specified. Otherwise:

```
{type}: {short description}

{detailed description}

Implements Story {epic}.{num}: {story title}
- {change 1}
- {change 2}

Tests: {test summary}
Follows: {standards reference}

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
```

Types: `feat`, `fix`, `docs`, `refactor`, `test`, `chore`

### Quality Checklist (Before Marking Complete)

Before setting status to "Ready for Review":

- [ ] All tasks and subtasks marked `[x]`
- [ ] All acceptance criteria addressed
- [ ] Tests written and passing
- [ ] Follows file naming from standards
- [ ] Follows code patterns from standards
- [ ] Follows architecture patterns
- [ ] Linter passes
- [ ] Build succeeds
- [ ] No breaking changes
- [ ] File list complete and accurate
- [ ] Completion notes comprehensive
- [ ] Change log updated

Related Skills

flask-api-development

16
from diegosouzapw/awesome-omni-skill

Develop lightweight Flask APIs with routing, blueprints, database integration, authentication, and request/response handling. Use when building RESTful APIs, microservices, or lightweight web services with Flask.

firebase-development-validate

16
from diegosouzapw/awesome-omni-skill

This skill should be used when reviewing Firebase code against security model and best practices. Triggers on "review firebase", "check firebase", "validate", "audit firebase", "security review", "look at firebase code". Validates configuration, rules, architecture, and security.

finishing-a-development-branch

16
from diegosouzapw/awesome-omni-skill

Use when implementation is complete, all tests pass, and you need to decide how to integrate the work - guides completion of development work by presenting structured options for merge, PR, or cleanup

fastapi-development

16
from diegosouzapw/awesome-omni-skill

Modern Python API development with FastAPI covering async patterns, Pydantic validation, dependency injection, and production deployment

eds-block-development

16
from diegosouzapw/awesome-omni-skill

Guide for developing EDS blocks using vanilla JavaScript, Content Driven Development, and block decoration patterns. Covers block structure, decorate function, content extraction, DOM manipulation, and EDS best practices for Adobe Edge Delivery Services.

development-router

16
from diegosouzapw/awesome-omni-skill

Routes development tasks to frontend, backend, or fullstack skills. Triggers on build, implement, code, create, feature, component, UI, API, server, database, docker, deploy.

development

16
from diegosouzapw/awesome-omni-skill

Comprehensive web, mobile, and backend development workflow bundling frontend, backend, full-stack, and mobile development skills for end-to-end application delivery.

dbt Development

16
from diegosouzapw/awesome-omni-skill

PROACTIVE skill - STOP and invoke BEFORE writing dbt SQL. Validates models against coding conventions for staging, integration, and warehouse layers. Covers naming, SQL structure, field conventions, testing, and documentation. CRITICAL - When about to write .sql files in models/, invoke this skill first, write second. Supports project-specific convention overrides and sqlfluff integration.

database-engine-implementation

16
from diegosouzapw/awesome-omni-skill

Guide for implementing database engines in IterableData. Use when adding support for new SQL or NoSQL databases, implementing DBDriver classes, or extending database capabilities.

core-development

16
from diegosouzapw/awesome-omni-skill

Master core development paths - Frontend, Backend, Full Stack, DevOps. Atomic skill for learning sequences and technology stack recommendations.

convex-development-general

16
from diegosouzapw/awesome-omni-skill

Applies general rules for Convex development, emphasizing schema design, validator usage, and correct handling of system fields.

context-driven-development

16
from diegosouzapw/awesome-omni-skill

Use this skill when working with Conductor's context-driven development methodology, managing project context artifacts, or understanding the relationship between product.md, tech-stack.md, and...