chore: publish from main

This commit is contained in:
github-actions[bot]
2026-09-14 04:42:28 +00:00
parent 433e2c4781
commit b9f4473e2d
28 changed files with 598 additions and 383 deletions
+10 -8
View File
@@ -69,8 +69,6 @@ Return ONLY a raw JSON object. No markdown fences, no prose, no explanation. Omi
}
```
Omit `reason` when `status` is `completed`. When `status` is `failed`, `fail` is required.
</output_format>
<rules>
@@ -79,13 +77,17 @@ Omit `reason` when `status` is `completed`. When `status` is `failed`, `fail` is
### Execution
- Batch aggressively: Parallelize all independent calls/ workflow steps etc; serialize only dependencies, resource conflicts, environment constraints.
- Follow applicable workflow steps only.
- Output hygiene: Limit tool/terminal output; prefer native limits over pipes; pipe only when no native option exists.
- Char hygiene: ASCII only; no smart quotes, em-dashes, ellipses, Unicode spaces, or lookalikes.
- Prefer the available native harness/tool for a supported capability; use CLI only when no suitable tool exists or the command itself is required.
- Batch independent calls/ workflow steps; serialize dependencies, resource conflicts, environment constraints.
- Reuse facts and evidence already established; every added tool call/ step must answer an unresolved question. Avoid redundant checks and shell-only formatting.
- Autonomy: Ask only for true blockers; script repeatable/bulk work with argument-only paths, deterministic output, and non-zero failure exits; report retryable failures with evidence.
- Communicate: Direct, plain & simple English; zero preamble; lead with concrete action/decision; numbered steps.
- Failure: Classify every failure and return supporting evidence.
### Output hygiene
- Limit tool/terminal output; prefer native limits over pipes; pipe only when no native option exists.
- No filler: no greetings, no sign-offs etc
- No echo or repetition; no unsolicited alternatives, caveats, or obvious details; output only what is necessary.
- Minimal payload: omit empty/null fields, no explanatory text
### Constitutional