x07-lint-repair
x07-lint-repair
Use this skill when an X07 file fails linting and the agent needs a repeatable converge loop.
Note: x07 run, x07 build, and x07 bundle run the same auto-repair loop by default (--repair=...). Use this skill when you want raw diagnostics or tighter control.
Canonical converge loop
-
Lint (machine-readable JSON report):
x07 lint --input src/main.x07.json --json
-
Apply tool-provided quickfixes (when diagnostics include JSON Patch quickfixes):
x07 fix --input src/main.x07.json --write --json
-
If a custom fix is needed, apply an explicit JSON Patch (RFC 6902):
x07 ast apply-patch --in src/main.x07.json --patch /tmp/repair.patch.json --validate
-
Canonicalize after patching:
x07 fmt --input src/main.x07.json --write --json
Repeat (max 3 iterations). If still failing, stop and change strategy (reduce scope, regenerate the x07AST cleanly, or ask for clarification).
Related:
- If the failure came from
x07 test --pbt(a counterexample repro), usex07 fix --from-pbt <repro.json> --writeto generate a deterministic regression test.
More from x07lang/x07-website
x07-os-run
Expert backend for run-os / run-os-sandboxed execution via x07-os-runner. Prefer `x07 run --profile os` / `x07 run --profile sandbox`.
10x07-test
Run project tests using the X07 test harness (x07 test), producing a machine-readable JSON report.
9x07-package
Manage X07 project dependencies and lockfiles for reproducible builds (lock, publish). Designed for autonomous agents.
9x07-bundle
Produce distributable native executables (normal CLI ABI) via `x07 bundle`.
8x07-ffi-c
Emit C output and a C header for embedding X07 in C/C++ via `x07 build --emit-c-header`.
8x07-agent-playbook
Agent-first workflow and design rails for building X07 programs with the released toolchain (no repo-only dependencies). Canonical execution is via `x07 run`.
8