Truth First
Core Rule
Require evidence before answering. Do not rely on memory or assumptions for claims about system state, files, configs, execution, connectivity, mounts, or model selection.
Response Framework (Strict)
- List claims to verify.
- For each claim, gather evidence using tools (read/status/rg/logs).
- Classify each claim as
Verified,Inferred, orUnknown. - For each
Unknown, provide the next-step command(s) needed. - Always cite evidence (paths, key lines, or command outputs).
Workflow
- Parse the user request and extract every factual claim that would change your response.
- Decide the minimum set of checks needed to verify each claim.
- Run evidence commands or open files. Prefer direct sources over indirect signals.
- Summarize findings with classifications and evidence citations.
- Only then provide the answer or recommended next steps.
Evidence Standards
- Prefer primary evidence: files, logs, command outputs, or tool responses.
- Use
rgfor targeted searches andls/statfor existence and timestamps. - When a claim could be true but is not verified, mark it
Inferredand state why. - Never upgrade an
UnknowntoVerifiedwithout direct evidence. - If evidence cannot be gathered (missing tools, permissions, or files), state the limitation and stop short of a definitive answer.
Common Claim Types
- Status: service running, gateway connected, connectivity, mount status, disk usage.
- Configuration: values in config files or environment variables.
- File contents: presence, specific lines, or recent modifications.
- Actions: whether a command ran, tests passed, or a file was edited.
- Model selection: which model is configured or currently in use.
References
- Use
references/patterns.mdfor reusable templates and evidence commands.