leduykhuong-daniel/OSS-docs-as-code-kit
Plugin Claude Code
Plugin marketplace listing 1 plugin: docs-as-code.
leduykhuong-daniel/OSS-docs-as-code-kit
Plugin Claude Code
Plugin marketplace listing 1 plugin: docs-as-code.
leduykhuong-daniel/OSS-docs-as-code-kit
Plugin Claude Code
A teaching kit + installable tools, agents, and skills for adopting Documentation-as-Code in product teams. Claude Code first, with best-effort Cursor/Codex support.
leduykhuong-daniel/OSS-docs-as-code-kit
Instructions file CodexOpenCode
AGENTS.md instructions for leduykhuong-daniel/OSS-docs-as-code-kit, covering agents.md, project, core principle, where things live and docs-as-code lifecycle tooling (run these directly).
leduykhuong-daniel/OSS-docs-as-code-kit
Agent
Inspects a change to an inter-team API contract and classifies it as breaking or non-breaking, identifies every affected consumer, and produces a migration-notification checklist. Use when a .contract.md changes (or before merging one) to prevent the "added a required field and broke consumers" incident.
leduykhuong-daniel/OSS-docs-as-code-kit
Agent
Reviews a documentation change (a docs PR or a set of changed .md files) for docs-as-code quality — runs validate + trace + drift, checks the docs+code+contract "changed together" rule, and returns a BLOCK/FLAG/PASS verdict with evidence. Use when reviewing docs changes before merge.
leduykhuong-daniel/OSS-docs-as-code-kit
Agent
Surveys an existing body of legacy documentation (a folder of Word/PDF/Confluence exports/scattered Markdown) and produces a sequenced migration plan — classifying each document by artifact type and ordering the work by traceability tier. Use before a bulk docs migration to decide what moves first; hands each file to…
leduykhuong-daniel/OSS-docs-as-code-kit
Agent
Assesses a team's repo and current documentation maturity, then produces a tailored Documentation-as-Code adoption roadmap — which lessons to read, which commands to run first, and a realistic two-to-four-week rollout plan. Use when a team wants to adopt docs-as-code but does not know where to start.
leduykhuong-daniel/OSS-docs-as-code-kit
Agent
Deep-audits the traceability matrix of a product-docs repo — reconstructs every BRD→PRD→FR/NFR→Epic→Story→Test chain, scores coverage, and lists unverified requirements, dead ID links, and orphaned artifacts with evidence. Use for a release-readiness or quarterly docs audit (deeper than the per-PR docs-reviewer).
leduykhuong-daniel/OSS-docs-as-code-kit
Command
Health audit of the docs — traceability gaps, documentation drift (docs older than code, contract↔code mismatch), and the four health metrics. Read-only; the one command to answer "what's wrong with our docs?".
leduykhuong-daniel/OSS-docs-as-code-kit
Command
Create or version an inter-team API contract. new scaffolds a versioned contract; bump [--breaking] raises the version (breaking = new major + consumer-notification checklist).
leduykhuong-daniel/OSS-docs-as-code-kit
Command
Render the traceability chains as a Mermaid flowchart from product-docs frontmatter — a visual BRD→PRD→FR/NFR→Epic→Story→Test graph, with missing-but-referenced artifacts flagged. Drops straight into a Markdown doc or a docs site.
leduykhuong-daniel/OSS-docs-as-code-kit
Command
Assess the current repo for docs-as-code readiness (git, docs/, CI, templates), then scaffold the product-docs structure and a minimal CI check.
leduykhuong-daniel/OSS-docs-as-code-kit
Command
Introduce and teach Documentation-as-Code to the user — explain the principle, walk the curriculum, and guide them to apply it to their own repo. Use when someone is new to docs-as-code or wants a guided introduction.
leduykhuong-daniel/OSS-docs-as-code-kit
Command
Migrate an existing legacy document (Word/PDF/Confluence export/scattered Markdown) into the product-docs structure — classify its artifact type, convert to Markdown, scaffold with frontmatter, and link it into the traceability chain.
leduykhuong-daniel/OSS-docs-as-code-kit
Command
Create a new product-docs artifact (brd|prd|fr|nfr|adr|epic|story|test) from the matching template, with frontmatter pre-filled and traceability auto-linked to its upstream artifact.
leduykhuong-daniel/OSS-docs-as-code-kit
Command
Onboard a team to Documentation-as-Code — assess their repo's current doc maturity, then produce a tailored adoption roadmap (which lessons, which commands first, a two-to-four-week rollout). For a team that wants to adopt docs-as-code but does not know where to start.
leduykhuong-daniel/OSS-docs-as-code-kit
Command
Promote a doc through its lifecycle status (draft → review → active/published, or deprecate), updating the status field and date and logging the transition.
leduykhuong-daniel/OSS-docs-as-code-kit
Command
Set up or build a static documentation site from the product-docs Markdown — wires a site generator (VitePress or MkDocs), a navigation tree from the docs structure, search, and a build step suitable for CI/Pages deploy. Docs become a browsable site without leaving Markdown.
leduykhuong-daniel/OSS-docs-as-code-kit
Command
Prepare a docs pull request — verify docs+code+(contract) changed together, assign the right reviewers (CODEOWNERS, including contract consumers), and generate a PR description (what/why/impact/migration).
leduykhuong-daniel/OSS-docs-as-code-kit
Command
Build or verify the cross-artifact traceability matrix from frontmatter — surface gaps (a missing Test = an unverified requirement), broken ID links, and orphaned artifacts.
leduykhuong-daniel/OSS-docs-as-code-kit
Command
Validate docs — required frontmatter fields, Markdown lint, and internal/external link checks across product-docs and contracts. Reports file:line for each issue and exits non-zero on failure (CI-ready).
leduykhuong-daniel/OSS-docs-as-code-kit
Skill Claude CodeCodex
Use when designing an AI agent feature and you need a single architecture document that declares persona + tools + memory + autonomy + cost budget + guardrails. Produces an "Agent Spec" (the HOW) as a companion to a PRD (the WHAT/WHY). Trigger phrases: agent spec, persona spec, tool fabric design, agent architecture…
leduykhuong-daniel/OSS-docs-as-code-kit
Skill Claude CodeCodex
Use when applying Documentation-as-Code across many teams or a super-app / multi-repo / monorepo with several mini-apps — how to lay out per-team docs, own API contracts at boundaries, keep one traceability matrix across teams, and run the gate per changed area. The advanced (Lesson 6) counterpart to single-project…
leduykhuong-daniel/OSS-docs-as-code-kit
Skill Claude CodeCodex
Use when wiring the docs quality gate into CI/CD — turning docs-as-code:validate into a check that blocks pull requests on a docs/frontmatter/link failure. Covers GitHub Actions, GitLab CI, and a generic shell gate, plus making CODEOWNERS enforce doc review.