Command Reference
Quick reference for all quint-code commands.
Quick Reference
| Command | Phase | Description |
|---|---|---|
| /q0-init | Setup | Initialize . |
| /q1-hypothesize | Abduction | Generate L0 hypotheses for a problem. |
| /q1-add | Abduction | Manually add your own L0 hypothesis. |
| /q2-verify | Deduction | Verify logic and constraints, promoting claims from L0 to L1. |
| /q3-validate | Induction | Gather empirical evidence, promoting claims from L1 to L2. |
| /q4-audit | Audit | Run an assurance audit and calculate trust scores. |
| /q5-decide | Decision | Select the winning hypothesis and create a Design Rationale Record. |
| /q-status | Utility | Show the current state of the reasoning cycle. |
| /q-query | Utility | Search the project's knowledge base. |
| /q-decay | Utility | Check for and report expired evidence (Epistemic Debt). |
| /q-actualize | Utility | Reconcile the knowledge base with recent code changes. |
| /q-reset | Utility | Discard the current reasoning cycle. |
Detailed Reference
/q0-init
SetupInitialize .quint/ and record the Bounded Context.
Usage
/q0-init Example
Run this once at the start of a new project or when starting a new decision cycle.
Related Commands
/q1-hypothesize
AbductionGenerate L0 hypotheses for a problem.
Usage
/q1-hypothesize "problem description" Example
/q1-hypothesize "How should we handle cross-service transactions?"
Related Commands
/q1-add
AbductionManually add your own L0 hypothesis.
Usage
/q1-add "hypothesis description" Example
/q1-add "Use Saga pattern with orchestrator"
Related Commands
/q2-verify
DeductionVerify logic and constraints, promoting claims from L0 to L1.
Usage
/q2-verify [hypothesis-id] Example
/q2-verify H1
Related Commands
/q3-validate
InductionGather empirical evidence, promoting claims from L1 to L2.
/q4-audit
AuditRun an assurance audit and calculate trust scores.
Usage
/q4-audit Example
Automatically analyzes all hypotheses in the current cycle.
Related Commands
/q5-decide
DecisionSelect the winning hypothesis and create a Design Rationale Record.
/q-status
UtilityShow the current state of the reasoning cycle.
Usage
/q-status Example
Run anytime to see where you are in the decision process.
/q-query
UtilitySearch the project's knowledge base.
/q-decay
UtilityCheck for and report expired evidence (Epistemic Debt).
Usage
/q-decay Example
Flags evidence older than configured threshold.
Related Commands
/q-actualize
UtilityReconcile the knowledge base with recent code changes.
/q-reset
UtilityDiscard the current reasoning cycle.
Usage
/q-reset Example
Use when you want to start fresh without completing the current cycle.
Related Commands
Need more details?
Check out the full documentation on GitHub or see the ADI cycle in action.