implementation-plan-updates

Defines the pattern for updating project documentation when completing features. Use when marking features as complete to ensure consistent documentation of implementation status, test coverage, and deliverables.

13 stars

Best use case

implementation-plan-updates is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Defines the pattern for updating project documentation when completing features. Use when marking features as complete to ensure consistent documentation of implementation status, test coverage, and deliverables.

Teams using implementation-plan-updates 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/implementation-plan-updates/SKILL.md --create-dirs "https://raw.githubusercontent.com/arun-gupta/agentic-tictactoe/main/.claude/skills/implementation-plan-updates/SKILL.md"

Manual Installation

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

How implementation-plan-updates Compares

Feature / Agentimplementation-plan-updatesStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Defines the pattern for updating project documentation when completing features. Use when marking features as complete to ensure consistent documentation of implementation status, test coverage, and deliverables.

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.

SKILL.md Source

# Documentation Updates Pattern

This skill defines how to update project documentation when completing features or milestones.

## Update Locations

### Feature Header

Add completion marker:

```markdown
**Feature: Health Endpoint** ✅ **COMPLETE**
```

### Implementation Notes Section

Add immediately after phase header:

```markdown
**Implementation Notes:**
- Implemented server state tracking with `_server_start_time` and `_server_shutting_down` globals
- Uptime calculated from server start time, rounded to 2 decimal places
- Shutdown state tracked in lifespan context manager
- Timestamp in ISO 8601 format with 'Z' suffix for UTC
```

### Subsection Tests Section

Mark each test as complete:

```markdown
**Subsection Tests** ✅:
- ✅ GET /health returns 200 with status="healthy" when server is running
- ✅ GET /health response includes timestamp in ISO 8601 format
- ✅ GET /health response includes uptime_seconds with 2 decimal precision
- ✅ GET /health response completes within 100ms
- ✅ GET /health returns 503 with status="unhealthy" when shutting down
```

### Test Coverage Section

Update with actual counts:

```markdown
**Test Coverage** ✅:
- **Subsection Tests**: 5 tests implemented and passing
- **Acceptance Criteria**: AC-5.1.1, AC-5.1.2, AC-5.1.3 verified (AC-5.1.4 is for failure case, tested via shutdown)
- **Test File**: `tests/integration/api/test_api_health.py`
```

## Update Pattern by Feature Type

### Core Business Logic

```markdown
**Feature: Data Validation** ✅ **COMPLETE**

**Implementation Notes:**
- Implemented validation layer with input validation
- Added bounds checking with error codes
- Tests cover all validation cases

**Test Coverage**: ✅
- **Tests**: 10 tests implemented
- **Acceptance Criteria**: All requirements verified
- **Test File**: `tests/unit/core/test_validation.py`
```

### Service Layer

```markdown
**Feature: Processing Service** ✅ **COMPLETE**

**Implementation Notes:**
- Implemented processing logic with error handling
- Returns result wrapper with success/error states
- Handles edge cases correctly

**Test Coverage**: ✅
- **Tests**: 10 tests implemented
- **Acceptance Criteria**: All requirements verified
- **Test File**: `tests/unit/services/test_processing.py`
```

### API Endpoints

```markdown
**Feature: Health Endpoint** ✅ **COMPLETE**

**Implementation Notes:**
- Implemented server state tracking
- Uptime calculated from server start time
- Shutdown state tracked in lifespan context manager

**Tests** ✅:
- ✅ Returns 200 with status="healthy" when server is running
- ✅ Response includes timestamp in ISO 8601 format
- ✅ Response includes uptime_seconds with 2 decimal precision
- ✅ Response completes within 100ms
- ✅ Returns 503 with status="unhealthy" when shutting down

**Test Coverage** ✅:
- **Tests**: 5 tests implemented and passing
- **Acceptance Criteria**: All requirements verified
- **Test File**: `tests/integration/api/test_health.py`
```

## Deliverables Section

Update the deliverables section for the milestone:

```markdown
**Milestone Deliverables:**
- ✅ Health endpoint implemented and tested
- ✅ Ready endpoint implemented (if complete)
- ✅ 5 API integration tests passing
- ✅ Error handling with proper HTTP status codes
- ⚠️ Create endpoint (in progress)
- ⚠️ Update endpoint (not started)
```

**Note**: Only mark deliverables as ✅ when fully complete. Use ⚠️ for in-progress items.

## Specification References

Ensure specification references are correct:

```markdown
**Spec References:**
- API Design Specification
- Health and Readiness Endpoints
- HTTP Status Code Mapping
```

## Common Update Patterns

### Adding Implementation Notes

Include:
- Key implementation decisions
- Notable patterns or approaches
- Any deviations from the plan
- Important technical details

### Updating Test Counts

- Count actual tests implemented
- Match test file names
- Note which acceptance criteria are verified
- Mention if some AC are tested indirectly

### Marking Files Complete

```markdown
**Files:**
- `src/api/main.py` ✅ (extended with /health endpoint)
- `tests/integration/api/test_api_health.py` ✅ (created with 5 tests)
```

## Best Practices

1. **Update immediately**: Mark complete right after implementation
2. **Be specific**: Include concrete details in implementation notes
3. **Accurate counts**: Ensure test counts match reality
4. **Check deliverables**: Update deliverables section carefully
5. **Verify AC**: Note which acceptance criteria are covered
6. **File paths**: Use correct relative paths from project root
7. **Consistent format**: Follow established format for consistency

## Common Mistakes to Avoid

### ❌ Don't Mark Unfinished Work

```markdown
**Feature: Create Endpoint** ✅ **COMPLETE**  # WRONG - not implemented yet
```

### ❌ Don't Overcount Tests

```markdown
**Tests**: 10 tests  # WRONG - only 5 were implemented
```

### ❌ Don't Forget Deliverables

```markdown
**Milestone Deliverables:**
- ✅ Health endpoint  # Missing other endpoints status
```

### ✅ Correct Format

```markdown
**Feature: Health Endpoint** ✅ **COMPLETE**

**Implementation Notes:**
- [Specific implementation details]

**Tests** ✅:
- ✅ [List of tests with checkmarks]

**Test Coverage** ✅:
- **Tests**: 5 tests implemented and passing
- **Acceptance Criteria**: All requirements verified
- **Test File**: `tests/integration/api/test_health.py`
```

## Checklist for Updates

When marking a feature complete, ensure:

- [ ] Feature header marked with ✅ **COMPLETE**
- [ ] Implementation Notes section added
- [ ] All tests marked with ✅
- [ ] Test Coverage section updated with actual counts
- [ ] Acceptance Criteria status noted
- [ ] Test file path is correct
- [ ] Deliverables section updated
- [ ] Specification References are accurate
- [ ] File paths in "Files:" section are correct

Related Skills

subsection-implementation

13
from arun-gupta/agentic-tictactoe

Complete workflow for implementing a single subsection from the implementation plan. Orchestrates all project skills to ensure consistent, high-quality implementation with full test coverage. Use when implementing any subsection (e.g., 5.1.1, 5.2.3) to automate the entire workflow from requirements to commit.

phase-implementation

13
from arun-gupta/agentic-tictactoe

Guides implementation of features following an established workflow pattern. Use when implementing any feature to ensure consistent process: read requirements, create todos, implement code, write tests, update documentation, commit and push.

api-endpoint-implementation

13
from arun-gupta/agentic-tictactoe

Defines patterns for implementing FastAPI REST endpoints, including route definition, request/response models, error handling, and integration tests. Use when implementing any API endpoint to ensure consistency and best practices across endpoints.

test-writing

13
from arun-gupta/agentic-tictactoe

Defines patterns for writing tests, including subsection tests for incremental development and acceptance criteria verification. Use when writing any tests to ensure consistent naming, structure, and coverage patterns.

si

13
from arun-gupta/agentic-tictactoe

Short alias for /subsection-implementation. Implements a single subsection from docs/implementation-plan.md with full automation. Usage: /si 5.1.1

pre-commit-validation

13
from arun-gupta/agentic-tictactoe

Ensures all quality checks pass locally before committing changes. Use this skill to validate code quality, tests, and type checking before creating commits to catch issues early and avoid CI failures.

commit-format

13
from arun-gupta/agentic-tictactoe

Ensures all git commits follow the Conventional Commits specification with consistent types and scopes. Use this skill when making any commit to maintain consistent commit message format, improve git history readability, and enable automatic changelog generation.

You are a professional Chief Marketing Officer. Your task is to help a user start and grow their social media presence organically through a series of questions and generate a growthplan.md blueprint.

6
from Harmeet10000/skills

Follow these instructions:

Marketing Strategy

testing-oauth2-implementation-flaws

16
from plurigrid/asi

Tests OAuth 2.0 and OpenID Connect implementations for security flaws including authorization code interception, redirect URI manipulation, CSRF in OAuth flows, token leakage, scope escalation, and PKCE bypass. The tester evaluates the authorization server, client application, and token handling for common misconfigurations that enable account takeover or unauthorized access. Activates for requests involving OAuth security testing, OIDC vulnerability assessment, OAuth2 redirect bypass, or authorization code flow testing.

planar-isotopy-screen

16
from plurigrid/asi

Planar Isotopy Screen Mapping

gay-fokker-planck-staging

16
from plurigrid/asi

Two Fokker-Plancks per staging gate, conditioned on (rama OR goblins)

fokker-planck-analyzer

16
from plurigrid/asi

Layer 5: Convergence to Equilibrium Analysis