{"id":"9887a084-38d5-46c5-9982-cf9dd458f953","shortId":"GGgumB","kind":"skill","title":"document-release","tagline":"Post-ship documentation update. Reads all project docs, cross-references the\ndiff, builds a Diataxis coverage map (reference/how-to/tutorial/explanation),\nupdates README/ARCHITECTURE/CONTRIBUTING/CLAUDE.md to match what shipped,\ndetects architecture diagram drift, polishes CHANGE","description":"## Preamble\n\n```bash\neval \"$(~/.vibestack/bin/vibe-slug 2>/dev/null)\" 2>/dev/null || SLUG=\"unknown\"\n_LEARN_FILE=\"${VIBESTACK_HOME:-$HOME/.vibestack}/projects/${SLUG:-unknown}/learnings.jsonl\"\nif [ -f \"$_LEARN_FILE\" ]; then\n  _LEARN_COUNT=$(wc -l < \"$_LEARN_FILE\" 2>/dev/null | tr -d ' ')\n  echo \"LEARNINGS: $_LEARN_COUNT entries loaded\"\n  if [ \"$_LEARN_COUNT\" -gt 5 ] 2>/dev/null; then\n    ~/.vibestack/bin/vibe-learnings-search --limit 5 2>/dev/null || true\n  fi\nelse\n  echo \"LEARNINGS: none yet\"\nfi\n```\n\n## Step 0: Detect platform and base branch\n\nFirst, detect the git hosting platform from the remote URL:\n\n```bash\ngit remote get-url origin 2>/dev/null\n```\n\n- If the URL contains \"github.com\" → platform is **GitHub**\n- If the URL contains \"gitlab\" → platform is **GitLab**\n- Otherwise, check CLI availability:\n  - `gh auth status 2>/dev/null` succeeds → platform is **GitHub** (covers GitHub Enterprise)\n  - `glab auth status 2>/dev/null` succeeds → platform is **GitLab** (covers self-hosted)\n  - Neither → **unknown** (use git-native commands only)\n\nDetermine which branch this PR/MR targets, or the repo's default branch if no\nPR/MR exists. Use the result as \"the base branch\" in all subsequent steps.\n\n**If GitHub:**\n1. `gh pr view --json baseRefName -q .baseRefName` — if succeeds, use it\n2. `gh repo view --json defaultBranchRef -q .defaultBranchRef.name` — if succeeds, use it\n\n**If GitLab:**\n1. `glab mr view -F json 2>/dev/null` and extract the `target_branch` field — if succeeds, use it\n2. `glab repo view -F json 2>/dev/null` and extract the `default_branch` field — if succeeds, use it\n\n**Git-native fallback (if unknown platform, or CLI commands fail):**\n1. `git symbolic-ref refs/remotes/origin/HEAD 2>/dev/null | sed 's|refs/remotes/origin/||'`\n2. If that fails: `git rev-parse --verify origin/main 2>/dev/null` → use `main`\n3. If that fails: `git rev-parse --verify origin/master 2>/dev/null` → use `master`\n\nIf all fail, fall back to `main`.\n\nPrint the detected base branch name. In every subsequent `git diff`, `git log`,\n`git fetch`, `git merge`, and PR/MR creation command, substitute the detected\nbranch name wherever the instructions say \"the base branch\" or `<default>`.\n\n---\n\n# Document Release: Post-Ship Documentation Update\n\nYou are running the `/document-release` workflow. This runs **after `/ship`** (code committed, PR\nexists or about to exist) but **before the PR merges**. Your job: ensure every documentation file\nin the project is accurate, up to date, and written in a friendly, user-forward voice.\n\nYou are mostly automated. Make obvious factual updates directly. Stop and ask only for risky or\nsubjective decisions.\n\n**Only stop for:**\n- Risky/questionable doc changes (narrative, philosophy, security, removals, large rewrites)\n- VERSION bump decision (if not already bumped)\n- New TODOS items to add\n- Cross-doc contradictions that are narrative (not factual)\n\n**Never stop for:**\n- Factual corrections clearly from the diff\n- Adding items to tables/lists\n- Updating paths, counts, version numbers\n- Fixing stale cross-references\n- CHANGELOG voice polish (minor wording adjustments)\n- Marking TODOS complete\n- Cross-doc factual inconsistencies (e.g., version number mismatch)\n\n**NEVER do:**\n- Overwrite, replace, or regenerate CHANGELOG entries — polish wording only, preserve all content\n- Bump VERSION without asking — always use AskUserQuestion for version changes\n- Use `Write` tool on CHANGELOG.md — always use `Edit` with exact `old_string` matches\n\n---\n\n## Step 1: Pre-flight & Diff Analysis\n\n1. Check the current branch. If on the base branch, **abort**: \"You're on the base branch. Run from a feature branch.\"\n\n2. Gather context about what changed:\n\n```bash\ngit diff <base>...HEAD --stat\n```\n\n```bash\ngit log <base>..HEAD --oneline\n```\n\n```bash\ngit diff <base>...HEAD --name-only\n```\n\n3. Discover all documentation files in the repo:\n\n```bash\nfind . -maxdepth 2 -name \"*.md\" -not -path \"./.git/*\" -not -path \"./node_modules/*\" -not -path \"./.vibestack/*\" -not -path \"./.context/*\" | sort\n```\n\n4. Classify the changes into categories relevant to documentation:\n   - **New features** — new files, new commands, new skills, new capabilities\n   - **Changed behavior** — modified services, updated APIs, config changes\n   - **Removed functionality** — deleted files, removed commands\n   - **Infrastructure** — build system, test infrastructure, CI\n\n5. Output a brief summary: \"Analyzing N files changed across M commits. Found K documentation files to review.\"\n\n---\n\n## Step 1.5: Coverage Map (Blast-Radius Analysis)\n\nBefore touching any documentation file, build a **coverage map** of what shipped vs what's\ndocumented. This is inspired by the Diataxis framework (tutorial / how-to / reference / explanation)\n— but applied as an audit lens, not a generation tool.\n\n1. **Extract public surface changes from the diff.** Scan `git diff <base>...HEAD` for:\n   - New exported functions, classes, commands, CLI flags, config options, API endpoints\n   - New skills, workflows, or user-facing capabilities\n   - Renamed or removed public surface (modules, commands, features)\n   - New environment variables, feature flags, or configuration knobs\n\n2. **For each new/changed public surface item, assess documentation coverage:**\n\n```\nCoverage map:\n  [entity]         [reference?] [how-to?] [tutorial?] [explanation?]\n  /new-skill       ✅ AGENTS.md  ❌        ❌          ❌\n  --new-flag       ✅ README     ✅ README  ❌          ❌\n  FooProcessor     ❌            ❌        ❌          ❌\n```\n\nUse these definitions:\n- **Reference** — factual description of what it is, its API, its options (README tables, AGENTS.md skill lists, API docs)\n- **How-to** — task-oriented: \"how to do X with this\" (README examples, CONTRIBUTING workflows)\n- **Tutorial** — learning-oriented: step-by-step walkthrough for newcomers (getting started guides)\n- **Explanation** — understanding-oriented: \"why this works this way\" (ARCHITECTURE decisions, design rationale)\n\n3. **Output the coverage map.** Items with zero coverage are **critical gaps** — flag them for\n   Step 3. Items with reference-only coverage are **common gaps** — note them for the PR body.\n\n4. **Architecture diagram drift detection.** If ARCHITECTURE.md (or any doc) contains ASCII\n   diagrams or Mermaid blocks, extract entity names (modules, services, data flows) from the\n   diagrams. Cross-reference against the diff. Flag any diagram entities that were renamed,\n   split, removed, or moved in the code.\n\nThe coverage map feeds into Steps 2-3 (what to audit and fix) and Step 9 (documentation debt\nsummary in the PR body). Do NOT auto-generate missing documentation pages — flag gaps only.\nWhen significant gaps are found, suggest running `/document-generate` to fill them.\n\n---\n\n## Step 2: Per-File Documentation Audit\n\nRead each documentation file and cross-reference it against the diff. Use these generic heuristics\n(adapt to whatever project you're in — these are not vibestack-specific):\n\n**README.md:**\n- Does it describe all features and capabilities visible in the diff?\n- Are install/setup instructions consistent with the changes?\n- Are examples, demos, and usage descriptions still valid?\n- Are troubleshooting steps still accurate?\n\n**ARCHITECTURE.md:**\n- Do ASCII diagrams and component descriptions match the current code?\n- Are design decisions and \"why\" explanations still accurate?\n- Be conservative — only update things clearly contradicted by the diff. Architecture docs\n  describe things unlikely to change frequently.\n\n**CONTRIBUTING.md — New contributor smoke test:**\n- Walk through the setup instructions as if you are a brand new contributor.\n- Are the listed commands accurate? Would each step succeed?\n- Do test tier descriptions match the current test infrastructure?\n- Are workflow descriptions (dev setup, operational learnings, etc.) current?\n- Flag anything that would fail or confuse a first-time contributor.\n\n**CLAUDE.md / project instructions:**\n- Does the project structure section match the actual file tree?\n- Are listed commands and scripts accurate?\n- Do build/test instructions match what's in package.json (or equivalent)?\n\n**Any other .md files:**\n- Read the file, determine its purpose and audience.\n- Cross-reference against the diff to check if it contradicts anything the file says.\n\nFor each file, classify needed updates as:\n\n- **Auto-update** — Factual corrections clearly warranted by the diff: adding an item to a\n  table, updating a file path, fixing a count, updating a project structure tree.\n- **Ask user** — Narrative changes, section removal, security model changes, large rewrites\n  (more than ~10 lines in one section), ambiguous relevance, adding entirely new sections.\n\n---\n\n## Step 3: Apply Auto-Updates\n\nMake all clear, factual updates directly using the Edit tool.\n\nFor each file modified, output a one-line summary describing **what specifically changed** — not\njust \"Updated README.md\" but \"README.md: added /new-skill to skills table, updated skill count\nfrom 9 to 10.\"\n\n**Never auto-update:**\n- README introduction or project positioning\n- ARCHITECTURE philosophy or design rationale\n- Security model descriptions\n- Do not remove entire sections from any document\n\n---\n\n## Step 4: Ask About Risky/Questionable Changes\n\nFor each risky or questionable update identified in Step 2, use AskUserQuestion with:\n- Context: project name, branch, which doc file, what we're reviewing\n- The specific documentation decision\n- `RECOMMENDATION: Choose [X] because [one-line reason]`\n- Options including C) Skip — leave as-is\n\nApply approved changes immediately after each answer.\n\n---\n\n## Step 5: CHANGELOG Voice Polish\n\n**CRITICAL — NEVER CLOBBER CHANGELOG ENTRIES.**\n\nThis step polishes voice. It does NOT rewrite, replace, or regenerate CHANGELOG content.\n\nA real incident occurred where an agent replaced existing CHANGELOG entries when it should have\npreserved them. This skill must NEVER do that.\n\n**Rules:**\n1. Read the entire CHANGELOG.md first. Understand what is already there.\n2. Only modify wording within existing entries. Never delete, reorder, or replace entries.\n3. Never regenerate a CHANGELOG entry from scratch. The entry was written by `/ship` from the\n   actual diff and commit history. It is the source of truth. You are polishing prose, not\n   rewriting history.\n4. If an entry looks wrong or incomplete, use AskUserQuestion — do NOT silently fix it.\n5. Use Edit tool with exact `old_string` matches — never use Write to overwrite CHANGELOG.md.\n\n**If CHANGELOG was not modified in this branch:** skip this step.\n\n**If CHANGELOG was modified in this branch**, review the entry for voice:\n\n- **Sell test (Diataxis rubric):** Score each CHANGELOG entry 0-3:\n  - **1 point** — answers \"What changed?\" (reference: names the feature/fix)\n  - **1 point** — answers \"Why should I care?\" (explanation: user impact, pain removed)\n  - **1 point** — answers \"How do I use it?\" (how-to: command, flag, or link to docs)\n  - Entries scoring <2 need a rewrite. Entries scoring 3 are gold.\n- Lead with what the user can now **do** — not implementation details.\n- \"You can now...\" not \"Refactored the...\"\n- Flag and rewrite any entry that reads like a commit message.\n- Internal/contributor changes belong in a separate \"### For contributors\" subsection.\n- Auto-fix minor voice adjustments. Use AskUserQuestion if a rewrite would alter meaning.\n\n---\n\n## Step 6: Cross-Doc Consistency & Discoverability Check\n\nAfter auditing each file individually, do a cross-doc consistency pass:\n\n1. Does the README's feature/capability list match what CLAUDE.md (or project instructions) describes?\n2. Does ARCHITECTURE's component list match CONTRIBUTING's project structure description?\n3. Does CHANGELOG's latest version match the VERSION file?\n4. **Discoverability:** Is every documentation file reachable from README.md or CLAUDE.md? If\n   ARCHITECTURE.md exists but neither README nor CLAUDE.md links to it, flag it. Every doc\n   should be discoverable from one of the two entry-point files.\n5. Flag any contradictions between documents. Auto-fix clear factual inconsistencies (e.g., a\n   version mismatch). Use AskUserQuestion for narrative contradictions.\n\n---\n\n## Step 7: TODOS.md Cleanup\n\nThis is a second pass that complements `/ship`'s Step 5.5. Read `review/TODOS-format.md` (if\navailable) for the canonical TODO item format.\n\nIf TODOS.md does not exist, skip this step.\n\n1. **Completed items not yet marked:** Cross-reference the diff against open TODO items. If a\n   TODO is clearly completed by the changes in this branch, move it to the Completed section\n   with `**Completed:** vX.Y.Z.W (YYYY-MM-DD)`. Be conservative — only mark items with clear\n   evidence in the diff.\n\n2. **Items needing description updates:** If a TODO references files or components that were\n   significantly changed, its description may be stale. Use AskUserQuestion to confirm whether\n   the TODO should be updated, completed, or left as-is.\n\n3. **New deferred work:** Check the diff for `TODO`, `FIXME`, `HACK`, and `XXX` comments. For\n   each one that represents meaningful deferred work (not a trivial inline note), use\n   AskUserQuestion to ask whether it should be captured in TODOS.md.\n\n---\n\n## Step 8: VERSION Bump Question\n\n**CRITICAL — NEVER BUMP VERSION WITHOUT ASKING.**\n\n1. **If VERSION does not exist:** Skip silently.\n\n2. Check if VERSION was already modified on this branch:\n\n```bash\ngit diff <base>...HEAD -- VERSION\n```\n\n3. **If VERSION was NOT bumped:** Use AskUserQuestion:\n   - RECOMMENDATION: Choose C (Skip) because docs-only changes rarely warrant a version bump\n   - A) Bump PATCH (X.Y.Z+1) — if doc changes ship alongside code changes\n   - B) Bump MINOR (X.Y+1.0) — if this is a significant standalone release\n   - C) Skip — no version bump needed\n\n4. **If VERSION was already bumped:** Do NOT skip silently. Instead, check whether the bump\n   still covers the full scope of changes on this branch:\n\n   a. Read the CHANGELOG entry for the current VERSION. What features does it describe?\n   b. Read the full diff (`git diff <base>...HEAD --stat` and `git diff <base>...HEAD --name-only`).\n      Are there significant changes (new features, new skills, new commands, major refactors)\n      that are NOT mentioned in the CHANGELOG entry for the current version?\n   c. **If the CHANGELOG entry covers everything:** Skip — output \"VERSION: Already bumped to\n      vX.Y.Z, covers all changes.\"\n   d. **If there are significant uncovered changes:** Use AskUserQuestion explaining what the\n      current version covers vs what's new, and ask:\n      - RECOMMENDATION: Choose A because the new changes warrant their own version\n      - A) Bump to next patch (X.Y.Z+1) — give the new changes their own version\n      - B) Keep current version — add new changes to the existing CHANGELOG entry\n      - C) Skip — leave version as-is, handle later\n\n   The key insight: a VERSION bump set for \"feature A\" should not silently absorb \"feature B\"\n   if feature B is substantial enough to deserve its own version entry.\n\n---\n\n## Step 9: Commit & Output\n\n**Empty check first:** Run `git status` (never use `-uall`). If no documentation files were\nmodified by any previous step, output \"All documentation is up to date.\" and exit without\ncommitting.\n\n**Commit:**\n\n1. Stage modified documentation files by name (never `git add -A` or `git add .`).\n2. Create a single commit:\n\n```bash\ngit commit -m \"$(cat <<'EOF'\ndocs: update project documentation for vX.Y.Z.W\n\nCo-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>\nEOF\n)\"\n```\n\n3. Push to the current branch:\n\n```bash\ngit push\n```\n\n**PR/MR body update (idempotent, race-safe):**\n\n1. Read the existing PR/MR body into a PID-unique tempfile (use the platform detected in Step 0):\n\n**If GitHub:**\n```bash\ngh pr view --json body -q .body > /tmp/vibestack-pr-body-$$.md\n```\n\n**If GitLab:**\n```bash\nglab mr view -F json 2>/dev/null | python3 -c \"import sys,json; print(json.load(sys.stdin).get('description',''))\" > /tmp/vibestack-pr-body-$$.md\n```\n\n2. If the tempfile already contains a `## Documentation` section, replace that section with the\n   updated content. If it does not contain one, append a `## Documentation` section at the end.\n\n3. The Documentation section should include:\n\n   a. **Doc diff preview** — for each file modified, describe what specifically changed (e.g.,\n      \"README.md: added /document-release to skills table, updated skill count from 9 to 10\").\n\n   b. **Documentation debt** — if the coverage map from Step 1.5 found gaps, append a\n      `### Documentation Debt` subsection listing:\n      - Critical gaps: new public surface with zero documentation coverage\n      - Common gaps: features with reference-only coverage (no how-to or tutorial)\n      - Stale diagrams: architecture diagrams with entity names that drifted from the code\n      - Each item should include a one-line description of what's missing and which Diataxis\n        quadrant would fill it (e.g., \"⚠️ `/new-skill` — has reference in AGENTS.md but no\n        how-to example in README\")\n\n   If there are any documentation debt items, suggest adding a `docs-debt` label to the PR.\n\n4. Write the updated body back:\n\n**If GitHub:**\n```bash\ngh pr edit --body-file /tmp/vibestack-pr-body-$$.md\n```\n\n**If GitLab:**\nRead the contents of `/tmp/vibestack-pr-body-$$.md` using the Read tool, then pass it to `glab mr update` using a heredoc to avoid shell metacharacter issues:\n```bash\nglab mr update -d \"$(cat <<'MRBODY'\n<paste the file contents here>\nMRBODY\n)\"\n```\n\n5. Clean up the tempfile:\n\n```bash\nrm -f /tmp/vibestack-pr-body-$$.md\n```\n\n6. If `gh pr view` / `glab mr view` fails (no PR/MR exists): skip with message \"No PR/MR found — skipping body update.\"\n7. If `gh pr edit` / `glab mr update` fails: warn \"Could not update PR/MR body — documentation changes are in the\n   commit.\" and continue.\n\n**PR/MR title sync (idempotent, always-on):**\n\nPR titles must always start with `v<VERSION>` — same rule as `/ship`. If Step 8 bumped VERSION after `/ship` had already created the PR, the title is now stale. This sub-step fixes it.\n\n1. Read the current VERSION:\n\n```bash\nV=$(cat VERSION 2>/dev/null | tr -d '[:space:]')\n```\n\nIf `VERSION` does not exist or is empty, skip this sub-step entirely.\n\n2. Read the current PR/MR title:\n\n**If GitHub:**\n```bash\nCURRENT_TITLE=$(gh pr view --json title -q .title 2>/dev/null || true)\n```\n\n**If GitLab:**\n```bash\nCURRENT_TITLE=$(glab mr view -F json 2>/dev/null | jq -r .title 2>/dev/null || true)\n```\n\nIf `CURRENT_TITLE` is empty (no open PR/MR), skip with message \"No PR/MR found — skipping title sync.\"\n\n3. Compute the corrected title. Three cases:\n\n```bash\n# Case 1: title already starts with \"v<V>\" or \"v<V> \" or \"v<V>:\" — no-op\n# Case 2: title starts with a \"vX.Y.Z[.W][ :]\" prefix that doesn't match — replace\n# Case 3: title has no version prefix — prepend \"v<V> \"\nif printf '%s' \"$CURRENT_TITLE\" | grep -qE \"^v${V}([[:space:]]|:|$)\"; then\n  NEW_TITLE=\"$CURRENT_TITLE\"\nelif printf '%s' \"$CURRENT_TITLE\" | grep -qE '^v[0-9]+(\\.[0-9]+){2,3}([[:space:]]|:|$)'; then\n  NEW_TITLE=$(printf '%s' \"$CURRENT_TITLE\" | sed -E \"s/^v[0-9]+(\\.[0-9]+){2,3}/v${V}/\")\nelse\n  NEW_TITLE=\"v${V} ${CURRENT_TITLE}\"\nfi\n```\n\n4. If `NEW_TITLE` differs from `CURRENT_TITLE`, update it:\n\n**If GitHub:**\n```bash\ngh pr edit --title \"$NEW_TITLE\"\n```\n\n**If GitLab:**\n```bash\nglab mr update -t \"$NEW_TITLE\"\n```\n\n5. If the edit command fails: warn \"Could not update PR/MR title — documentation changes are still in the commit.\" and continue. Do not block on title sync failure.\n\n**Structured doc health summary (final output):**\n\nOutput a scannable summary showing every documentation file's status:\n\n```\nDocumentation health:\n  README.md       [status] ([details])\n  ARCHITECTURE.md [status] ([details])\n  CONTRIBUTING.md [status] ([details])\n  CHANGELOG.md    [status] ([details])\n  TODOS.md        [status] ([details])\n  VERSION         [status] ([details])\n```\n\nWhere status is one of:\n- Updated — with description of what changed\n- Current — no changes needed\n- Voice polished — wording adjusted\n- Not bumped — user chose to skip\n- Already bumped — version was set by /ship\n- Skipped — file does not exist\n\nIf the coverage map from Step 1.5 identified any gaps, append:\n\n```\nDocumentation coverage:\n  [entity]         [reference] [how-to] [tutorial] [explanation]\n  /new-skill       ✅          ❌       ❌         ❌\n  --new-flag       ✅          ✅       ❌         ❌\n\nDiagram drift:\n  ARCHITECTURE.md: \"FooProcessor\" renamed to \"BarProcessor\" in code — diagram may be stale\n```\n\nIf all coverage is complete and no diagrams drifted, output: \"Coverage: all shipped features have adequate documentation.\"\n\n---\n\n## Important Rules\n\n- **Read before editing.** Always read the full content of a file before modifying it.\n- **Never clobber CHANGELOG.** Polish wording only. Never delete, replace, or regenerate entries.\n- **Never bump VERSION silently.** Always ask. Even if already bumped, check whether it covers the full scope of changes.\n- **Be explicit about what changed.** Every edit gets a one-line summary.\n- **Generic heuristics, not project-specific.** The audit checks work on any repo.\n- **Discoverability matters.** Every doc file should be reachable from README or CLAUDE.md.\n- **Coverage map informs, never generates.** The Diataxis coverage map flags gaps for the PR body\n  and future work. It does NOT auto-generate missing documentation pages or sections. When gaps\n  are found, suggest `/document-generate` as the follow-up skill.\n- **Diagram drift is advisory.** Flag stale architecture diagrams in the PR body but do not\n  auto-edit ASCII art or Mermaid blocks — they require human judgment to update correctly.\n- **Voice: friendly, user-forward, not obscure.** Write like you're explaining to a smart person\n  who hasn't seen the code.","tags":["document","release","vibestack","timurgaleev","agent-skills","ai-agents","claude-code","cursor-ide","developer-tools","kiro","mcp","prompt-engineering"],"capabilities":["skill","source-timurgaleev","skill-document-release","topic-agent-skills","topic-ai-agents","topic-claude-code","topic-cursor-ide","topic-developer-tools","topic-kiro","topic-mcp","topic-prompt-engineering","topic-slash-commands"],"categories":["vibestack"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/timurgaleev/vibestack/document-release","protocol":"skill","transport":"skills-sh","auth":{"type":"none","details":{"cli":"npx skills add timurgaleev/vibestack","source_repo":"https://github.com/timurgaleev/vibestack","install_from":"skills.sh"}},"qualityScore":"0.457","qualityRationale":"deterministic score 0.46 from registry signals: · indexed on github topic:agent-skills · 15 github stars · SKILL.md body (21,836 chars)","verified":false,"liveness":"unknown","lastLivenessCheck":null,"agentReviews":{"count":0,"score_avg":null,"cost_usd_avg":null,"success_rate":null,"latency_p50_ms":null,"narrative_summary":null,"summary_updated_at":null},"enrichmentModel":"deterministic:skill-github:v1","enrichmentVersion":1,"enrichedAt":"2026-05-18T19:06:21.136Z","embedding":null,"createdAt":"2026-05-18T19:06:21.136Z","updatedAt":"2026-05-18T19:06:21.136Z","lastSeenAt":"2026-05-18T19:06:21.136Z","tsv":"'+1':1994,2154 '+1.0':2006 '-3':947,1559 '-9':2820,2822,2838,2840 '/.context':617 '/.git':608 '/.vibestack':614 '/.vibestack/bin/vibe-learnings-search':84 '/.vibestack/bin/vibe-slug':39 '/dev/null':41,43,67,82,88,122,147,159,238,256,285,300,314,2342,2677,2714,2727,2732 '/document-generate':981,3155 '/document-release':369,2405 '/learnings.jsonl':54 '/new-skill':790,1299,2490,3002 '/node_modules':611 '/projects':51 '/ship':374,1476,1786,2643,2650,2976 '/tmp/vibestack-pr-body-':2331,2353,2535,2543,2580 '/v':2843 '0':98,1558,2320,2819,2821,2837,2839 '1':205,231,278,541,547,723,1439,1560,1569,1581,1680,1808,1945,2246,2302,2667,2760 '1.5':677,2425,2988 '10':1251,1309,2415 '2':40,42,66,81,87,121,146,158,217,237,249,255,284,289,299,313,569,603,771,946,986,1350,1450,1600,1694,1859,1953,2260,2341,2355,2676,2695,2713,2726,2731,2774,2823,2841 '3':303,592,862,878,1263,1463,1606,1706,1896,1968,2286,2384,2751,2788,2824,2842 '4':619,894,1336,1497,1716,2020,2520,2853 '4.7':2283 '5':80,86,658,1393,1512,1754,2572,2881 '5.5':1789 '6':1661,2582 '7':1776,2603 '8':1935,2646 '9':955,1307,2212,2413 'abort':557 'absorb':2196 'accur':398,1052,1071,1112,1165 'across':667 'actual':1157,1479 'ad':471,1220,1258,1298,2404,2511 'adapt':1008 'add':452,2166,2255,2259 'adequ':3034 'adjust':490,1651,2963 'advisori':3165 'agent':1421 'agents.md':791,814,2494 'alongsid':1999 'alreadi':446,1448,1958,2024,2109,2359,2652,2762,2970,3072 'alter':1658 'alway':521,532,2631,2636,3041,3068 'always-on':2630 'ambigu':1256 'analysi':546,683 'analyz':663 'answer':1391,1562,1571,1583 'anyth':1136,1199 'api':643,745,809,817 'append':2377,2428,2992 'appli':714,1264,1385 'approv':1386 'architectur':31,858,895,1082,1319,1696,2459,3168 'architecture.md':900,1053,1728,2930,3008 'art':3181 'as-i':1382,1893,2178 'ascii':905,1055,3180 'ask':422,520,1238,1337,1926,1944,2136,3069 'askuserquest':523,1352,1506,1653,1771,1881,1924,1975,2124 'assess':778 'audienc':1187 'audit':717,950,991,1669,3103 'auth':144,156 'author':2279 'auto':966,1211,1266,1312,1647,1761,3143,3178 'auto-edit':3177 'auto-fix':1646,1760 'auto-gener':965,3142 'auto-upd':1210,1265,1311 'autom':414 'avail':142,1793 'avoid':2560 'b':2002,2059,2162,2198,2201,2416 'back':321,2525 'barprocessor':3012 'base':102,197,327,355,555,562 'baserefnam':210,212 'bash':37,114,575,580,585,600,1963,2265,2292,2323,2335,2528,2564,2577,2672,2703,2718,2758,2865,2874 'behavior':639 'belong':1639 'blast':681 'blast-radius':680 'block':909,2904,3184 'bodi':893,962,2296,2307,2328,2330,2524,2533,2601,2617,3135,3173 'body-fil':2532 'branch':103,178,187,198,243,261,328,348,356,551,556,563,568,1357,1534,1544,1834,1962,2044,2291 'brand':1105 'brief':661 'build':18,653,689 'build/test':1167 'bump':442,447,517,1937,1941,1973,1989,1991,2003,2018,2025,2034,2110,2149,2188,2647,2965,2971,3065,3073 'c':1379,1978,2014,2099,2174,2344 'canon':1796 'capabl':637,754,1028 'captur':1931 'care':1575 'case':2757,2759,2773,2787 'cat':2269,2569,2674 'categori':624 'chang':35,434,526,574,622,638,645,666,727,1039,1088,1241,1246,1291,1340,1387,1564,1638,1831,1874,1984,1997,2001,2041,2078,2115,2122,2143,2158,2168,2401,2619,2894,2955,2958,3082,3087 'changelog':485,509,1394,1400,1413,1424,1467,1528,1539,1556,1708,2048,2093,2102,2172,3054 'changelog.md':531,1443,1526,2936 'check':140,548,1195,1667,1900,1954,2031,2216,3074,3104 'choos':1370,1977,2138 'chose':2967 'ci':657 'class':739 'classifi':620,1206 'claud':2281 'claude.md':1147,1689,1726,1734,3120 'clean':2573 'cleanup':1778 'clear':467,1077,1215,1270,1763,1827,1854 'cli':141,275,741 'clobber':1399,3053 'co':2278 'co-authored-bi':2277 'code':375,939,1063,2000,2468,3014,3213 'command':174,276,344,633,651,740,761,1111,1162,1592,2084,2885 'comment':1909 'commit':376,669,1482,1635,2213,2244,2245,2264,2267,2623,2899 'common':886,2443 'complement':1785 'complet':493,1809,1828,1839,1842,1890,3023 'compon':1058,1698,1870 'comput':2752 'config':644,743 'configur':769 'confirm':1883 'confus':1141 'conserv':1073,1849 'consist':1036,1665,1678 'contain':126,134,904,2360,2375 'content':516,1414,2370,2541,3045 'context':571,1354 'continu':2625,2901 'contradict':456,1078,1198,1757,1774 'contribut':833,1701 'contributing.md':1090,2933 'contributor':1092,1107,1146,1644 'correct':466,1214,2754,3191 'could':2613,2888 'count':61,73,78,477,1232,1305,2411 'cover':152,164,2036,2104,2113,2130,3077 'coverag':21,678,691,780,781,865,870,884,941,2421,2442,2450,2984,2994,3021,3029,3121,3128 'creat':2261,2653 'creation':343 'critic':872,1397,1939,2434 'cross':14,454,483,495,921,998,1189,1663,1676,1815 'cross-doc':453,494,1662,1675 'cross-refer':13,482,920,997,1188,1814 'current':550,1062,1123,1134,2052,2097,2128,2164,2290,2670,2698,2704,2719,2735,2799,2809,2814,2831,2850,2859,2956 'd':69,2116,2568,2679 'data':915 'date':401,2240 'dd':1847 'debt':957,2418,2431,2508,2515 'decis':428,443,859,1066,1368 'default':186,260 'defaultbranchref':222 'defaultbranchref.name':224 'defer':1898,1916 'definit':800 'delet':648,1458,3059 'demo':1042 'describ':1024,1084,1288,1693,2058,2398 'descript':803,1045,1059,1120,1128,1326,1705,1862,1876,2352,2477,2952 'deserv':2206 'design':860,1065,1322 'detail':1619,2929,2932,2935,2938,2941,2944 'detect':30,99,105,326,347,898,2317 'determin':176,1183 'dev':1129 'diagram':32,896,906,919,928,1056,2458,2460,3006,3015,3026,3162,3169 'diataxi':20,705,1552,2484,3127 'diff':17,334,470,545,577,587,730,733,925,1003,1032,1081,1193,1219,1480,1818,1858,1902,1965,2063,2065,2070,2392 'differ':2857 'direct':419,1273 'discov':593 'discover':1666,1717,1744,3109 'doc':12,433,455,496,818,903,1083,1359,1597,1664,1677,1741,1982,1996,2271,2391,2514,2910,3112 'docs-debt':2513 'docs-on':1981 'document':2,7,358,363,392,595,627,672,687,699,779,956,969,990,994,1334,1367,1720,1759,2226,2236,2249,2274,2362,2379,2386,2417,2430,2441,2507,2618,2893,2921,2925,2993,3035,3146 'document-releas':1 'doesn':2783 'drift':33,897,2465,3007,3027,3163 'e':2834 'e.g':499,1766,2402,2489 'echo':70,92 'edit':534,1276,1514,2531,2607,2868,2884,3040,3089,3179 'elif':2811 'els':91,2845 'empti':2215,2688,2738 'end':2383 'endpoint':746 'enough':2204 'ensur':390 'enterpris':154 'entir':1259,1330,1442,2694 'entiti':783,911,929,2462,2995 'entri':74,510,1401,1425,1456,1462,1468,1472,1500,1547,1557,1598,1604,1630,1751,2049,2094,2103,2173,2210,3063 'entry-point':1750 'environ':764 'eof':2270,2285 'equival':1175 'etc':1133 'eval':38 'even':3070 'everi':331,391,1719,1740,2920,3088,3111 'everyth':2105 'evid':1855 'exact':536,1517 'exampl':832,1041,2500 'exist':191,378,382,1423,1455,1729,1804,1950,2171,2305,2593,2685,2981 'exit':2242 'explain':2125,3203 'explan':712,789,849,1069,1576,3001 'explicit':3084 'export':737 'extract':240,258,724,910 'f':56,235,253,2339,2579,2724 'face':753 'factual':417,461,465,497,802,1213,1271,1764 'fail':277,292,306,319,1139,2590,2611,2886 'failur':2908 'fall':320 'fallback':270 'featur':567,629,762,766,1026,2055,2080,2191,2197,2200,2445,3032 'feature/capability':1685 'feature/fix':1568 'feed':943 'fetch':338 'fi':90,96,2852 'field':244,262 'file':47,58,65,393,596,631,649,665,673,688,989,995,1158,1179,1182,1201,1205,1228,1280,1360,1671,1715,1721,1753,1868,2227,2250,2396,2534,2922,2978,3048,3113 'fill':983,2487 'final':2913 'find':601 'first':104,1144,1444,2217 'first-tim':1143 'fix':480,952,1230,1510,1648,1762,2665 'fixm':1905 'flag':742,767,794,874,926,971,1135,1593,1626,1738,1755,3005,3130,3166 'flight':544 'flow':916 'follow':3159 'follow-up':3158 'fooprocessor':797,3009 'format':1799 'forward':409,3196 'found':670,978,2426,2599,2747,3153 'framework':706 'frequent':1089 'friend':406,3193 'full':2038,2062,3044,3079 'function':647,738 'futur':3137 'gap':873,887,972,976,2427,2435,2444,2991,3131,3151 'gather':570 'generat':721,967,3125,3144 'generic':1006,3096 'get':118,846,2351,3090 'get-url':117 'gh':143,206,218,2324,2529,2584,2605,2706,2866 'git':107,115,172,268,279,293,307,333,335,337,339,576,581,586,732,1964,2064,2069,2219,2254,2258,2266,2293 'git-nat':171,267 'github':130,151,153,204,2322,2527,2702,2864 'github.com':127 'gitlab':135,138,163,230,2334,2538,2717,2873 'give':2155 'glab':155,232,250,2336,2553,2565,2587,2608,2721,2875 'gold':1608 'grep':2801,2816 'gt':79 'guid':848 'hack':1906 'handl':2181 'hasn':3209 'head':578,583,588,734,1966,2066,2071 'health':2911,2926 'heredoc':2558 'heurist':1007,3097 'histori':1483,1496 'home':49 'home/.vibestack':50 'host':108,167 'how-to':708,785,819,1589,2452,2497,2997 'human':3187 'idempot':2298,2629 'identifi':1347,2989 'immedi':1388 'impact':1578 'implement':1618 'import':2345,3036 'incid':1417 'includ':1378,2389,2472 'incomplet':1504 'inconsist':498,1765 'individu':1672 'inform':3123 'infrastructur':652,656,1125 'inlin':1921 'insight':2185 'inspir':702 'install/setup':1034 'instead':2030 'instruct':352,1035,1099,1149,1168,1692 'internal/contributor':1637 'introduct':1315 'issu':2563 'item':450,472,777,867,879,1222,1798,1810,1822,1852,1860,2470,2509 'job':389 'jq':2728 'json':209,221,236,254,2327,2340,2347,2709,2725 'json.load':2349 'judgment':3188 'k':671 'keep':2163 'key':2184 'knob':770 'l':63 'label':2516 'larg':439,1247 'later':2182 'latest':1710 'lead':1609 'learn':46,57,60,64,71,72,77,93,837,1132 'learning-ori':836 'leav':1381,2176 'left':1892 'len':718 'like':1633,3200 'limit':85 'line':1252,1286,1375,2476,3094 'link':1595,1735 'list':816,1110,1161,1686,1699,2433 'load':75 'log':336,582 'look':1501 'm':668,2268 'main':302,323 'major':2085 'make':415,1268 'map':22,679,692,782,866,942,2422,2985,3122,3129 'mark':491,1813,1851 'master':316 'match':27,539,1060,1121,1155,1169,1520,1687,1700,1712,2785 'matter':3110 'maxdepth':602 'may':1877,3016 'md':605,1178,2332,2354,2536,2544,2581 'mean':1659 'meaning':1915 'mention':2090 'merg':340,387 'mermaid':908,3183 'messag':1636,2596,2744 'metacharact':2562 'minor':488,1649,2004 'mismatch':502,1769 'miss':968,2481,3145 'mm':1846 'model':1245,1325 'modifi':640,1281,1452,1531,1541,1959,2229,2248,2397,3050 'modul':760,913 'most':413 'move':936,1835 'mr':233,2337,2554,2566,2588,2609,2722,2876 'mrbodi':2570,2571 'must':1434,2635 'n':664 'name':329,349,590,604,912,1356,1566,2073,2252,2463 'name-on':589,2072 'narrat':435,459,1240,1773 'nativ':173,269 'need':1207,1601,1861,2019,2959 'neither':168,1731 'never':462,503,1310,1398,1435,1457,1464,1521,1940,2221,2253,3052,3058,3064,3124 'new':448,628,630,632,634,636,736,747,763,793,1091,1106,1260,1897,2079,2081,2083,2134,2142,2157,2167,2436,2807,2827,2846,2855,2870,2879,3004 'new-flag':792,3003 'new/changed':774 'newcom':845 'next':2151 'no-op':2770 'none':94 'noreply@anthropic.com':2284 'note':888,1922 'number':479,501 'obscur':3198 'obvious':416 'occur':1418 'old':537,1518 'one':1254,1285,1374,1746,1912,2376,2475,2948,3093 'one-lin':1284,1373,2474,3092 'onelin':584 'op':2772 'open':1820,2740 'oper':1131 'option':744,811,1377 'opus':2282 'orient':824,838,852 'origin':120 'origin/main':298 'origin/master':312 'otherwis':139 'output':659,863,1282,2107,2214,2234,2914,2915,3028 'overwrit':505,1525 'package.json':1173 'page':970,3147 'pain':1579 'pars':296,310 'pass':1679,1783,2550 'patch':1992,2152 'path':476,607,610,613,616,1229 'per':988 'per-fil':987 'person':3207 'philosophi':436,1320 'pid':2311 'pid-uniqu':2310 'platform':100,109,128,136,149,161,273,2316 'point':1561,1570,1582,1752 'polish':34,487,511,1396,1404,1492,2961,3055 'posit':1318 'post':5,361 'post-ship':4,360 'pr':207,377,386,892,961,2325,2519,2530,2585,2606,2633,2655,2707,2867,3134,3172 'pr/mr':180,190,342,2295,2306,2592,2598,2616,2626,2699,2741,2746,2891 'pre':543 'pre-flight':542 'preambl':36 'prefix':2781,2793 'prepend':2794 'preserv':514,1430 'preview':2393 'previous':2232 'print':324,2348 'printf':2797,2812,2829 'project':11,396,1011,1148,1152,1235,1317,1355,1691,1703,2273,3100 'project-specif':3099 'prose':1493 'public':725,758,775,2437 'purpos':1185 'push':2287,2294 'python3':2343 'q':211,223,2329,2711 'qe':2802,2817 'quadrant':2485 'question':1345,1938 'r':2729 'race':2300 'race-saf':2299 'radius':682 'rare':1985 'rational':861,1323 're':559,1013,1363,3202 'reachabl':1722,3116 'read':9,992,1180,1440,1632,1790,2046,2060,2303,2539,2547,2668,2696,3038,3042 'readm':795,796,812,831,1314,1683,1732,2502,3118 'readme.md':1021,1295,1297,1724,2403,2927 'readme/architecture/contributing/claude.md':25 'real':1416 'reason':1376 'recommend':1369,1976,2137 'ref':282 'refactor':1624,2086 'refer':15,484,711,784,801,882,922,999,1190,1565,1816,1867,2448,2492,2996 'reference-on':881,2447 'reference/how-to/tutorial/explanation':23 'refs/remotes/origin':288 'refs/remotes/origin/head':283 'regener':508,1412,1465,3062 'releas':3,359,2013 'relev':625,1257 'remot':112,116 'remov':438,646,650,757,934,1243,1329,1580 'renam':755,932,3010 'reorder':1459 'replac':506,1410,1422,1461,2364,2786,3060 'repo':184,219,251,599,3108 'repres':1914 'requir':3186 'result':194 'rev':295,309 'rev-pars':294,308 'review':675,1364,1545 'review/todos-format.md':1791 'rewrit':440,1248,1409,1495,1603,1628,1656 'riski':425,1343 'risky/questionable':432,1339 'rm':2578 'rubric':1553 'rule':1438,2641,3037 'run':367,372,564,980,2218 'safe':2301 'say':353,1202 'scan':731 'scannabl':2917 'scope':2039,3080 'score':1554,1599,1605 'scratch':1470 'script':1164 'second':1782 'section':1154,1242,1255,1261,1331,1840,2363,2366,2380,2387,3149 'secur':437,1244,1324 'sed':286,2833 'seen':3211 'self':166 'self-host':165 'sell':1550 'separ':1642 'servic':641,914 'set':2189,2974 'setup':1098,1130 'shell':2561 'ship':6,29,362,695,1998,3031 'show':2919 'signific':975,1873,2011,2077,2120 'silent':1509,1952,2029,2195,3067 'singl':2263 'skill':635,748,815,1301,1304,1433,2082,2407,2410,3161 'skill-document-release' 'skip':1380,1535,1805,1951,1979,2015,2028,2106,2175,2594,2600,2689,2742,2748,2969,2977 'slug':44,52 'smart':3206 'smoke':1093 'sort':618 'sourc':1487 'source-timurgaleev' 'space':2680,2805,2825 'specif':1020,1290,1366,2400,3101 'split':933 'stage':2247 'stale':481,1879,2457,2660,3018,3167 'standalon':2012 'start':847,2637,2763,2776 'stat':579,2067 'status':145,157,2220,2924,2928,2931,2934,2937,2940,2943,2946 'step':97,202,540,676,840,842,877,945,954,985,1050,1115,1262,1335,1349,1392,1403,1537,1660,1775,1788,1807,1934,2211,2233,2319,2424,2645,2664,2693,2987 'step-by-step':839 'still':1046,1051,1070,2035,2896 'stop':420,430,463 'string':538,1519 'structur':1153,1236,1704,2909 'sub':2663,2692 'sub-step':2662,2691 'subject':427 'subsect':1645,2432 'subsequ':201,332 'substanti':2203 'substitut':345 'succeed':148,160,214,226,246,264,1116 'suggest':979,2510,3154 'summari':662,958,1287,2912,2918,3095 'surfac':726,759,776,2438 'symbol':281 'symbolic-ref':280 'sync':2628,2750,2907 'sys':2346 'sys.stdin':2350 'system':654 'tabl':813,1225,1302,2408 'tables/lists':474 'target':181,242 'task':823 'task-ori':822 'tempfil':2313,2358,2576 'test':655,1094,1118,1124,1551 'thing':1076,1085 'three':2756 'tier':1119 'time':1145 'titl':2627,2634,2657,2700,2705,2710,2712,2720,2730,2736,2749,2755,2761,2775,2789,2800,2808,2810,2815,2828,2832,2847,2851,2856,2860,2869,2871,2880,2892,2906 'todo':449,492,1797,1821,1825,1866,1886,1904 'todos.md':1777,1801,1933,2939 'tool':529,722,1277,1515,2548 'topic-agent-skills' 'topic-ai-agents' 'topic-claude-code' 'topic-cursor-ide' 'topic-developer-tools' 'topic-kiro' 'topic-mcp' 'topic-prompt-engineering' 'topic-slash-commands' 'touch':685 'tr':68,2678 'tree':1159,1237 'trivial':1920 'troubleshoot':1049 'true':89,2715,2733 'truth':1489 'tutori':707,788,835,2456,3000 'two':1749 'uall':2223 'uncov':2121 'understand':851,1445 'understanding-ori':850 'uniqu':2312 'unknown':45,53,169,272 'unlik':1086 'updat':8,24,364,418,475,642,1075,1208,1212,1226,1233,1267,1272,1294,1303,1313,1346,1863,1889,2272,2297,2369,2409,2523,2555,2567,2602,2610,2615,2861,2877,2890,2950,3190 'url':113,119,125,133 'usag':1044 'use':170,192,215,227,247,265,301,315,522,527,533,798,1004,1274,1351,1505,1513,1522,1587,1652,1770,1880,1923,1974,2123,2222,2314,2545,2556 'user':408,752,1239,1577,1613,2966,3195 'user-fac':751 'user-forward':407,3194 'v':2639,2673,2765,2767,2769,2795,2803,2804,2818,2836,2844,2848,2849 'valid':1047 'variabl':765 'verifi':297,311 'version':441,478,500,518,525,1711,1714,1768,1936,1942,1947,1956,1967,1970,1988,2017,2022,2053,2098,2108,2129,2147,2161,2165,2177,2187,2209,2648,2671,2675,2682,2792,2942,2972,3066 'vibestack':48,1019 'vibestack-specif':1018 'view':208,220,234,252,2326,2338,2586,2589,2708,2723 'visibl':1029 'voic':410,486,1395,1405,1549,1650,2960,3192 'vs':696,2131 'vx.y.z':2112,2779 'vx.y.z.w':1843,2276 'w':2780 'walk':1095 'walkthrough':843 'warn':2612,2887 'warrant':1216,1986,2144 'way':857 'wc':62 'whatev':1010 'wherev':350 'whether':1884,1927,2032,3075 'within':1454 'without':519,1943,2243 'word':489,512,1453,2962,3056 'work':855,1899,1917,3105,3138 'workflow':370,749,834,1127 'would':1113,1138,1657,2486 'write':528,1523,2521,3199 'written':403,1474 'wrong':1502 'x':828,1371 'x.y':2005 'x.y.z':1993,2153 'xxx':1908 'yet':95,1812 'yyyi':1845 'yyyy-mm-dd':1844 'zero':869,2440","prices":[{"id":"22c338da-d2e9-4a2b-9aaa-b07613b24e4b","listingId":"9887a084-38d5-46c5-9982-cf9dd458f953","amountUsd":"0","unit":"free","nativeCurrency":null,"nativeAmount":null,"chain":null,"payTo":null,"paymentMethod":"skill-free","isPrimary":true,"details":{"org":"timurgaleev","category":"vibestack","install_from":"skills.sh"},"createdAt":"2026-05-18T19:06:21.136Z"}],"sources":[{"listingId":"9887a084-38d5-46c5-9982-cf9dd458f953","source":"github","sourceId":"timurgaleev/vibestack/document-release","sourceUrl":"https://github.com/timurgaleev/vibestack/tree/main/skills/document-release","isPrimary":false,"firstSeenAt":"2026-05-18T19:06:21.136Z","lastSeenAt":"2026-05-18T19:06:21.136Z"}],"details":{"listingId":"9887a084-38d5-46c5-9982-cf9dd458f953","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"timurgaleev","slug":"document-release","github":{"repo":"timurgaleev/vibestack","stars":15,"topics":["agent-skills","ai-agents","claude-code","cursor-ide","developer-tools","kiro","mcp","prompt-engineering","slash-commands"],"license":"mit","html_url":"https://github.com/timurgaleev/vibestack","pushed_at":"2026-05-18T18:19:05Z","description":"vibestack is a portable skill pack for AI coding agents. Slash commands like /office-hours, /ship, /investigate, /tdd, /review install once and work across every agent that supports the Agent Skills open standard — Claude Code, Cursor, Kiro, and a growing list of others. ","skill_md_sha":"d89b63101ed88b05436659ff9e0cd4fd03125ec6","skill_md_path":"skills/document-release/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/timurgaleev/vibestack/tree/main/skills/document-release"},"layout":"multi","source":"github","category":"vibestack","frontmatter":{"name":"document-release","description":"Post-ship documentation update. Reads all project docs, cross-references the\ndiff, builds a Diataxis coverage map (reference/how-to/tutorial/explanation),\nupdates README/ARCHITECTURE/CONTRIBUTING/CLAUDE.md to match what shipped,\ndetects architecture diagram drift, polishes CHANGELOG voice with a sell-test\nrubric, cleans up TODOS, and optionally bumps VERSION. Surfaces documentation\ndebt in the PR body. Use when asked to \"update the docs\", \"sync documentation\",\nor \"post-ship docs\". Proactively suggest after a PR is merged or code is shipped."},"skills_sh_url":"https://skills.sh/timurgaleev/vibestack/document-release"},"updatedAt":"2026-05-18T19:06:21.136Z"}}