Zereight Goal
Use this skill when the user asks:
- "Are you 100% confident in this strategy?"
- "Find all possible loopholes"
- "Run this loop until you are factually 100% confident"
- equivalent wording about goal strategy, plan confidence, loopholes, and fixes
Core Rule
Never claim 100% confidence from reasoning alone.
100% confident means:
- evidence checked in the current turn
- known assumptions listed
- loopholes tested or closed
- residual risk explicitly bounded
- no unresolved blocker remains
If the available tools or evidence cannot prove the strategy completely, say so and continue with the strongest evidence-backed strategy.
Goal Hardening Loop
Repeat until no new material loophole remains.
1. Restate Goal
Write the goal as a testable outcome.
Format:
Goal: ...
Success criteria:
- ...
Non-goals:
- ...
If success criteria are missing, infer conservative criteria from the user's request and mark them as assumptions.
2. State Current Strategy
Compress the strategy into concrete steps.
Each step must be verifiable:
Step: ...
Evidence needed: ...
Failure mode: ...
3. Attack The Strategy
Search for loopholes from these angles:
- Spec mismatch: goal, user intent, API contract, product rule, legal or policy rule
- Data mismatch: stale data, incomplete input, wrong source of truth, hidden default
- Control-flow gap: skipped state, retry path, cancellation path, race, timeout
- Ownership gap: auth, tenant, account, session, permissions, expiry
- Environment gap: platform, version, branch, feature flag, locale, timezone, region
- Operational gap: deploy, rollback, monitoring, logging, migration, support handoff
- UX gap: confusing state, irreversible action, accessibility, error recovery
- Security gap: injection, privilege escalation, data leak, replay, auditability
- Test gap: untested branch, flaky assertion, mocked-away behavior, missing negative case
- Maintenance gap: unclear owner, brittle coupling, duplicated rule, undocumented assumption
For each loophole:
Loophole: ...
Why possible: ...
Evidence status: confirmed | disproven | unknown
Impact: high | medium | low
Fix: ...
Verification: ...
4. Fix Strategy
Update the strategy only with fixes that close real or plausible loopholes.
Separate:
- Required fixes: needed for correctness, safety, or factual confidence
- Optional cleanup: improves clarity or maintainability but not required
5. Verify
Use current-turn evidence before saying verified.
Prefer direct checks:
- read source files, docs, specs, logs, diffs, spreadsheets, tickets, or PRs
- run tests, linters, type checks, builds, or focused scripts
- query primary systems through approved tools
- compare against the exact branch, version, date, environment, or artifact in scope
Do not invent:
- source contents
- API behavior
- dates
- versions
- policy language
- test results
If evidence is unavailable:
Not fully verified: ...
Reason: ...
Needed evidence: ...
6. Confidence Gate
Before final answer, answer these internally:
- Does every success criterion map to at least one strategy step?
- Does every high/medium loophole have a fix or a documented blocker?
- Did verification run in the current turn for every claim marked verified?
- Are assumptions explicit?
- Is residual risk bounded?
Allowed confidence language:
Factually confident within checked scope when evidence supports the strategy and residual risk is bounded.
Not 100% confident yet when missing evidence remains.
Blocked from 100% confidence when the needed evidence or action is inaccessible.
Forbidden:
- claiming absolute certainty while assumptions or unknown evidence remain
- saying tests passed without running or observing them in the current turn
- hiding residual risk behind vague wording
Final Output
Use this shape:
Conclusion: ...
Required fixes:
- ...
Loopholes closed:
- ...
Residual risk:
- ...
Verification:
- ...
If no material loopholes remain, say:
Conclusion: Factually confident within checked scope.
If any material evidence is missing, say:
Conclusion: Not 100% confident yet.
1---2name: zereight-goal3description: Stress-test a strategy until confidence is evidence-backed. Use when the user asks whether a plan is 100% reliable, wants loopholes found, or asks to iterate fixes until the strategy is factually solid.4---56# Zereight Goal78Use this skill when the user asks:910- "Are you 100% confident in this strategy?"11- "Find all possible loopholes"12- "Run this loop until you are factually 100% confident"13- equivalent wording about goal strategy, plan confidence, loopholes, and fixes1415## Core Rule1617Never claim 100% confidence from reasoning alone.1819`100% confident` means:2021- evidence checked in the current turn22- known assumptions listed23- loopholes tested or closed24- residual risk explicitly bounded25- no unresolved blocker remains2627If the available tools or evidence cannot prove the strategy completely, say so and continue with the strongest evidence-backed strategy.2829## Goal Hardening Loop3031Repeat until no new material loophole remains.3233### 1. Restate Goal3435Write the goal as a testable outcome.3637Format:3839```text40Goal: ...41Success criteria:42- ...43Non-goals:44- ...45```4647If success criteria are missing, infer conservative criteria from the user's request and mark them as assumptions.4849### 2. State Current Strategy5051Compress the strategy into concrete steps.5253Each step must be verifiable:5455```text56Step: ...57Evidence needed: ...58Failure mode: ...59```6061### 3. Attack The Strategy6263Search for loopholes from these angles:6465- Spec mismatch: goal, user intent, API contract, product rule, legal or policy rule66- Data mismatch: stale data, incomplete input, wrong source of truth, hidden default67- Control-flow gap: skipped state, retry path, cancellation path, race, timeout68- Ownership gap: auth, tenant, account, session, permissions, expiry69- Environment gap: platform, version, branch, feature flag, locale, timezone, region70- Operational gap: deploy, rollback, monitoring, logging, migration, support handoff71- UX gap: confusing state, irreversible action, accessibility, error recovery72- Security gap: injection, privilege escalation, data leak, replay, auditability73- Test gap: untested branch, flaky assertion, mocked-away behavior, missing negative case74- Maintenance gap: unclear owner, brittle coupling, duplicated rule, undocumented assumption7576For each loophole:7778```text79Loophole: ...80Why possible: ...81Evidence status: confirmed | disproven | unknown82Impact: high | medium | low83Fix: ...84Verification: ...85```8687### 4. Fix Strategy8889Update the strategy only with fixes that close real or plausible loopholes.9091Separate:9293- Required fixes: needed for correctness, safety, or factual confidence94- Optional cleanup: improves clarity or maintainability but not required9596### 5. Verify9798Use current-turn evidence before saying verified.99100Prefer direct checks:101102- read source files, docs, specs, logs, diffs, spreadsheets, tickets, or PRs103- run tests, linters, type checks, builds, or focused scripts104- query primary systems through approved tools105- compare against the exact branch, version, date, environment, or artifact in scope106107Do not invent:108109- source contents110- API behavior111- dates112- versions113- policy language114- test results115116If evidence is unavailable:117118```text119Not fully verified: ...120Reason: ...121Needed evidence: ...122```123124### 6. Confidence Gate125126Before final answer, answer these internally:127128- Does every success criterion map to at least one strategy step?129- Does every high/medium loophole have a fix or a documented blocker?130- Did verification run in the current turn for every claim marked verified?131- Are assumptions explicit?132- Is residual risk bounded?133134Allowed confidence language:135136- `Factually confident within checked scope` when evidence supports the strategy and residual risk is bounded.137- `Not 100% confident yet` when missing evidence remains.138- `Blocked from 100% confidence` when the needed evidence or action is inaccessible.139140Forbidden:141142- claiming absolute certainty while assumptions or unknown evidence remain143- saying tests passed without running or observing them in the current turn144- hiding residual risk behind vague wording145146## Final Output147148Use this shape:149150```text151Conclusion: ...152153Required fixes:154- ...155156Loopholes closed:157- ...158159Residual risk:160- ...161162Verification:163- ...164```165166If no material loopholes remain, say:167168```text169Conclusion: Factually confident within checked scope.170```171172If any material evidence is missing, say:173174```text175Conclusion: Not 100% confident yet.176```