code-simplification
Use after implementing features, before claiming a phase is complete, when reviewing AI-generated code, or when code feels overly complex. Also use when you…
Use when shipping features with public interfaces that lack docs, generating documentation, updating README files, writing API docs, creating architecture documentation, or when documentation is incomplete or outdated. Also use when adding breaking changes, implementing complex
$ npx -y skills add lgbarn/shipyard --skill documentation --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/documentationContext preview
The summary Claude sees to decide when to auto-load this skill.
Use when shipping features with public interfaces that lack docs, generating documentation, updating README files, writing API docs, creating architecture documentation, or when documentation is incomplete or outdated. Also use when adding breaking changes, implementing complex
name: documentation description: Use when shipping features with public interfaces that lack docs, generating documentation, updating README files, writing API docs, creating architecture documentation, or when documentation is incomplete or outdated. Also use when adding breaking changes, implementing complex algorithms, or before shipping any phase — if a public function lacks a docstring, this skill applies.
<!-- TOKEN BUDGET: 290 lines / ~870 tokens -->
<activation>
</activation>
Generate accurate, useful documentation that serves its audience. API docs for developers, guides for users, architecture docs for maintainers.
**The documenter agent references this skill for systematic documentation generation.**
<instructions>
Document non-obvious code for developers reading the implementation.
**What to document:**
**What NOT to document:** Anything a competent developer can understand by reading the code itself.
**HOW — step by step:** 1. Read the function/class from the consumer's perspective 2. Ask: "Would a senior dev understand WHY this exists?" If no, add a comment 3. For public functions: write docstring with parameters, returns, exceptions, and at least one example 4. For classes: write purpose + responsibilities in one paragraph 5. For modules: write one-line overview at the top
**Format:** Docstrings with parameters, returns, exceptions, and examples for functions. Purpose and responsibilities for classes. Overview for modules.
Help developers use public interfaces correctly.
**HOW — step by step:** 1. List every public endpoint/function in the module 2. For each: write description (one sentence max), then parameters with types + constraints 3. Document return values and all error conditions 4. Write at least one realistic example per function 5. For HTTP APIs: add authentication/authorization requirements 6. Run every example to verify it works
**Per endpoint/function:**
**Checklist:**
Help developers understand system design and make consistent changes.
**HOW — step by step:** 1. Draw (or describe) the component diagram first — boxes and arrows 2. For each component: one sentence on what it does, one on what it does NOT do 3. Document data flow: where data enters, how it transforms, where it exits 4. For each key design decision: record the decision, why it was chosen, alternatives rejected 5. List all external dependencies with version constraints 6. Document deployment topology (single box, microservices, cloud regions)
**Architecture doc example:**
## Components | Component | Responsibility | Does NOT handle | |-----------|---------------|-----------------| | API Gateway | Route requests, auth validation | Business logic | | User Service | CRUD user accounts | Billing, permissions | | Notification Worker | Send emails/SMS async | Template rendering | ## Key Decision: Event-Driven vs. Synchronous **Decision:** Use async events for cross-service communication **Rationale:** Decouples services; allows independent scaling **Rejected:** Direct HTTP calls — too much coupling, cascading failures
**Checklist:**
Help end-users accomplish tasks.
**HOW — step by step:** 1. Identify the user's goal (not the feature name) 2. List prerequisites (what must already be installed/configured) 3. Write steps numbered sequentially — one action per step 4. Show expected output after each step 5. Add a "What if it fails?" section for common errors 6. Test the guide yourself from scratch
**User guide example:**
## How to Set Up Webhook Notifications
**Prerequisites:** Admin account, HTTPS endpoint that accepts POST requests
1. Go to Settings → Integrations → Webhooks
2. Click **Add Webhook**
3. Enter your endpoint URL (must start with `https://`)
4. Select events to subscribe to (e.g., `user.created`, `order.paid`)
5. Click **Save** — a test ping is sent to your endpoint immediately
**Expected:** Your endpoint receives a `POST` with `{"event": "test.ping"}`
**If it fails:** Check that your endpoint returns HTTP 200. Non-200 responses
are retried 3 times then marked failed.**Types:**
**Check
A Claude Code plugin for structured project execution. Plan work in phases, build with parallel agents and TDD, review with security audits and quality gates, and ship with confidence.
Repo: lgbarn/shipyard
Use after implementing features, before claiming a phase is complete, when reviewing AI-generated code, or when code feels overly complex. Also use when you…
Use when starting feature work that needs a branch, creating worktrees for isolation, making atomic commits during development, or completing a development…
Import a handwritten spec document into Shipyard, replacing brainstorming. Use when a freeform spec, requirements, or design document exists.
Import a spec-kit feature spec into Shipyard, replacing brainstorming. Use when a spec-kit feature directory exists with spec.md.
Use when working with Terraform (.tf, .tfvars), Ansible (playbooks, roles, inventory), Docker (Dockerfile, docker-compose.yml), Kubernetes (manifests, Helm…
Use when a phase or milestone is complete and you need to extract reusable knowledge, before shipping, or when reflecting on completed work. Also use when the…