Default
Path:
loom-builder-sol/gates/v1.1.0/default.jsonRelative: gates/v1.1.0/default.jsonSubproject: loom-builder-solCategory: configurationLines: 22Bytes: 1,128Imports: 0Exports: 0
Content Preview
- {
- "scope": "default",
- "description": "Base gate pack v1.1.0: RESULT: PASS grep + stale-digest mtime guard + verify-run",
- "validation": [
- {
- "label": "stale-digest guard (digest mtime > run start)",
- "cmd": ["bash", "-lc", "DIGEST=\"CLAUDE_DIGEST.md\"\nSTART_MS=\"${LOOM_RUN_STARTED_MS:-0}\"\nif [ ! -f \"$DIGEST\" ]; then echo \"FAIL: $DIGEST not found\"; exit 1; fi\nDIGEST_MS=$(stat -c %Y \"$DIGEST\")\nDIGEST_MS=$(( DIGEST_MS * 1000 ))\nif [ \"$DIGEST_MS\" -le \"$START_MS\" ];