Canonical command map for Loop workflows.
All commands are intended to run from repository root unless stated otherwise.
bd ready
bd show <issue-id>
bd update <issue-id> --status in_progress
bd close <issue-id> --reason "implemented + verified"
bd syncUse for intake, claiming work, and closure tracking.
make check
make coverage
make rustdoc-check
make py-integration-gate
make ignored-repl-gate
make proptest-gate
make claude-adapter-gate
make docs-checkUse for local correctness, integration assurance, and docs style validation.
./scripts/dp review --json
./scripts/dp verify --json
./scripts/dp enforce pre-commit --policy dp-policy.json --json
./scripts/dp enforce pre-push --policy dp-policy.json --jsonUse for machine-readable policy and release readiness checks.
cd /Users/rand/src/loop/rlm-core
cargo check --quiet
cargo test --quiet
RUSTDOCFLAGS="-D warnings" cargo doc --no-depsUse for direct crate iteration and rustdoc validation.
cd /Users/rand/src/loop/rlm-core/python
uv sync
uv run maturin develop --release
uv run pytest -qUse for Python binding development and compatibility checks.
cd /Users/rand/src/loop/rlm-core
cargo build --release --lib --no-default-features --features tokio-runtime
cd /Users/rand/src/loop/rlm-core/go/rlmcore
go test ./...Use for Go integration and FFI-backed verification.
rustc --version
python3 --version
go version
uv --version
git rev-parse HEAD
git status --short --branch
ps -axo pid=,command=,rss= -ww | rg -n "rlm_repl|lake env repl|\\brepl\\b" -SUse for deterministic environment capture during incident triage.
make docs-checkCurrent guardrails:
- No em dash punctuation in operational docs.
- Scope excludes historical evidence artifacts.
git status
git pull --rebase
bd sync
git add ...
git commit -m "type: summary"
git push
git statusUse to avoid stranded local work at the end of a session.