Skip to content

Latest commit

 

History

History
94 lines (72 loc) · 3.59 KB

File metadata and controls

94 lines (72 loc) · 3.59 KB

Command reference

The runtime lives in scripts/okf_loom/. Run it from a checkout with the checked-in scripts/okf-loom helper; do not assume an installed package or console script.

Helper

From a parent workspace:

okf-loom/scripts/okf-loom validate okf-loom/docs-bundle --strict

From inside okf-loom/:

scripts/okf-loom validate docs-bundle --strict

Common commands

scripts/okf-loom --help
scripts/okf-loom validate docs-bundle --strict
scripts/okf-loom info docs-bundle
scripts/okf-loom graph-quality docs-bundle
scripts/okf-loom search docs-bundle "current spec" --mode lexical
scripts/okf-loom serve docs-bundle --no-open
scripts/okf-loom serve docs-bundle --no-open --tunnel   # + public https URL (needs cloudflared)
scripts/okf-loom build docs-bundle --target static --out /tmp/okf-docs-site

Sharing a live studio

serve --tunnel starts a Cloudflare quick tunnel beside the loopback server, prints the public https://…trycloudflare.com URL, and adds the tunnel hostname to the studio's cross-origin allowlist at runtime, so comments/edits work through the link. The server itself stays bound to 127.0.0.1; the tunnel dies with the process. Anyone with the link can READ the bundle — say so when you hand the URL over. Requires cloudflared on PATH; without it the command warns and serves local-only.

Forgot --tunnel? Attach one to the RUNNING session — no restart, no lost session token or undo history:

scripts/okf-loom tunnel docs-bundle           # prints the public URL
scripts/okf-loom tunnel docs-bundle --status  # current URL (or none)
scripts/okf-loom tunnel docs-bundle --stop    # detach, restore local-only allowlist

Partial body updates

Change one block of a concept without touching the rest (no whole-body write-concept --force, no staging copies):

# Replace ONE section (subsections included); fail-closed on missing/ambiguous headings.
scripts/okf-loom update-section --bundle docs-bundle --id reference/cli --heading "## Examples" --body-file /tmp/frag.md
# Append to a section instead of replacing; create it if absent.
scripts/okf-loom update-section --bundle docs-bundle --id reference/cli --heading "Notes" --body "extra line" --append --create-if-missing
# Exact textual patch; must match exactly once (or pass --all).
scripts/okf-loom replace-text --bundle docs-bundle --id reference/cli --old "old exact text" --new "new exact text"

Full surface

  • validate, info, graph, graph-quality, search
  • discover, plan, repair, update
  • write-concept, set-frontmatter, link-add, entity-add, update-section, replace-text
  • index, log, init, bootstrap, import
  • serve, tunnel, wait, watch, token, comment-claim, comment-reply, comment-resolve, comment-list, presence
  • render, build, capabilities, upgrade

Most read/report commands accept --format json. wait prints one JSON work item (with a queue field showing other still-open comments). watch --emit jsonl tails change events. write-concept fills resource/timestamp on create so new concepts pass --strict (opt out with --no-defaults).

Dependencies

Runtime requires Python 3.11+. PyYAML is preferred when present, but normal docs validation does not require a primary install step: the skill ships a conservative built-in YAML fallback that fails closed on unsupported advanced YAML.

Test/proof environments can add tools explicitly, without installing this repo as a package:

python -m pip install pytest playwright
python -m playwright install chromium
PYTHONPATH=scripts pytest