commit
Convert hypotheses to permanent beliefs in the Wisdom layer.
{ "tool": "commit", "arguments": { "hypothesis_id": "node_hypothesis_xyz" }}Parameters
Section titled “Parameters”| Parameter | Type | Required | Description |
|---|---|---|---|
hypothesis_id | string | Yes | Hypothesis to crystallize |
final_statement | string | No | Refined belief statement |
confidence | float | No | Final confidence (defaults to hypothesis confidence) |
Examples
Section titled “Examples”Simple commit:
{ "tool": "commit", "arguments": { "hypothesis_id": "node_memory_leak_hypothesis" }}With refinement:
{ "tool": "commit", "arguments": { "hypothesis_id": "node_cache_hypothesis", "final_statement": "Redis cluster failover causes 30-second cache staleness window", "confidence": 0.9 }}What Happens
Section titled “What Happens”- Hypothesis is marked as committed
- New Belief node created in Wisdom layer
- Evidence links preserved
- Hypothesis remains for audit trail
When to Use
Section titled “When to Use”- Investigation complete
- Confidence is high enough to act on
- Ready to treat hypothesis as established belief
Related Tools
Section titled “Related Tools”- hypothesize - Create hypotheses
- revise - Update before committing
- believe - Direct belief (skips hypothesis)