vault_write_belief
Persist a durable belief about a codebase entity to the knowledge vault, including claim ID, confidence, status, and source references for machine auditing.
Instructions
Write a belief artifact to the CogOps Knowledge Vault.
Beliefs are durable system understanding — what Entroly thinks the codebase is. Each belief carries machine-auditable frontmatter: claim_id, entity, status, confidence, sources, last_checked.
Args: entity: The system entity this belief is about (e.g., 'auth::token_rotation') title: Human-readable title body: The belief content (markdown) confidence: Machine-assigned confidence 0.0-1.0 (default: 0.7) status: observed|inferred|verified|stale|hypothesis (default: inferred) sources: Comma-separated source paths (e.g., 'src/auth.rs:142,src/token.rs:58') derived_from: Comma-separated component names that produced this belief
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | Yes | ||
| title | Yes | ||
| entity | Yes | ||
| status | No | inferred | |
| sources | No | ||
| confidence | No | ||
| derived_from | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |