Agentic coding
Agentic coding is software development where an AI agent plans and carries out multi-step changes, rather than only completing the next line. The agent reads the codebase, edits across files, runs commands, and checks its own work. The developer sets intent and reviews the result.
see also Coding agent , Iterative loop
Context engineering
Context engineering is the practice of curating what an agent sees before it acts: the right files, conventions, docs, and examples. Output quality tracks input context more than raw model strength. Most agent failures are missing-context failures.
see also Context window , RAG
Context window token budget
The context window is the span of text an agent can consider at once, measured in tokens. Everything the agent knows for a task has to fit inside it. Managing that budget is a core part of context engineering.
see also Context engineering