Adds the 4 new Matt Pocock-derived skills + 4 cs-* agent pages to the github.io docs site (Material for MkDocs). Refreshes stale skill counts across index.md + mkdocs.yml site_description. Auto-generated via scripts/generate-docs.py (the established generator that v2.5.7 fixed the dedup bug in): New skill pages (docs/skills/engineering/): - caveman.md - grill-me.md - handoff.md - write-a-skill.md New agent pages (docs/agents/): - cs-caveman-mode.md - cs-grill-master.md - cs-handoff-author.md - cs-skill-author.md mkdocs.yml nav additions: - Engineering POWERFUL section: 4 new entries after Ship Gate, labeled "(Matt Pocock-derived)" for clear attribution - Agents section: 4 new entries after CS VPE Advisor, same labeling - site_description: 268 → 272 skills; 33 → 37 cs-* agents; 21 → 25 /cs:* commands; explicit Pocock quartet callout docs/index.md refresh: - title: 246 → 272 Agent Skills - description: refreshed with v2.6.0 Pocock-quartet callout - hero subtitle: 246 → 272 skills; 20 → 37 cs-* agents - "What's Inside" cards: 246 → 272 Skills; 20 → 37 Agents Side-effect (additive only, non-blocking): - 2 pre-existing ra-qm-team skills (EU AI Act Specialist + ISO 42001 Specialist) finally generated their canonical docs pages (they had SKILL.md files but no docs/ entries). The long-named dual-publish duplicates were removed to avoid the v2.5.7 dedup regression. Build verified: 412 HTML pages generated in 18.17s (was 357 in v2.5.7). All 4 new skill pages + 4 new agent pages present in build output. No new warnings from our additions (only generic Material for MkDocs 2.0 upgrade notice that pre-dates this PR). https://claude.ai/code/session_01VFreMf7XLBqMgjsrG4wSYe
2.3 KiB
| title | description |
|---|---|
| Handoff — Agent Skill for Codex & OpenClaw | Compact the current conversation into a handoff document for another agent to pick up. References existing artifacts (PRDs, plans, ADRs, issues. Agent skill for Claude Code, Codex CLI, Gemini CLI, OpenClaw. |
Handoff
claude /plugin install engineering-advanced-skills
Derived from Matt Pocock's handoff (MIT). Matt's no-duplication discipline preserved verbatim. Additions: tools + references + cs-* wrapper (see references/companion_tooling.md).
Write a handoff document summarising the current conversation so a fresh agent can continue the work. Save it to a path produced by mktemp -t handoff-XXXXXX.md (read the file before you write to it).
Suggest the skills to be used, if any, by the next session.
Do not duplicate content already captured in other artifacts (PRDs, plans, ADRs, issues, commits, diffs). Reference them by path or URL instead.
If the user passed arguments, treat them as a description of what the next session will focus on and tailor the doc accordingly.
Sections
- Goal of next session (from user argument or inferred)
- State of play (what's done, what's blocking)
- Open decisions (what the next agent must decide)
- Skills to use (concrete list)
- Artifacts (paths/URLs to PRDs, plans, ADRs, issues, branches, PRs — do not duplicate)
Tooling
See references/companion_tooling.md. Tools: template + dedup + recommender. Agent: cs-handoff-author. Command: /cs:handoff.
Version: 1.0.0 Derived: Matt Pocock (MIT) + this repo's wrapper