بنقرة واحدة
regen-docs
Regenerate the mkdocs-material site, validate cross-references, surface stale or broken links.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Regenerate the mkdocs-material site, validate cross-references, surface stale or broken links.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
| name | regen-docs |
| description | Regenerate the mkdocs-material site, validate cross-references, surface stale or broken links. |
/regen-docs [--strict] [--open]
mkdocs --version and confirm the mkdocs-material theme is on the venv.pip install mkdocs mkdocs-material).mkdocs build --strict from the repo root. The site config is mkdocs.yml;
output lands under build-docs/site/.
--strict fails the build on any warning (broken link, missing nav target, etc.).INFO-level "not found / unrecognized" messages for
ADR / research / source-tree refs that don't resolve. Capture
/tmp/mkdocs_build.log and grep for INFO lines.../../core/...) — inherently
unresolvable from the mkdocs site; expected. (b) doc-to-doc refs —
these are the actionable drift, mostly ADR slug renames.docs/adr/NNNN-*.md has an index row in docs/adr/README.md.(adr/NNNN-slug.md) ref in docs/state.md / docs/rebase-notes.md
points at the actual on-disk filename for that NNNN.git diff --no-index on
build-docs/site/); flag suspicious deletions.--open: open build-docs/site/index.html in the user's browser.--strict fails the skill on any mkdocs warning.Doxyfile.in at core/doc/Doxyfile.in survives but
is not wired into a build target.INFO messages are not promoted to warnings under --strict
by default. To make doc-to-doc drift fatal, set
validation.unrecognized_links: warn in mkdocs.yml.Reconcile fork master with Netflix/vmaf master. Detects the fork's port-only topology (no shared merge-base) and emits a coverage report; falls back to merge-based sync when the histories are actually connected.
Scaffold a new feature extractor (e.g. a novel metric) with C source+header, registry entry, doc stub, and a smoke test. Does not produce a SIMD or GPU path — those come via /add-simd-path and /add-gpu-backend.
Scaffold a complete new GPU backend (hip, rocm, metal, opencl, etc.) with runtime, feature kernel stubs, public header, Meson options, CI workflow, doc stub, and smoke test. Flagship scaffolding skill. Established precedents on the fork — CUDA (legacy), SYCL (legacy), Vulkan (T5-1, ADR-0175 scaffold + ADR-0186 image-import).
Scaffold a new SIMD implementation for an existing feature. Creates intrinsics source + header + a bit-exact-vs-scalar comparison test; wires into runtime dispatch. Supports kernel-spec flags that pull recurring patterns from simd_dx.h.
Scaffold a new Kubernetes CRD + kubebuilder controller + RBAC + helm chart entry for the vmafx-operator. Follows the VmafxJob / VmafxNode / VmafxModelTraining precedent in cmd/vmafx-operator/ (ADR-0714, ADR-0709 parent).
Scaffold a new VMAFX MCP tool handler with byte-compatible Go (cmd/vmafx-mcp) and Python (mcp-server/vmaf-mcp) implementations, registration, smoke tests, and docs/mcp/ page. Companion to /add-gpu-backend and /add-feature-extractor for the MCP surface.