- Skill
- A reusable instruction packaged for an AI coding agent so it can perform a specific task or workflow on demand, invoked by name within a session.
- Context window
- The total span of tokens an AI model can consider at once, including the conversation history, file contents, and tool outputs accumulated during a session.
- Token
- The basic unit of text an AI model processes, roughly a word or word fragment, used to measure both input size and pricing.
- Harness
- The application or interface that wraps an AI model and adds tools, file access, and session management, such as Claude Code, Codex, or Copilot CLI.
- Claude Code
- Anthropic's command-line coding agent that runs Claude models with tool access for reading files, editing code, and executing shell commands inside a project.
- Attention
- The mechanism a language model uses to weigh relationships between tokens when generating output; performance degrades as more tokens compete for focus.
- Compact
- A built-in command that summarizes a long conversation into a condensed recap and starts a fresh session seeded with that summary, freeing up context space.
- Auto compact buffer
- An automatic safeguard that triggers compaction when a session approaches the end of its context window, preventing the agent from running out of room mid-task.
- Handoff
- A pattern where one agent session writes a compressed markdown briefing so a separate fresh session can pick up a specific scoped task without inheriting the full prior context.
- Session
- A single continuous conversation with a coding agent, bounded by its own context window and history, distinct from other parallel or sequential conversations.
- Sub agent
- A secondary agent spawned by a parent agent to handle a focused task in its own context window, returning a compressed result to the parent when done.
- Grilling
- A planning technique where an agent interrogates the user with successive questions to surface requirements and edge cases before any code is written.
- Grill with docs
- A variant of the grilling pattern where the agent reads provided documentation first, then asks targeted questions informed by what it learned.
- PRD
- Product requirements document — a written specification that describes what a feature should do, who it serves, and what success looks like.
- AFK agent
- An away-from-keyboard agent, meaning a coding agent left to run autonomously on a long task while the user steps away.
- tldraw SDK
- A developer toolkit for embedding an infinite-canvas drawing and diagramming surface into web applications.
- Codex
- OpenAI's coding agent that competes with Claude Code, used from the terminal to read, write, and run code with model assistance.
- Copilot CLI
- GitHub's command-line coding assistant that brings Copilot's model-driven help into the terminal for shell and code tasks.
- PII
- Personally identifiable information — data such as names, emails, or addresses that can identify a real person and should be kept out of shared artifacts.
- Adversarial review
- Having a second agent or model critique the first agent's output to catch flaws, blind spots, or weak reasoning the original missed.