Tools & Frameworks
13 concepts

Safetensors
A secure binary file format for storing ML model weights that prevents arbitrary code execution, now the industry standard under the PyTorch Foundation.

Claude Code
Anthropic's terminal-based AI coding assistant that operates as a multi-agent runtime for autonomous software engineering across entire repositories.

Programmatic Tool Calling
Anthropic's replacement for JSON function calling — Claude executes code blocks to invoke multiple tools dynamically, eliminating round-trip overhead.

Semantic Chunking
Splitting documents into meaning-preserving segments based on topic boundaries rather than fixed character limits — improving RAG retrieval accuracy by 20-40%

Vector Database
A specialized database for storing and searching embedding vectors, enabling semantic similarity search

Agent Browser Protocol (ABP)
Open-source custom Chromium that pauses the web between AI agent steps, achieving 90%+ reproducible automation success.

Model Context Protocol (MCP)
Open standard for connecting AI to external tools — now embedded in browsers, CLIs, and websites via WebMCP, though cross-source data queries remain a challenge.

State Machine Guardrails
A deterministic agent control technique that restricts available tools to those relevant to the current workflow phase, preventing destructive actions and reasoning loops without relying on model judgment.

ActTail
A global activation sparsity method that optimizes LLM inference by intelligently allocating compute budgets based on the statistical properties of Transformer weights.

Composio
An open-source integration platform that connects AI agents to over 1,000 external tools, handling complex API routing and secure authentication.

Context Rot
The gradual degradation of AI agent performance as a session accumulates tokens, causing the model to lose focus on earlier instructions and constraints.

ITBench-AA
An AI agent benchmark testing incident response on real Kubernetes infrastructure, revealing that frontier models like Claude Opus 4.7 and GPT-5.5 resolve fewer than 50% of production failures.

Deterministic Agent State Machine
An AI agent architecture that governs execution through predefined states and tool-gating rules rather than LLM judgment, physically preventing destructive or out-of-order actions and dramatically improving production deployment rates.