Core Disciplines

How engineers reason across the handbook.

The chapters teach in sequence. The disciplines are the lenses used across that sequence when reviewing AI system decisions.

Discipline

Prompt Engineering

Turns system intent into maintainable instruction interfaces.

Owns

  • instruction hierarchy
  • output contracts
  • refusal and abstention behavior
  • prompt versioning

Use this lens when a behavior change appears to be a wording change but actually changes product responsibility.

Read related chapter

Discipline

Context Engineering

Controls what information the model receives for a task.

Owns

  • source selection
  • permission-aware retrieval
  • freshness and provenance
  • memory and context lifecycle

Use this lens when correctness depends on what the model knows, what it should not know, or what source it should trust.

Read related chapter

Discipline

Harness Engineering

Wraps model capability in deterministic runtime control.

Owns

  • orchestration
  • validation
  • retries and fallbacks
  • state transitions and escalation

Use this lens when the system must decide whether to accept, retry, route, escalate, or stop.

Read related chapter

Discipline

Evaluation Engineering

Converts expected behavior into evidence for shipping and changing the system.

Owns

  • scenario suites
  • golden datasets
  • human rubrics
  • regression and online quality signals

Use this lens when a team says the system works but cannot show evidence matched to risk.

Read related chapter

Discipline

Agent and System Architecture

Designs responsibility boundaries across models, tools, humans, and workflows.

Owns

  • system decomposition
  • tool authority
  • human-in-the-loop boundaries
  • reference architecture fit

Use this lens when adding autonomy, connecting tools, or choosing between RAG, copilot, agent, and workflow patterns.

Read related chapter

How to use them

Use disciplines to locate responsibility.

  1. Which discipline owns the failed behavior?
  2. Which discipline is being overloaded because another one is missing?
  3. Which discipline supplies the evidence that the change is safe?
  4. Which discipline must review the next increase in autonomy, exposure, or blast radius?