x07-lint-repair
Installation
SKILL.md
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