Reference · The Wise Operator
The Operator's Dictionary
114 terms across the AI build stack and the wisdom traditions that frame how we use it. Every entry written from the perspective of someone who learned the concept by building, not by studying. Cross-referenced with daily editions of The Wisdom Wire.
Hub
AI & Build Terms
79 entries on the AI stack: models, agents, infrastructure, protocols, tools.
Hub
Wisdom & Mindset Terms
35 entries from Scripture, Stoic, classical, and philosophical traditions that frame how an operator uses AI.
Hub I
AI & Build Terms
The vocabulary of the AI build stack. Models, agents, infrastructure, protocols, tools, costs. Each entry framed for an operator who wants to ship, not pass an exam.
A
Agent Control Surface
The user interface that lets a human watch, approve, and redirect an AI agent that is running somewhere else, while the underlying work stays on the machine where the agent lives.
Agent Loop Cost
The compounding token cost of a tool-using agent. Each turn of the loop feeds the entire conversation history plus the tool result back into the model, so costs grow non-linearly with the number of steps. A five-step agent can cost fifteen to twenty times a single-prompt equivalent.
Agent Registry
A centralized directory that catalogs every AI agent operating within a system, assigns each one a verifiable identity, and tracks what each agent is authorized to do.
Agent Swarm
An agent swarm is a coordinated group of AI agents running simultaneously, each handling a sub-task, with results combined by an orchestrating system into a single output.
Agentic Coding
A style of software development where an AI agent writes, edits, and manages code semi-autonomously while a human operator guides the direction.
Agentic Commerce
The pattern where an AI agent, not a human, executes the search, decision, checkout, and after-sales steps of a purchase on a user's behalf.
AI Agent
An AI system that can take actions on its own, using tools and making decisions across multiple steps to accomplish a goal.
AI Pair Programming
Working alongside an AI assistant that helps you write, review, and debug code in real time as a collaborative partner.
API (Application Programming Interface)
A structured way for software systems to talk to each other, like a menu that lists what you can ask a service to do and how to ask for it.
Astro
A modern web framework designed for building fast, content-focused websites that ship minimal JavaScript to the browser.
B
Background Agent
An AI agent that runs continuously on a remote server, executing tasks on a user's behalf even when the client device is closed.
Batch Inference
A processing mode where you submit a batch of requests and the provider returns results over minutes or hours instead of seconds. In exchange, you pay fifty percent less. Anthropic and OpenAI both offer it. For non-urgent work, it cuts your bill in half.
C
Chain of Thought
A prompting technique that asks the AI to show its reasoning step by step, which leads to more accurate and reliable answers.
Claude
An AI assistant built by Anthropic, known for strong reasoning, long context windows, and a focus on safety.
CLI (Command Line Interface)
A text-based way to interact with your computer by typing commands instead of clicking buttons in a graphical interface.
Compute Commitment
A multi-year contractual promise by an AI company to spend a specified amount on a single cloud provider's compute capacity, usually tied to an investment, priority access, or dedicated hardware.
Computer-Use Model
A foundation model purpose-built to operate software the way a person does, by clicking, typing, navigating menus, and manipulating files, rather than producing chat or code.
Content Pipeline
An automated system that researches, creates, reviews, and publishes content through a series of connected steps with minimal manual intervention.
Context Engineering
The practice of designing the entire information ecosystem around an AI model (what it sees, what it remembers, what tools it can use) to produce consistently better results.
Context Window
How much an AI can 'remember' in a single conversation. Think of it as the AI's working memory.
Conversational Advertising
The practice of placing paid sponsored content inside the response surface of an AI chat product, where ads appear within the model's answer flow rather than above search results or alongside page content.
Conversational Commerce
The practice of discovering, comparing, and buying products inside a conversational AI interface rather than on a traditional website or app.
Cron Job
A scheduled task that runs automatically at a set time or interval, like a recurring alarm for your software.
Cyber-Permissive Model
An AI model specifically trained or fine-tuned to perform offensive and defensive cybersecurity tasks that standard consumer AI safety filters would normally block.
D
Default Model
The model that a chat product silently serves to users who have not specified one, rotating beneath them without notice as providers update their infrastructure.
Deployment
The process of taking your code from your local machine and putting it live on the internet where people can access it.
Drift
When an AI gradually loses track of your project's goals and starts making suggestions that don't fit anymore, usually because it's forgotten earlier context.
E
Embedded AI
The practice of AI capabilities moving into the response surface of existing productivity tools rather than living as a standalone application the user switches to.
Embeddings
A way of converting text into numbers so that AI can measure how similar or related different pieces of content are.
Environment Variables
Secret configuration values (like API keys and database URLs) stored outside your code so they stay secure and can change between environments.
F
Fine-Tuning
The process of taking a pre-trained AI model and training it further on specific data to make it better at a particular task.
Frontier Model
A frontier model is one of the most capable AI systems in existence at a given moment, advanced enough that its risks are not yet fully understood.
G
I
In-Memory Compute
A processor architecture that performs calculations directly inside the memory cells holding the data, eliminating the round trip to a separate compute unit.
Indirect Prompt Injection
An attack that hides instructions inside content an AI agent reads, such as a web page or an email, so the agent executes them as if the user had given the command.
Inference
The process of an AI model generating a response to your input, as opposed to the training phase when it originally learned.
Input and Output Tokens
Input tokens are what you send to the model. Output tokens are what the model writes back. Output is almost always priced higher than input because it requires the model to actually generate rather than just read.
L
LangChain
An open-source framework that helps developers build applications powered by language models, especially multi-step AI workflows.
Large Language Model (LLM)
An AI system trained on massive amounts of text that can understand and generate human language.
Long-Horizon Agent
An AI agent designed to sustain coherent action across many steps and long elapsed time without losing the thread of the task it was given.
M
Managed Agent
An AI agent hosted by a platform (most commonly Anthropic's infrastructure) rather than running inside a personal terminal session. A Managed Agent persists beyond the operator's session, exposes a stable invocation surface (an API call or a button in an internal app), and reaches external systems through a governed tool gateway.
Model Context Protocol (MCP)
An open standard that lets AI models connect to external tools and data sources through a unified interface.
Model Routing
The practice of sending different tasks to different AI models based on complexity, cost, and speed requirements.
N
n8n
An open-source workflow automation platform that lets you connect apps, APIs, and AI models in visual, multi-step pipelines.
No-Code
Tools and platforms that let you build applications, websites, and automations using visual interfaces instead of writing programming code.
Non-Human Identity
A credential, token, API key, service account, or OAuth grant issued to a software system, automation, or AI agent rather than to a human user, used to authenticate and authorize machine-to-machine actions inside enterprise environments.
P
Personal AI
AI configured to stay with one operator across all their tools and contexts, building a persistent memory of work patterns instead of starting fresh per session.
Plan Mode
A structured scoping process in AI coding tools that interviews you about your project before any code gets written, producing a clear plan that prevents wasted effort.
Pre-Deployment Evaluation
The practice of an outside party, often a government body, testing a frontier AI model for dangerous capabilities before it is released to the public.
Private Cloud Compute
Apple's server-side compute architecture for Apple Intelligence requests too large for on-device processing, designed so Apple itself cannot read the input.
Project Memory
Systems that help AI tools remember past decisions and project context across sessions, surviving context window resets so you don't have to re-explain your project every time.
Prompt Caching
A feature that stores a chunk of your prompt on the provider's side so repeated calls read from the cache instead of re-processing. Claude caches are one-tenth the price of fresh input tokens. Hitting the cache is the single biggest cost lever in production AI.
Prompt Engineering
The skill of writing clear, structured instructions to get better and more consistent results from AI models.
R
Repository
A project folder tracked by Git that contains all your code, files, and their complete change history.
Resend
A developer-friendly email sending service that makes it simple to send transactional and marketing emails through an API.
Retrieval-Augmented Generation (RAG)
A technique that feeds relevant documents to an AI model at query time so it can answer questions using your actual data instead of guessing.
S
Serverless
A way to run backend code without managing servers, where the cloud provider handles all the infrastructure and you only pay for what you use.
Skill
A saved instruction file that an AI tool reads each time you invoke it, producing consistent output across runs without requiring the operator to remember and retype a long prompt. In Claude Code, Skills live at ~/.claude/skills/<name>/SKILL.md and are invoked by typing /<name>.
Sovereign AI
The practice of governments running their own LLM training and inference infrastructure inside national borders to keep model weights, data, and compute under domestic jurisdiction.
Structured Output
AI responses formatted in a predictable, machine-readable structure like JSON, so other software can reliably process the results.
Subagent
An autonomous AI agent that a parent agent spawns to handle one bounded task, usually in parallel with sibling subagents, then return a structured result for the parent to synthesize.
Supabase
An open-source platform that provides a database, authentication, file storage, and API layer, often used as a backend for web applications.
Supercluster
A supercluster is a single, centrally managed collection of tens of thousands of AI-training GPUs operating as one coordinated computing system.
System Prompt
Hidden instructions given to an AI model that define its personality, rules, and behavior before the user ever sends a message.
T
Temperature
An AI setting that controls how creative or predictable the model's responses are, on a scale from 0 to 1 (or higher).
Token
The small chunks of text that AI models read and generate, roughly three-quarters of a word each.
Token Budget
A per-task, per-user, or per-month cap on how many tokens a feature is allowed to consume. Without one, costs drift upward invisibly. With one, every design decision has a known constraint.
Token Pricing
The per-million-token rate a provider charges for input and output. Expressed as dollars per million tokens. Claude Opus output is $75 per million tokens. Haiku is $5. The gap is fifteen times, which is what pricing tiers exist to navigate.
Tokens
The basic unit an AI model reads and writes. Roughly 3-4 characters of English per token, so 750 words equals about 1,000 tokens. Every API call is priced by tokens in and tokens out.
Tool Use (AI Tool Calling)
The ability of an AI model to call external functions and services during a conversation, going beyond text generation to take real actions.
Training Data
The massive collection of text, code, and other content that an AI model learns from before it can generate responses.
Transformer
A neural network architecture, introduced in 2017, that uses attention mechanisms to process sequences of tokens in parallel and powers every modern large language model.
V
Vercel
A cloud platform for deploying websites and web applications, known for seamless integration with frontend frameworks and automatic deployments from Git.
Vibe Coding
A casual approach to building software with AI where you describe what you want in plain language and let the AI handle the implementation details.
W
Wafer-Scale Engine
A processor built from an entire silicon wafer rather than smaller chips diced from one, integrating dramatically more on-chip memory and compute cores to eliminate the chip-to-chip communication bottleneck that limits conventional GPU clusters at inference time.
Webhook
An automatic notification sent from one service to another when something happens, like a doorbell that rings your code when there is news.
Hub II
Wisdom & Mindset Terms
The vocabulary that frames how an operator uses the stack. Scripture, Stoic, classical, and philosophical concepts a non-theologian builder will actually need.
A
Anachoresis
Greek for 'withdrawal' or 'retreat'; the disciplined practice of stepping back from constant availability so that judgment, prayer, and self-recovery have room to happen.
Analepsis
Greek ἀνάληψις, 'taking up,' the early-church word for the Ascension of Christ, naming the moment the risen Lord is enthroned at the Father's right hand and his mode of presence shifts from visible body to indwelling Spirit and reigning Head.
D
Diakonia
Greek for service or ministry; in the New Testament the same word covers both practical hands-on service (such as serving tables) and the ministry of the word, with the difference between the two left to spiritual discernment rather than to status.
Discernment
The ability to distinguish what is genuinely important from what merely appears important. In the biblical sense, God-given moral perception that separates signal from noise.
Dokimazo
The discipline of testing something to prove whether it is genuine before trusting it, from the Greek word for assaying metal and coins.
E
Emunah
The Hebrew concept of steadiness, firmness, and faithfulness under load, the reliability that holds a thing in place over time.
Enframing
The condition, described by philosopher Martin Heidegger, in which modern technology causes us to perceive everything, including human beings, as a resource to be ordered, stored, and dispatched on demand.
H
Hesed
A Hebrew word for steadfast covenant love, the loyal mercy that God shows his people and that he requires them to extend to one another.
Hokmah
The Hebrew word for wisdom in the Book of Proverbs. Not mere intelligence, but the God-aligned skill of living rightly in reality: knowing what to build, when to build it, and what to leave alone.
M
Magnanimity
The classical and Christian virtue of being great-souled, of pursuing greatness in a way that is rightly ordered toward the good rather than toward appetite or display.
Mammon
The name Jesus gives to wealth as a rival lord, a system of valuation that competes with the one He claims. The word names not money itself but the posture of treating money as the final measure of worth.
Martyria
Greek μαρτυρία, 'witness' or 'testimony,' the New Testament word for the first-person, embodied act of bearing public testimony to what one has personally seen and heard of Christ.
Menuchah
The Hebrew word for the deep, given rest that is the gift of God, distinct from mere cessation of activity.
Mimesis
The imitation of another's desires, strategies, or behaviors, often unconscious, in which rivals converge on identical goals precisely because each is watching and responding to the other rather than reasoning from independent first principles.
P
Paraclete
Greek paraklētos, 'one called alongside,' the Johannine title for the Holy Spirit promised by Christ as advocate, comforter, helper, and indwelling Spirit of truth.
Phronesis
The Greek word for practical wisdom, the capacity to deliberate well about what is good and expedient in the actual circumstances of a life, distinguished by Aristotle from theoretical knowledge and from craft skill.
Pleonexia
The Greek term for the disposition to grasp for more than one's share, used in classical political philosophy and the New Testament as the root vice behind structural consolidation.
Pneuma
The Greek word for breath, wind, and Spirit that runs through the New Testament Pentecost narrative, naming the Holy Spirit as the living breath of God given to the church.
Proverbs
The collected writings of Solomon, king of Israel, who asked God for wisdom above all else and received it. The foundational text on practical wisdom in the biblical tradition.
Prudence
The classical and biblical virtue of practical wisdom: the capacity to discern the right course of action in a particular situation, grounded in foresight and governed by right judgment rather than impulse.
S
Shamar
Hebrew verb meaning to keep, guard, watch over, and preserve with active intentional care; the word in Proverbs 4:23 translated 'keep thy heart with all diligence.'
Sophrosune
Greek for sound-mindedness, temperance, and self-restraint; the cardinal virtue that names the discipline of knowing what is enough and stopping there.
Stewardship
The responsibility to manage well what has been entrusted to you: your tools, your time, your projects, and the trust of the people who use what you build.
T
Techne
The Greek word for applied craft or skill, distinguished from theoretical knowledge, used in Scripture and philosophy to name the embodied capacity to make something well.
Telos
The end, purpose, or final aim a thing is ordered toward; the goal that gives an action or an institution its coherence.