Lifecycle, Document & Lock Tools
This page covers graph ingestion, document runtime operations, health monitoring, plan validation, persistence, and subgraph locking with change detection.
ingest
Ingest or re-ingest a codebase, descriptor, or memory/document corpus into the graph. This is the primary way to load data into m1nd. It now supports code-first, structured-document, and universal document adapters.
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
path | string | Yes | – | Filesystem path to the source root or memory corpus. |
agent_id | string | Yes | – | Calling agent identifier. |
incremental | boolean | No | false | Incremental ingest (code adapter only). Only re-processes files that changed since the last ingest. |
adapter | string | No | "code" | Adapter to use for parsing. Values include "code", "json", "memory", "light", "patent", "article", "bibtex", "rfc", "crossref", "universal", and "auto" / "document" for format detection. |
mode | string | No | "replace" | How to handle the existing graph. Values: "replace" (clear and rebuild), "merge" (add new nodes/edges into existing graph). |
namespace | string | No | – | Optional namespace tag for non-code nodes. Used by memory and json adapters to prefix node external_ids. |
Example Request
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "ingest",
"arguments": {
"agent_id": "jimi",
"path": "/Users/cosmophonix/clawd/roomanizer-os/backend",
"adapter": "code",
"mode": "replace",
"incremental": false
}
}
}
Example Response
{
"files_processed": 335,
"nodes_created": 9767,
"edges_created": 26557,
"languages": { "python": 335 },
"elapsed_ms": 910.0
}
Adapters
| Adapter | Input | Node Types | Edge Types |
|---|---|---|---|
code | Source code directory | file, class, function, struct, module | imports, calls, registers, configures, tests, inherits |
json | Graph snapshot JSON | (preserved from snapshot) | (preserved from snapshot) |
memory | Markdown files | document, concept, entity | references, relates_to |
light | L1GHT protocol markdown | document, section, entity, typed semantic nodes | explicit semantic edges from frontmatter and markers |
patent / article / bibtex / rfc / crossref | Structured document formats | document, section, citation, entity | citation and cross-domain edges |
universal | Best-effort document canonicalization | document, section, block, table, citation, entity, claim | document containment, references, bindings, supports |
auto / document | Format detection wrapper | routes to the strongest detected adapter | adapter-specific |
Mode Behavior
| Mode | Behavior |
|---|---|
replace | Clears the existing graph, ingests fresh, finalizes (PageRank + CSR). All perspectives and locks are invalidated. |
merge | Adds new nodes and edges into the existing graph. Existing nodes are updated if they share the same external_id. Graph is re-finalized after merge. |
When to Use
- Session start – ingest the codebase if the graph is empty or stale
- After code changes – re-ingest incrementally to update the graph
- Multi-source – merge a memory corpus into a code graph for cross-domain queries
- Federation preparation – use
federateinstead for multi-repo ingestion
Side Effects
- replace mode: clears all graph state, invalidates all perspectives and locks, marks lock baselines as stale
- merge mode: adds to graph, increments graph generation, triggers watcher events on affected locks
Related Tools
health– check graph status before deciding to ingestdrift– see what changed since last sessionfederate– multi-repo ingestiondocument_resolve– resolve canonical artifacts for a universal documentauto_ingest_start– keep document roots synchronized after ingest
document_resolve
Resolve the canonical local artifact set for a universally ingested document by source path or universal node id.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
agent_id | string | Yes | Calling agent identifier. |
path | string | No | Original source path or canonical markdown path. |
node_id | string | No | Universal graph node id for the document. |
Example Request
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "document_resolve",
"arguments": {
"agent_id": "jimi",
"path": "docs/specs/auth.md"
}
}
}
Example Response
{
"source_path": "docs/specs/auth.md",
"canonical_markdown_path": "/tmp/m1nd-runtime/l1ght-cache/sources/abcd/canonical.md",
"canonical_json_path": "/tmp/m1nd-runtime/l1ght-cache/sources/abcd/canonical.json",
"claims_path": "/tmp/m1nd-runtime/l1ght-cache/sources/abcd/claims.json",
"producer": "universal:internal",
"section_count": 4,
"claim_count": 3,
"binding_count": 2
}
When to Use
- when an agent needs the durable local artifact path
- when a doc has already been ingested and you want its canonical projection
- before opening
canonical.mdorclaims.jsondirectly
Related Tools
document_provider_health
Report availability, mode, detail, and install hints for optional universal-document providers.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
agent_id | string | Yes | Calling agent identifier. |
Example Response
{
"python": "python3",
"providers": [
{ "name": "docling", "available": true, "mode": "broad-spectrum canonicalizer" },
{ "name": "grobid", "available": false, "mode": "scholarly pdf lane", "install_hint": "Set M1ND_GROBID_URL to a reachable GROBID service." }
]
}
When to Use
- before assuming richer HTML/PDF/office extraction exists
- during environment setup
- when a provider-backed lane seems to be falling back unexpectedly
Related Tools
document_bindings
Resolve deterministic document-to-code bindings for a universal document.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
agent_id | string | Yes | Calling agent identifier. |
path | string | No | Original source path or canonical markdown path. |
node_id | string | No | Universal graph node id for the document. |
top_k | integer | No | Maximum bindings to return. |
Example Response
{
"source_path": "docs/specs/auth.md",
"bindings": [
{
"target_node_id": "file::src/auth/session.rs",
"target_label": "SessionPool",
"relation": "mentions_symbol",
"score": 0.92,
"confidence": "parsed",
"reason": "exact label match"
}
]
}
When to Use
- when the question is “which code implements this doc?”
- when preparing an implementation map from a spec, paper, or note
- before editing code to match a document
Related Tools
document_drift
Analyze stale, missing, or ambiguous document/code bindings for a universal document.
Example Response
{
"source_path": "docs/specs/auth.md",
"summary": {
"total_findings": 1,
"stale_bindings": 1,
"missing_targets": 0,
"ambiguous_targets": 0,
"unbacked_claims": 0,
"code_change_unreflected": 1
}
}
When to Use
- after refactors or repo moves
- when document claims may no longer be backed by current code
- when a spec feels “probably stale” and you want a grounded first pass
Related Tools
auto_ingest_start
Start local-first document watchers for one or more roots and supported document families.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
agent_id | string | Yes | Calling agent identifier. |
roots | string[] | Yes | Filesystem roots to watch recursively. |
formats | string[] | No | Supported document formats to auto-ingest. |
debounce_ms | integer | No | Minimum quiet period before a change is eligible for ingestion. |
namespace | string | No | Optional namespace for non-code document nodes. |
Example Request
{
"jsonrpc": "2.0",
"id": 6,
"method": "tools/call",
"params": {
"name": "auto_ingest_start",
"arguments": {
"agent_id": "jimi",
"roots": ["/project/docs", "/project/wiki"],
"formats": ["universal", "light"],
"debounce_ms": 200
}
}
}
auto_ingest_status
Inspect the current auto-ingest runtime, queue depth, semantic counts, provider status, and provider route/fallback counts.
Example Response
{
"running": true,
"queue_depth": 0,
"semantic_document_count": 12,
"semantic_claim_count": 34,
"drift_document_count": 1,
"provider_status": { "docling": true, "trafilatura": true, "grobid": false }
}
auto_ingest_tick
Drain queued document changes immediately and apply them to the active graph.
Example Response
{
"ingested_paths": ["/project/docs/specs/auth.md"],
"removed_paths": [],
"skipped_paths": [],
"errored_paths": []
}
auto_ingest_stop
Stop active document watchers and persist the manifest state.
Related Tools
health
Server health and statistics. Returns node/edge counts, query count, uptime, memory usage, plasticity state, and active sessions.
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
agent_id | string | Yes | – | Calling agent identifier. |
Example Request
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "health",
"arguments": {
"agent_id": "jimi"
}
}
}
Example Response
{
"status": "healthy",
"node_count": 9767,
"edge_count": 26557,
"queries_processed": 142,
"uptime_seconds": 3600.5,
"memory_usage_bytes": 52428800,
"plasticity_state": "active",
"last_persist_time": "2026-03-13T10:30:00Z",
"active_sessions": [
{ "agent_id": "jimi", "last_active": "2026-03-13T11:25:00Z" }
]
}
When to Use
- Session start – first tool to call; verify the server is alive and the graph is loaded
- Monitoring – periodic health checks in long sessions
- Debugging – check memory usage and query counts
Related Tools
validate_plan
Validate a proposed modification plan against the code graph. Detects gaps (affected files missing from the plan), risk level, test coverage, and suggested additions. Designed to be called before implementing a plan.
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
agent_id | string | Yes | – | Calling agent identifier. |
actions | object[] | Yes | – | Ordered list of planned actions. Each object has: action_type (string, required – "modify", "create", "delete", "rename", "test"), file_path (string, required – relative path), description (string, optional), depends_on (string[], optional – other file_paths this action depends on). |
include_test_impact | boolean | No | true | Analyze test coverage for modified files. |
include_risk_score | boolean | No | true | Compute composite risk score. |
Example Request
{
"jsonrpc": "2.0",
"id": 3,
"method": "tools/call",
"params": {
"name": "validate_plan",
"arguments": {
"agent_id": "jimi",
"actions": [
{ "action_type": "modify", "file_path": "backend/session_pool.py", "description": "Add connection timeout" },
{ "action_type": "modify", "file_path": "backend/worker_pool.py", "description": "Update pool acquire to use timeout" },
{ "action_type": "test", "file_path": "backend/tests/test_session_pool.py" }
]
}
}
}
Example Response
{
"actions_analyzed": 3,
"actions_resolved": 3,
"actions_unresolved": 0,
"gaps": [
{
"file_path": "backend/config.py",
"node_id": "file::config.py",
"reason": "imported by modified file session_pool.py -- timeout config likely needed here",
"severity": "warning",
"signal_strength": 0.72
},
{
"file_path": "backend/process_manager.py",
"node_id": "file::process_manager.py",
"reason": "in blast radius of worker_pool.py -- calls worker_pool.submit",
"severity": "info",
"signal_strength": 0.45
}
],
"risk_score": 0.52,
"risk_level": "medium",
"test_coverage": {
"modified_files": 2,
"tested_files": 1,
"untested_files": ["backend/worker_pool.py"],
"coverage_ratio": 0.5
},
"suggested_additions": [
{ "action_type": "modify", "file_path": "backend/config.py", "reason": "Timeout configuration likely needed" },
{ "action_type": "test", "file_path": "backend/tests/test_worker_pool.py", "reason": "Modified file has no test action in plan" }
],
"blast_radius_total": 47,
"elapsed_ms": 35.0
}
Risk Levels
| Level | Score Range | Meaning |
|---|---|---|
"low" | < 0.3 | Small, well-tested change |
"medium" | 0.3 – 0.6 | Moderate scope, some gaps |
"high" | 0.6 – 0.8 | Large scope or missing tests |
"critical" | >= 0.8 | Very high risk – review carefully |
When to Use
- Before implementing – validate your plan catches all affected files
- PR review – validate that a PR’s changes are complete
- Planning – estimate risk and scope before committing to a plan
- Quality gate – reject plans with risk_score > threshold
Related Tools
impact– blast radius for a single nodepredict– co-change prediction for a single nodetrace– validate a fix plan for a specific error
lock_create
Pin a subgraph region and capture a baseline snapshot for change monitoring. Locks are used to track what changes in a region of the graph while you work. The baseline is compared against the current state when you call lock.diff.
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
agent_id | string | Yes | – | Calling agent identifier. Lock is owned by this agent. |
scope | string | Yes | – | Scope type. Values: "node" (single nodes only), "subgraph" (BFS expansion from roots), "query_neighborhood" (nodes matching a query), "path" (ordered node list). |
root_nodes | string[] | Yes | – | Root nodes for the lock scope. Non-empty. Matched by external_id (exact), then label, then substring. |
radius | integer | No | – | BFS radius for subgraph scope. Range: 1 to 4. Required for subgraph scope. |
query | string | No | – | Query string for query_neighborhood scope. |
path_nodes | string[] | No | – | Ordered node list for path scope. |
Scope Types
| Scope | Description |
|---|---|
node | Lock only the specified root nodes |
subgraph | BFS expansion from root nodes up to radius hops |
query_neighborhood | Nodes matching a query activation |
path | An ordered list of nodes forming a path |
Example Request
{
"jsonrpc": "2.0",
"id": 4,
"method": "tools/call",
"params": {
"name": "lock_create",
"arguments": {
"agent_id": "jimi",
"scope": "subgraph",
"root_nodes": ["file::chat_handler.py"],
"radius": 2
}
}
}
Example Response
{
"lock_id": "lock_jimi_001",
"scope": "subgraph",
"baseline_nodes": 1639,
"baseline_edges": 707,
"graph_generation": 42,
"created_at_ms": 1710300000000
}
Limits
- Max locks per agent: configurable (default: 10)
- Max baseline nodes: configurable (default: 5000)
- Max baseline edges: configurable (default: 10000)
- Total memory budget shared with perspectives
When to Use
- Change monitoring – lock a region before making changes, then diff to see what changed
- Multi-agent coordination – lock regions to detect when other agents’ changes affect your work
- Regression detection – lock a stable region and watch for unexpected changes
Related Tools
lock_watch– set automatic change detectionlock_diff– compute what changed since baselinelock_release– release the lock when done
lock_watch
Set a watcher strategy on a lock. Watchers determine when the lock automatically detects changes. Without a watcher, you must manually call lock.diff.
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
agent_id | string | Yes | – | Calling agent identifier. Must own the lock. |
lock_id | string | Yes | – | Lock to set the watcher on. |
strategy | string | Yes | – | Watcher strategy. Values: "manual" (no automatic detection), "on_ingest" (detect after every ingest), "on_learn" (detect after every learn call). Note: "periodic" is not supported in V1. |
Example Request
{
"jsonrpc": "2.0",
"id": 5,
"method": "tools/call",
"params": {
"name": "lock_watch",
"arguments": {
"agent_id": "jimi",
"lock_id": "lock_jimi_001",
"strategy": "on_ingest"
}
}
}
Example Response
{
"lock_id": "lock_jimi_001",
"strategy": "on_ingest",
"previous_strategy": null
}
When to Use
- Automatic monitoring – set
on_ingestto detect changes after every code re-ingest - Learning feedback – set
on_learnto detect when learning shifts edge weights in your region - Manual control – set
manualto disable automatic detection
Related Tools
lock_diff– manually trigger a diff (always available regardless of strategy)lock_create– create the lock first
lock_diff
Compute what changed in a locked region since the baseline was captured. Returns new/removed nodes, new/removed edges, weight changes, and watcher event counts. Fast-path: if the graph generation has not changed, returns immediately with no_changes: true.
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
agent_id | string | Yes | – | Calling agent identifier. Must own the lock. |
lock_id | string | Yes | – | Lock to diff. |
Example Request
{
"jsonrpc": "2.0",
"id": 6,
"method": "tools/call",
"params": {
"name": "lock_diff",
"arguments": {
"agent_id": "jimi",
"lock_id": "lock_jimi_001"
}
}
}
Example Response (changes detected)
{
"diff": {
"lock_id": "lock_jimi_001",
"no_changes": false,
"new_nodes": ["file::chat_handler.py::fn::new_method"],
"removed_nodes": [],
"new_edges": ["chat_handler.py|new_method->stream_parser.py|calls"],
"removed_edges": [],
"boundary_edges_added": [],
"boundary_edges_removed": [],
"weight_changes": [
{ "edge_key": "chat_handler.py|stream_parser.py|imports", "old_weight": 0.5, "new_weight": 0.72 }
],
"baseline_stale": false,
"elapsed_ms": 0.08
},
"watcher_events_drained": 2,
"rebase_suggested": null
}
Example Response (no changes)
{
"diff": {
"lock_id": "lock_jimi_001",
"no_changes": true,
"new_nodes": [],
"removed_nodes": [],
"new_edges": [],
"removed_edges": [],
"boundary_edges_added": [],
"boundary_edges_removed": [],
"weight_changes": [],
"baseline_stale": false,
"elapsed_ms": 0.001
},
"watcher_events_drained": 0,
"rebase_suggested": null
}
When to Use
- After ingest – check if your locked region was affected
- After learning – check if feedback shifted weights in your region
- Periodic check – poll for changes during long sessions
- Before committing – verify no unexpected changes in the region
Related Tools
lock_rebase– re-capture baseline after acknowledging changeslock_watch– set automatic change detection
lock_rebase
Re-capture the lock baseline from the current graph without releasing the lock. Use this after calling lock.diff and acknowledging the changes – the new baseline becomes the reference for future diffs.
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
agent_id | string | Yes | – | Calling agent identifier. Must own the lock. |
lock_id | string | Yes | – | Lock to rebase. |
Example Request
{
"jsonrpc": "2.0",
"id": 7,
"method": "tools/call",
"params": {
"name": "lock_rebase",
"arguments": {
"agent_id": "jimi",
"lock_id": "lock_jimi_001"
}
}
}
Example Response
{
"lock_id": "lock_jimi_001",
"previous_generation": 42,
"new_generation": 45,
"baseline_nodes": 1645,
"baseline_edges": 712,
"watcher_preserved": true
}
When to Use
- After acknowledging changes – rebase after reviewing a diff to reset the baseline
- After stale warning – when
lock.diffreturnsbaseline_stale: true, rebase to fix it - Periodic refresh – rebase periodically in long sessions to keep baselines current
Related Tools
lock_diff– the diff that triggers a rebaselock_create– creating a new lock is an alternative to rebasing
lock_release
Release a lock and free its resources. Removes the lock state, cleans up pending watcher events, and frees memory. Irreversible.
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
agent_id | string | Yes | – | Calling agent identifier. Must own the lock. |
lock_id | string | Yes | – | Lock to release. |
Example Request
{
"jsonrpc": "2.0",
"id": 8,
"method": "tools/call",
"params": {
"name": "lock_release",
"arguments": {
"agent_id": "jimi",
"lock_id": "lock_jimi_001"
}
}
}
Example Response
{
"lock_id": "lock_jimi_001",
"released": true
}
When to Use
- Done monitoring – release when you no longer need change detection
- Memory pressure – locks consume memory proportional to baseline size
- Session end – release all locks before ending a session
- Automatic: locks are also cascade-released when their associated perspective is closed via
perspective.close
Related Tools
lock_create– create a new lockperspective_close– cascade-releases associated locks
daemon_start
Start the persisted daemon control plane. Stores watched roots, initializes daemon counters, and begins the long-lived structural monitoring lane.
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
agent_id | string | Yes | – | Calling agent identifier. |
watch_paths | string[] | No | current ingest roots | Paths the daemon should monitor. |
poll_interval_ms | integer | No | 500 | Poll interval fallback in milliseconds. |
When to Use
- Start of a long-lived agent session
- Before relying on daemon alerts or
daemon_tick - Before background/idle reconciliation should run
Related Tools
daemon_stop
Stop the daemon control plane without deleting persisted alert history.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
agent_id | string | Yes | Calling agent identifier. |
When to Use
- End of a daemon-backed session
- Before shutting down a host that should not keep reconciling
Related Tools
daemon_status
Inspect daemon liveness and runtime counters. Returns watched roots, tracked files, recent tick metrics, and alert counts.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
agent_id | string | Yes | Calling agent identifier. |
Typical Output Fields
activewatch_pathspoll_interval_mstracked_filestick_countlast_tick_duration_mslast_tick_changed_fileslast_tick_deleted_fileslast_tick_alerts_emittedalert_count
When to Use
- To verify daemon startup worked
- To inspect whether reconciliation is actually happening
- To debug daemon slowness or alert silence
Related Tools
daemon_tick
Run one explicit daemon reconciliation pass. Polls watched roots, re-ingests changed files, detects deletions, and emits drift alerts.
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
agent_id | string | Yes | – | Calling agent identifier. |
max_files | integer | No | 32 | Maximum changed files to process in one tick. |
Typical Output Fields
changed_files_detecteddeleted_files_detectedfiles_reingestedingested_files[]alerts_emittedalert_ids[]tick_at_ms
When to Use
- To force one reconciliation before reading daemon status
- To debug watched-root drift deterministically
- To reproduce daemon ingest issues outside background ticking
Related Tools
alerts_list
List persisted daemon and proactive alerts.
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
agent_id | string | Yes | – | Calling agent identifier. |
include_acked | boolean | No | false | Include already acknowledged alerts. |
limit | integer | No | 50 | Maximum alerts to return. |
When to Use
- Reviewing daemon findings after a session
- Building an alert inbox for an agent or UI
Related Tools
alerts_ack
Acknowledge one or more persisted daemon/proactive alerts so they stop resurfacing in the unread queue.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
agent_id | string | Yes | Calling agent identifier. |
alert_ids | string[] | Yes | Alert IDs to acknowledge. |
When to Use
- After reviewing or actioning daemon findings
- To keep the alert queue focused on new drift
Related Tools
edit_preview
Preview a full-file write without touching disk. Returns a diff, freshness snapshot, and validation report so the caller can inspect before committing.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
agent_id | string | Yes | Calling agent identifier. |
file_path | string | Yes | Absolute or workspace-relative file path. |
new_content | string | Yes | Candidate replacement content. |
description | string | No | Human-readable summary of the edit. |
When to Use
- Before risky writes
- When you want a two-phase edit protocol
- When a human or another agent should inspect the diff first
Related Tools
edit_commit
Commit a previously previewed edit after freshness re-check and explicit confirmation.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
agent_id | string | Yes | Calling agent identifier. |
preview_id | string | Yes | Preview handle returned by edit_preview. |
confirm | boolean | Yes | Must be true to commit the preview. |
reingest | boolean | No | Re-ingest the modified file after commit. |
When to Use
- After a human/agent approves an
edit_preview - When stale-source protection matters more than speed
Related Tools
persist
Force graph and sidecar persistence immediately.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
agent_id | string | Yes | Calling agent identifier. |
action | string | Yes | Persistence action, such as save/load semantics supported by the current implementation. |
When to Use
- Before shutdown
- Before risky host lifecycle transitions
- When you want an explicit persistence checkpoint
Related Tools
boot_memory
Persist small canonical hot-state values next to the graph without polluting larger investigation trails.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
agent_id | string | Yes | Calling agent identifier. |
action | string | Yes | Memory action (set, get, list, delete, etc.). |
key | string | No | Canonical key to address. |
value | json | No | JSON value to store. |
When to Use
- Short doctrine/state values that should stay hot
- Session bootstrapping facts an agent should retrieve quickly
Related Tools
heuristics_surface
Explain why a node or file is currently ranked as risky or important. Surfaces trust/tremor/antibody/blast-style heuristic factors in one payload.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
agent_id | string | Yes | Calling agent identifier. |
node_id | string | No | Graph node to inspect. |
file_path | string | No | File path to inspect. |
When to Use
- After
predict,validate_plan, or surgical flows rank something unexpectedly high - When an agent needs explainability before editing or escalating
Related Tools
audit
Profile-aware one-call audit over topology, scans, verification, filesystem truth, and git state.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
agent_id | string | Yes | Calling agent identifier. |
path | string | Yes | Root path to audit. |
profile | string | No | Audit profile such as auto, quick, coordination, or production. |
depth | string | No | Audit depth. |
cross_verify | boolean | No | Include graph-vs-disk verification. |
external_refs | boolean | No | Include explicit external reference discovery. |
When to Use
- First pass on an unfamiliar repo
- Long-running session orientation
- Pre-handoff or pre-merge structural review