Agent skill

workflow-feature

Complete feature development workflow from design to deployment. Use when implementing new features or functionality.

Stars 13
Forks 6

Install this agent skill to your Project

npx add-skill https://github.com/NickCrew/Claude-Cortex/tree/main/skills/workflow-feature

SKILL.md

Feature Development Workflow

Complete workflow for developing new features from design to deployment.

Phases

1. Architecture Design

Define:

  • Component structure
  • Data models
  • API contracts
  • Integration points
  • Dependencies

Output: Architecture diagram, component list, API specs

Agent: architect-review for complex features

2. Implementation Planning

Break down into:

  • Discrete tasks (< 2 hours each)
  • Dependencies between tasks
  • Parallel workstreams

Output: Task list with estimates

3. Implementation

Guidelines:

  • Write tests alongside code (TDD optional but helpful)
  • Commit frequently (atomic commits)
  • Follow existing patterns in codebase
  • Document as you go

Run parallel workstreams:

  • Core implementation
  • Tests
  • Documentation

4. Code Review

Checklist:

  • Code follows project conventions
  • No obvious bugs or edge cases missed
  • Performance acceptable
  • Error handling complete
  • Tests meaningful (not just coverage)

Agent: code-reviewer

5. Security Review

Check:

  • Input validation
  • Auth/authz on new endpoints
  • Sensitive data handling
  • No secrets in code

Agent: security-auditor (if auth-related)

6. Testing

Required:

  • Unit tests (80%+ coverage on new code)
  • Integration tests for API endpoints
  • E2E tests for critical paths

Agent: test-automator or debugger

7. Performance Check

Verify:

  • Response times acceptable
  • No memory leaks
  • Bundle size impact (frontend)

Agent: performance-engineer (if perf-sensitive)

8. Documentation

Update:

  • API docs (OpenAPI/Swagger)
  • User guide (if user-facing)
  • Changelog entry
  • README if needed

9. Deployment Prep

Checklist:

  • Version bumped
  • Changelog updated
  • Migration scripts (if DB changes)
  • Rollback plan documented
  • Feature flags (if gradual rollout)

Success Criteria

  • All tests pass
  • Security review clean
  • Performance within limits
  • Documentation complete
  • Code reviewed and approved

Review Gate

bash
# Run before marking complete
cortex review -c feature

Quick Start Template

markdown
## Feature: [Name]

### Requirements
- [ ] Requirement 1
- [ ] Requirement 2

### Tasks
- [ ] Task 1
- [ ] Task 2
- [ ] Tests
- [ ] Docs

### API Changes
- `POST /api/v1/resource` - Create resource
- `GET /api/v1/resource/:id` - Get resource

### Rollback Plan
1. Revert commit
2. Run down migration
3. Clear cache

Expand your agent's capabilities with these related and highly-rated skills.

NickCrew/Claude-Cortex

claude-consult

Consult Claude specialist agents during implementation for codebase understanding, pattern checking, security review, debugging help, and more. Use this skill whenever you're unsure about conventions, stuck on a failure, or need expert input before writing code. Does not replace the formal review gates in agent-loops — this is for mid-implementation consultation.

13 6
Explore
NickCrew/Claude-Cortex

doc-quality-review

Assess documentation quality across readability, consistency, audience fit, and prose clarity. Produces a scored review with actionable findings. This skill should be used before releases, during doc reviews, or when documentation feels unclear or inconsistent.

13 6
Explore
NickCrew/Claude-Cortex

event-driven-architecture

Event-driven architecture patterns with event sourcing, CQRS, and message-driven communication. Use when designing distributed systems, microservices communication, or systems requiring eventual consistency and scalability.

13 6
Explore
NickCrew/Claude-Cortex

prompt-engineering

Optimize prompts for LLMs and AI systems with structured techniques, evaluation patterns, and synthetic test data generation. Use when building AI features, improving agent performance, or crafting system prompts.

13 6
Explore
NickCrew/Claude-Cortex

compliance-audit

Regulatory compliance auditing across GDPR, HIPAA, PCI DSS, SOC 2, and ISO frameworks with automated evidence collection and gap analysis. Use when conducting compliance assessments, preparing for certifications, or implementing regulatory controls.

13 6
Explore
NickCrew/Claude-Cortex

react-performance-optimization

React performance optimization patterns using memoization, code splitting, and efficient rendering strategies. Use when optimizing slow React applications, reducing bundle size, or improving user experience with large datasets.

13 6
Explore

Didn't find tool you were looking for?

Be as detailed as possible for better results