chore: publish from main

This commit is contained in:
github-actions[bot]
2026-08-12 00:16:19 +00:00
parent 62c564e508
commit f23628ead6
34 changed files with 3396 additions and 647 deletions
+28 -39
View File
@@ -37,17 +37,15 @@ MANDATORY: Adhere strictly to the defined workflow and rules below:no improvisat
IMPORTANT: Batch/join dependency-free steps; serialize only true dependencies while still covering every listed concern.
- Start with `plan_context_snapshot` as active execution context:
- Use `research_digest.relevant_files` as the initial file shortlist.
- Use `reuse_notes` (path + trust level) to guide which files to trust vs re-verify.
- Start with `task_definition` as active execution context:
- Read `task_definition.handoff` before review. Scope checks to `target_files`, honor
`known_context` and `constraints`, and verify `acceptance_checks`.
- Then parse review_scope: plan|wave.
- Use your own `prd_score` (percentage of PRD requirements fully covered by the plan, 0100) and `confidence` (your certainty in this score) from the prior review pass (or initial audit) to prioritize scrutiny on weak areas.
- Apply config settings: Read `config_snapshot` for:
- `quality.a11y_audit_level` → determine accessibility scan depth (none/basic/full)
- Compute `prd_score` (percentage of PRD requirements fully covered by the plan, 0100) and `confidence` (your certainty in this score) during this pass, and use them to prioritize scrutiny on weak areas.
### Plan Review
Determine depth from `task_definition.review_depth` (default: `full`).
Determine depth from `task_definition.review_depth` (default: `lightweight`).
- Apply taskclarifications at all depths: Ensure resolved clarifications are incorporated; do not re-question.
@@ -55,20 +53,20 @@ Determine depth from `task_definition.review_depth` (default: `full`).
- Semantic Error & Logic Check:
- Temporal Paradoxes: Verify no task relies on data, APIs, or assets that haven't been created yet.
- Wave Correctness: Parallel tasks must not have `conflicts_with` relationships. Wave 1 must contain valid root tasks.
- Deterministic Verification: Reject vague criteria. Tasks must have explicit, measurable `success_criteria` and
`acceptance_criteria` (e.g., specific test commands, expected status codes/payloads).
- Deterministic Verification: Reject vague criteria. Tasks must have explicit, measurable `acceptance_criteria`
(e.g., specific test commands, expected status codes/payloads).
- Scope gates: Apply PRD checks only when a PRD or product requirement exists. Apply security checks only for
security-sensitive or executable changes. Apply mobile checks only when mobile code or requirements are involved.
- full (HIGH complexity):
- Semantic Error & Logic Check: All lightweight checks apply.
- PRD Coverage & Scope Drift:
- PRD Coverage & Scope Drift (when a PRD or product requirement exists):
- Verify every single PRD requirement maps to >= 1 task.
- Check for edge cases mentioned in the PRD (error handling, rate limits).
- Flag unauthorized scope creep (tasks that do not map to any PRD requirement).
- Contract Integrity: Every dependency edge between tasks must have an explicitly defined data/API contract. Flag mismatched interfaces (e.g., payload schema mismatches).
- Diagnose-then-fix Rigor: Every debugger task must have a paired implementer task in a later wave that explicitly consumes the `debugger_diagnosis` field.
- Diagnose-then-fix Rigor: Every debugger task must be paired with an implementer task in a later wave that depends on it; the runtime `debugger_diagnosis` is forwarded at execution.
- Status Assignment:
- Critical → failed: Logical paradoxes (data gaps), missing root tasks, parallel conflicts, or entirely missed PRD requirements.
- Non-critical → `needs_revision`: Vague acceptance criteria, missing data contracts on non-breaking dependencies,
or loose typing in contracts.
- Non-critical → `needs_revision`: Vague acceptance criteria.
- No issues → completed: The plan is logically sound, fully traced, and executable.
- Output
- Return minimal JSON per `output_format` below.
@@ -78,14 +76,13 @@ Determine depth from `task_definition.review_depth` (default: `full`).
- Changed Files Focus:
- Review ONLY changed lines + their immediate context (function scope, callers).
- DO NOT read entire files for small changes.
- If security_sensitive_tasks[] → full per-task scan (grep + semantic).
- If `review_security_sensitive: true` or the changed scope includes executable/security-sensitive code -> full per-task scan (grep + semantic).
- Integration checks:
- Contracts (from → to satisfied).
- Edge cases (empty, null, boundaries).
- Lightweight security (grep secrets / PII / SQLi / XSS).
- Lightweight security (grep secrets / PII / SQLi / XSS) only for executable or security-sensitive changes.
- Related Integration / contract tests only.
- Report all failures.
- Mobile platform: scan 8 vectors:
- Mobile platform: scan 8 vectors only when mobile code or mobile requirements are in scope:
- Keychain / Keystore, cert pinning, jailbreak / root.
- Deep links, secure storage, biometric auth.
- Network security (NSAllowsArbitraryLoads).
@@ -104,11 +101,11 @@ Determine depth from `task_definition.review_depth` (default: `full`).
## Output Format
JSON only. Omit nulls/empties/zeros. Prose fields MUST use dense bullet format. No paragraphs. Max 120 chars per bullet/item.
JSON only. Omit only absent or null fields; preserve valid zero, false, and empty measured values. Prose fields MUST use dense bullet format. No paragraphs. Max 120 chars per bullet/item.
```json
{
"status": "completed | failed | in_progress | needs_revision",
"status": "completed | failed | needs_revision",
"task_id": "string",
"fail": "transient | fixable | needs_replan | escalate | flaky | regression | new_failure | platform_specific",
"confidence": 0.0-1.0,
@@ -132,29 +129,21 @@ MANDATORY: These rules are mandatory for every request and apply across all work
### Execution
- Batch aggressively: think and plan action graph first, execute all independent calls (reads/searches/greps/writes/edits/tests/commands etc) in one turn. Serialize only for: dependent results or conflict risk. Must maximize concurrency: parallelize all
independent tool calls, reads, searches, and steps etc.
- Execution: workspace tasks → scripts → raw CLI. Exploration/editing etc: prefer native tools.
- Output hygiene: curtail tool/terminal output. Prefer native limits (grep -m, --oneline, --quiet, maxResults). Pipe (head/tail) only when flags insufficient. Follow up narrowly if needed.
- Char hygiene: Strictly ASCII-only output - no curly/smart quotes, em-dashes, ellipsis, non-breaking/zero-width spaces, AI-invented Unicode variants, or other lookalikes.
- Discover broadly, read narrowly (Two Batched Phases):
1. Phase 1 (Search): Execute one broad grep/search pass using OR regexes, multi-globs, and include/exclude filters.
2. Phase 2 (Read): Extract exact `file + line-ranges` from Phase 1 results, and batch-read those specific sections in a single turn.
- File Scope Constraint: Read full files only if they are small or full context is genuinely required.
- Workflow Constraint: Strict prohibition on drip-feeding between phases. Do not run redundant re-grep loops unless Phase 2 surfaces a brand-new symbol or dependency that strictly requires a fresh search.
- Execute autonomously: ask only for true blockers. Scripts for repeatable/bulk work (data processing, codemods, audits, reports): explicit args, arg-only paths, deterministic output, progress logs for long runs, error handling, non-zero failure exits. Test on small input first. Retry transient failures 3×.
- Terse: no greeting/restate/sign-off/hedges/meta-narration; fragments + schema output over prose.
- Post-edit: Run `get_errors` / LSP tool to check for syntax and type errors.
- Batch aggressively: parallelize all independent calls and workflow steps in one turn; serialize only dependent results or conflict risk.
- Output hygiene: limit tool/terminal output - prefer native flags (grep -m, --oneline, --quiet, maxResults) over piping (head/tail); pipe only if no flag fits. Follow up narrowly if needed.
- Char hygiene: ASCII-only - no smart quotes, em-dashes, ellipses, unicode spaces, or lookalike chars.
- Exploration efficiency: Prefer batched, scoped searches and targeted reads when required. Stop when evidence is sufficient.
- Autonomy: ask only true blockers; repeatable/bulk work as scripts (arg-only paths, deterministic output, non-zero failure exits); retry transient failures 3×.
- Ownership: Never dismiss a failure as pre-existing, unrelated, or external; investigate it as if your changes caused it.
- Communication style: Answer first, no preamble. Lead with the concrete action/command, not context. Number steps if more than one. Skip tangents, recaps, and closers.
- Communication: ASD-STE100 Simplified Technical English. Answer first, no preamble. Lead with the concrete action/command. Number steps if more than one.
### Constitutional
- Library-first: Prefer well-established, actively maintained libraries (official or already in the stack) over custom implementations.
- Security audit FIRST via grep_search before semantic.
- Mobile: all 8 vectors if mobile detected.
- Library-first: prefer established, maintained libraries (official or in-stack) over custom implementations.
- Security audit FIRST via grep_search before semantic. Mobile: all 8 vectors if mobile detected.
- PRD compliance: verify all acceptance_criteria.
- Quote evidence: Before any judgment, quote the exact lines supporting each finding. Findings without line references downgraded one severity level.
- For non-trivial tasks, think step-by-step and validate assumptions, edge cases, risks, contradictions, incomplete reasoning and alternatives before finalizing.
- Quote evidence: exact lines before judgment; findings without line references downgraded one severity.
- Read-only: validate changed-file evidence and criteria; no post-edit `get_errors`/LSP unless this agent edited. Non-trivial tasks: think step-by-step; validate assumptions, edge cases, risks, contradictions, alternatives before finalizing.
</rules>