docs-sync

โดย redis

วิเคราะห์การใช้งานและการกำหนดค่าในสาขา master เพื่อค้นหาเอกสารที่ขาดหาย ไม่ถูกต้อง หรือล้าสมัยใน docs/, README.md และ README ประจำแพ็กเกจ ใช้…

npx skills add https://github.com/redis/node-redis --skill docs-sync

Docs Sync

Overview

Identify doc coverage gaps and inaccuracies by comparing master branch features and configuration options against the current docs, then propose targeted improvements.

Workflow

  1. Confirm scope and base branch

    • Identify the current branch and default branch (master).
    • Prefer analyzing the current branch to keep work aligned with in-flight changes.
    • If the current branch is not master, analyze only the diff vs master to scope doc updates.
    • Avoid switching branches if it would disrupt local changes; use git show master:<path> or git worktree add when needed.
  2. Build a feature inventory from the selected scope

    • If on master: inventory the full surface area and review docs comprehensively.
    • If not on master: inventory only changes vs master (feature additions/changes/removals).
    • Focus on user-facing behavior: public exports, client/cluster/sentinel/pool config options, new or changed commands, connection-string options, default values, and documented runtime behaviors.
    • Capture evidence for each item (file path + symbol/setting).
    • Use targeted search to find option types and feature flags (for example: rg "Options", rg "interface .*Options", rg "export" under packages/*/lib).
    • For Redis command behavior or server-side semantics, treat the source code (parseCommand/transformReply in packages/*/lib/commands) as the source of truth; consult redis.io/commands only to confirm server semantics when discrepancies appear.
  3. Doc-first pass: review existing pages

    • Walk each relevant page under docs/, the top-level README.md, and each packages/*/README.md.
    • Identify missing mentions of important, supported options (opt-in flags, config), customization points, or new features from packages/.
    • Propose additions where users would reasonably expect to find them on that page.
  4. Code-first pass: map features to docs

    • Review the current docs layout under docs/ (e.g. client-configuration.md, clustering.md, sentinel.md, pool.md, RESP.md, transactions.md, programmability.md, pub-sub.md, scan-iterators.md, command-options.md).
    • Determine the best page/section for each feature based on existing patterns and package boundaries.
    • Identify features that lack any doc page or have a page but no corresponding content.
    • Note when a structural adjustment would improve discoverability.
  5. Detect gaps and inaccuracies

    • Missing: features/configs present in master but absent in docs.
    • Incorrect/outdated: names, defaults, or behaviors that diverge from master.
    • Structural issues (optional): pages overloaded, missing overviews, or mis-grouped topics.
  6. Produce a Docs Sync Report and ask for approval

    • Provide a clear report with evidence, suggested doc locations, and proposed edits.
    • Ask the user whether to proceed with doc updates.
  7. If approved, apply changes

    • Edit docs under docs/, README.md, and the relevant packages/*/README.md.
    • Keep changes aligned with the existing docs style and navigation.
    • Place any runnable code snippets under examples/ or doctests/, mirroring existing patterns.
    • Verify any snippet you add still compiles with npm run build and fix issues before handoff.

Output format

Use this template when reporting findings:

Docs Sync Report

  • Doc-first findings
    • Page + missing content → evidence + suggested insertion point
  • Code-first gaps
    • Feature + evidence → suggested doc page/section (or missing page)
  • Incorrect or outdated docs
    • Doc file + issue + correct info + evidence
  • Structural suggestions (optional)
    • Proposed change + rationale
  • Proposed edits
    • Doc file → concise change summary
  • Questions for the user

References

  • references/doc-coverage-checklist.md

Skills เพิ่มเติมจาก redis

implement-command
redis
Add a new Redis command (or command variant) to node-redis end-to-end — the `<NAME>.ts` Command file, its registration with JSDoc in the package…
official
maintainer-review
redis
ตรวจสอบ URL ของ GitHub issue หรือ pull request ในฐานะผู้ดูแล node-redis พร้อมการประเมินแบบเป็นขั้นตอนว่าเนื้อหาที่อ้างถึงเป็นจริง มีความสำคัญในทางปฏิบัติ หรือมีอยู่แล้ว…
official
pr-draft-summary
redis
สร้างบล็อกสรุปที่พร้อมสำหรับ PR, คำแนะนำสาขา, ชื่อเรื่อง, และคำอธิบายร่างสำหรับ node-redis ต้องใช้ก่อนการตอบกลับสุดท้ายเมื่อใดก็ตามที่...
official
runtime-behavior-probe
redis
วางแผนและดำเนินการตรวจสอบพฤติกรรมขณะรันไทม์ด้วยสคริปต์ตรวจสอบ TypeScript ชั่วคราว เมทริกซ์การตรวจสอบ การควบคุมสถานะ และรายงานที่เน้นผลลัพธ์เป็นหลัก ใช้…
official
backend
redis
รูปแบบการพัฒนา backend ด้วย NestJS สำหรับ RedisInsight API: โครงสร้างโมดูล, services, controllers, DTOs, การฉีด dependency, และการจัดการข้อผิดพลาด ใช้เมื่อ...
official
branches
redis
ใช้ lowercase kebab-case พร้อมคำนำหน้าประเภทและรหัส issue/ticket ชื่อ branches ต้องตรงกับกฎของ GitHub Actions workflow (ดู .github/workflows/enforce-branch-name-rules.yml)
official
code-quality
redis
Code-quality standards for RedisInsight: TypeScript strictness, naming conventions (camelCase, PascalCase, UPPER_SNAKE_CASE), linting rules, no `any` without…
official
commits
redis
ปฏิบัติตามรูปแบบ Conventional Commits:
official