Reference · The Wise Operator
The Operator's Dictionary
144 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
93 entries on the AI stack: models, agents, infrastructure, protocols, tools.
Hub
Wisdom & Mindset Terms
51 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 Client Protocol
An open protocol that lets AI coding agents communicate with editors and IDEs in a standardized way, so the same agent can run inside Cursor, Devin Desktop, Zed, or any other compliant client.
Agent Confidence Score
A calibrated reliability rating attached to an AI agent's output, used to decide whether the result is safe to ship or must be routed to a human reviewer.
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 Browser
A web browser whose default surface is an AI agent that takes multi-step actions on the user's behalf across pages, not just a search box or a chatbot stapled to the sidebar.
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.
Agentic Workforce
The staffing pattern in which AI agents are counted alongside humans as productive units of an enterprise's labor capacity, with managers allocating work to whichever resource is faster, cheaper, or available.
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.
Ambient Agent
An AI agent that runs persistently in the background of a workspace, watches the user's activity without being prompted, and takes initiative on what it sees.
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.
Autonomous Software Engineer
An AI system sold as a unit of engineering labor rather than a coding assistant: you assign it a task and it plans, writes, tests, and submits the work for review on its own.
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 Credentials
A cryptographically signed provenance record that travels with a piece of media to say how, when, and by whom it was created or modified, including whether AI was involved.
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.
Dynamic Workflow
A JavaScript orchestration script that Claude writes and a runtime executes to fan a complex task across tens to hundreds of parallel subagents, keeping intermediate state outside the conversation.
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 Lab
A small set of AI organizations training and operating the largest, most capable models at the boundary of current research, with the compute and capital to push that boundary forward.
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.
Memory Consolidation
The background process by which an AI assistant rewrites and merges short-term context, saved facts, and prior chats into a smaller, cleaner, longer-lived store the model can use later.
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
Recursive Self-Improvement
The threshold at which an AI system can autonomously design, train, and ship a more capable version of itself, with each new generation authored by the previous one rather than by human engineers.
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
Safety Classifier
An in-model mechanism that detects when a query falls into a high-risk category and reroutes it to a safer model or refuses it outright.
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
Akeraios
A Greek word meaning unmixed, undivided, or without guile, used in Scripture for an innocence that is whole rather than naive, the quality translated 'harmless' in Matthew 10:16.
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.
Anamnesis
From the Greek anamnesis, the calling-to-mind that is also a making-present; covenantal remembrance, distinct from mere recall, as in 'this do in remembrance of me.'
Anavah
The Hebrew word for humility, understood as a clear-eyed assessment of one's standing and a posture of receptive yielding, not self-erasure.
Autarkeia
The Greek noun for self-sufficiency, used by the Stoics as the goal of a virtuous life and by Paul as the contentment that is learned in Christ rather than supplied by circumstance.
Avodah
The Hebrew word that holds work, service, and worship in a single term, naming labor as vocation rather than mere output.
C
Circumspection
The practical wisdom of looking carefully around oneself before acting, weighing the ground, the moment, and the consequences of the next step.
Counsel
The biblical and classical practice of seeking the considered judgment of those who know what the ruler or operator does not, especially before consequential action.
Covetousness
The inward posture of perpetually reaching for the next holding or advantage, which the Hebrew prophetic tradition treats as the disordered root of structural consolidation rather than a private moral failing.
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.
Enkrateia
Greek for self-mastery: the active exercise of inner rule over one's own power, distinct from temperate disposition.
G
God
The English word for the supreme being, derived from Proto-Germanic *gudą. In the Christian tradition: the self-existent I AM (יהוה), the Logos made flesh in Christ, the ground of all being from which wisdom, purpose, and reality itself originate.
Gregoresis
The Greek word for watchfulness or vigilance, used in the Gospels to name the posture of a servant who stays alert while the master is away.
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.
Hireling
The biblical figure of a paid laborer who guards a flock he does not own, contrasted in John 10 with the shepherd who lays down his life for the sheep; the type of every worker whose stake in the work ends when the wages stop.
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.
K
Kairos
The Greek word for the right or opportune moment, distinct from chronos, the sequential time a calendar tracks.
Koinonia
Greek for communion, fellowship, or participation; in the New Testament the word the church uses for the real sharing that joins believers to Christ and to one another through the Eucharist, the Spirit, and common life.
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.
Parresia
Greek for bold, open, public speech, saying what is true in the open square without fear, especially when the cost of saying it is real.
Perichoresis
A Greek theological term for the mutual indwelling of the Father, Son, and Holy Spirit, naming the doctrine that the persons of the Trinity exist in such complete communion that the life of each is the life of the other two.
Philarguria
The Greek New Testament word translated 'love of money,' naming a disordered affection that bends a person's center of gravity toward accumulation.
Phragmos
Greek for hedge, fence, or partition wall, used in Scripture to name the protective boundary that surrounds something valuable or contested.
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
Talanton
The Greek word for a unit of weight and the largest unit of currency in the ancient Mediterranean, used in the Parable of the Talents to name the capability a master entrusts to a steward for return.
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.