AgenticVision
Quickstart
curl -fsSL https://agentralabs.tech/install/vision | bash
1. Install
curl -fsSL https://agentralabs.tech/install/vision | bashProfile-specific commands are listed in Installation.
2. Validate artifact path
agentic-vision-mcp -v ~/.vision.avis validate3. Inspect capabilities
agentic-vision-mcp infoExpected tool list includes:
vision_capturevision_queryvision_similarvision_comparevision_diffvision_ocrvision_linkvision_health
4. Start MCP server
$HOME/.local/bin/agentic-vision-mcp serveUse Ctrl+C to stop after startup verification.
5. Query quality-aware results
Use MCP vision_query args:
{
"description_contains": "error",
"min_quality": 0.5,
"sort_by": "quality",
"max_results": 10
}Run vision_health periodically to monitor stale captures, unlabeled captures, and unlinked memory references.
6. Enable automatic long-horizon budget enforcement
export CORTEX_STORAGE_BUDGET_MODE=auto-rollup
export CORTEX_STORAGE_BUDGET_BYTES=2147483648
export CORTEX_STORAGE_BUDGET_HORIZON_YEARS=20
export CORTEX_STORAGE_BUDGET_TARGET_FRACTION=0.85When enabled, runtime automatically prunes oldest low-value captures from completed sessions when budget pressure is detected.