Understand the terms. Follow the architecture.
Explain the idea in your own words.
Architecture components3D component
Also found as: Permission gate · Authorization gateway
The independent control that checks whether a specific identity may perform a specific action on a specific resource before a tool executes it.
For exampleAllow a sandbox test run; deny a request to change production data.
Back to term index ↑
Value & measurement
Also found as: Adoption · Utilization · Actual usage
How much eligible work actually uses the AI-assisted process. Tool access or license counts alone do not measure this.
For exampleHalf of eligible test-writing work uses the assistant during the measured period.
Back to term index ↑
AI & QE essentials
Also found as: Agent · Agentic AI
A system that uses an AI model to choose steps and call tools toward a task. Its ability to propose an action is separate from permission to execute it.
For exampleA test author chooses a repository search, then asks to run a test in a sandbox.
Back to term index ↑
Architecture components3D component
Also found as: AI applications · System under evaluation
The AI-enabled product being evaluated, including its model, prompts, retrieval and tools. It is distinct from the assistant that creates tests.
For exampleA customer-support agent is the application under test.
Back to term index ↑
AI & QE essentials
Also found as: AI-assisted quality engineering
Using AI to help people design tests, investigate failures and maintain automation. People still need evidence that the resulting work is correct.
For exampleAn assistant drafts a payment test; an engineer checks its expected result.
Back to term index ↑
AI & QE essentials
Also found as: API · Tool interface
A defined way for software to request data or actions from another system. In this design, a tool call uses a bounded interface rather than unrestricted system access.
For exampleA sandbox API accepts a test artifact and returns a run identifier.
Back to term index ↑
Platform controls & operations
Also found as: Identity verification · AuthN
Checking who or what is making a request. Establishing identity does not establish permission for every action.
For exampleVerify the service identity that submitted a sandbox run request.
Back to term index ↑
Platform controls & operations
Also found as: Access decision · AuthZ · Permission
Deciding whether an identity is allowed to perform the requested action on the requested resource under the current policy.
For exampleA known service identity may read test fixtures but may not access production accounts.
Back to term index ↑
Value & measurement
Also found as: Before measurement · Comparison baseline
The measured starting point used for a comparison, including the work, people, quality and effort counted.
For exampleMeasure current test-writing and review time before introducing the assistant.
Back to term index ↑
Reading the research
Also found as: Benchmark study · Reference dataset
A defined task set and measurement method used to compare performance. Results apply to those tasks and conditions before any broader inference is made.
For exampleSuccess on a public coding set does not establish savings on the bank’s regression work.
Back to term index ↑
Value & measurement
Also found as: Capture rate · Finance-approved capture
The share of positive released capacity that can become a financial benefit through an agreed spending change in the relevant period.
For exampleAn approved reduction in contractor scope converts part of the released capacity into lower spending.
Back to term index ↑
Reading the research
Also found as: Causality · Randomized experiment · RCT
Evidence supporting the claim that an intervention changed an outcome, using a design that addresses alternative explanations. Its scope still depends on the study.
For exampleA randomized comparison estimates a tool’s effect for the studied participants and tasks.
Back to term index ↑
AI & QE essentials
Also found as: Continuous integration · Continuous delivery · Continuous deployment
Automated steps that integrate code and prepare it for release. CD can mean delivery or deployment; this site’s release path retains an explicit approval decision.
For exampleA code change triggers tests and evidence collection before an approved release.
Back to term index ↑
Reading the research
Also found as: CI · Statistical uncertainty
A range calculated by a statistical method to express uncertainty in an estimate. A 95% method is designed to cover the true parameter in 95% of repeated samples under its assumptions.
For exampleA wide interval signals that the data allow a broad range of effect sizes.
Back to term index ↑
Architecture components3D component
Also found as: Approved context · Context retrieval
The proposed component that supplies relevant, versioned material the task is allowed to access. Retrieved text remains untrusted as instructions.
For exampleSupply the approved API contract, excluding another team’s restricted customer records.
Back to term index ↑
Value & measurement
Also found as: Avoided cost · Avoided hiring
Preventing an otherwise planned cost, measured against an approved counterfactual spending plan. It differs from reducing current spending.
For exampleAbsorb planned demand without an additional hire that was in the approved workforce plan.
Back to term index ↑
Architecture components3D component
Also found as: Source systems · Repository · Pipeline
The existing tools that hold requirements, code, builds, tests and change records. They supply versioned inputs to the proposed platform.
For exampleThe repository provides a commit; the ticket system provides its acceptance criteria.
Back to term index ↑
Testing & evaluation
Also found as: Deterministic validation · Rule-based check
A check that applies fixed rules to the same inputs and conditions, producing a repeatable result. Its usefulness still depends on choosing the right rule.
For exampleAssert that an invalid payment returns status 422 and writes zero payment records.
Back to term index ↑
Platform controls & operations
Also found as: Hash · Checksum · Artifact digest
A compact value calculated from content to identify a particular version and detect changes. It does not show that the content is safe or correct.
For exampleA changed test file has a different digest, so its earlier evaluation cannot be reused as proof.
Back to term index ↑
Platform controls & operations
Also found as: Distribution shift · Behavior drift
A change in the inputs, environment or behavior that can make earlier evaluation results less representative of current use.
For exampleCustomers begin asking about a new product that the evaluation set does not cover.
Back to term index ↑
Value & measurement
Also found as: Eligible work · Addressable tasks
The share of an activity that fits the agreed AI use case and its control constraints. It is an input to the site’s savings model.
For exampleExclude tasks needing restricted data when the pilot cannot access that data.
Back to term index ↑
Testing & evaluation
Also found as: Acceptance criteria · Evaluation plan
The written agreement on what is being tested, for whom, which failures matter, how results are scored and what thresholds must be met.
For exampleRequire the payment system to reject negative amounts and create no payment record.
Back to term index ↑
Platform controls & operations
Also found as: Manifest · Versioned configuration
A record of the exact artifacts, configuration, evaluation data and checks used in an evaluation. Changes can invalidate earlier results.
For exampleRecord the model, prompt, dataset, runner and candidate digests for run EVAL-042.
Back to term index ↑
Architecture components3D component
Also found as: AI evaluator · Evaluation harness
The proposed component that runs an AI application against defined cases and scoring rules, then records its behavior and results.
For exampleCheck answer correctness, permitted tool use and refusal behavior for a support agent.
Back to term index ↑
Architecture components3D component
Also found as: Evidence log · Audit trail · Evidence record
The proposed store of linked inputs, decisions and results that lets a reviewer reconstruct what happened. Recording an outcome does not by itself make that outcome trustworthy.
For exampleLink the task, permission decision, artifact version and sandbox result in one reviewable record.
Back to term index ↑
Platform controls & operations
Also found as: Safe fallback · Rollback · Recovery
A predefined alternative when an AI step or dependency cannot safely continue. A rollback specifically restores an earlier state; a fallback may route work to a person instead.
For exampleStop the agent and send the task to a reviewer when the required context is unavailable.
Back to term index ↑
Testing & evaluation
Also found as: Missed detection · FN
A result that fails to flag a problem or positive condition that is actually present.
For exampleA scan reports no issue even though an exploitable flaw exists.
Back to term index ↑
Testing & evaluation
Also found as: False alarm · FP
A result that flags a problem or positive condition when that condition is absent. Interpret “positive” according to the task.
For exampleAn automated test reports a payment defect, but investigation finds an invalid fixture rather than a product defect.
Back to term index ↑
Testing & evaluation
Also found as: Flakiness · Non-deterministic test
A test that sometimes passes and sometimes fails without a relevant change to the code under test. Investigate causes before changing assertions or suppressing it.
For exampleA timing-sensitive test fails intermittently when a shared environment is busy.
Back to term index ↑
AI & QE essentials
Also found as: Grounded response
Connecting an AI output to the supplied source material so its claims can be checked against that material. Source support alone does not prove the source is correct.
For exampleA generated test cites the exact requirement version that defines the expected behavior.
Back to term index ↑
Value & measurement
Also found as: Cash savings · Realized savings · Budget savings
A reduction in spending recognized through an agreed Finance process. The site distinguishes this from time saved or capacity redeployed.
For exampleAn approved contract renewal costs less because less work is purchased.
Back to term index ↑
Testing & evaluation
Also found as: Holdout · Held out · Test set
Evaluation cases kept separate from the examples used to develop or tune the system, so the assessment is less influenced by those choices.
For exampleReserve unseen payment edge cases for the final pilot evaluation.
Back to term index ↑
Platform controls & operations
Also found as: Idempotency · Duplicate request
An identifier a service uses to recognize repeated requests for the same operation and avoid duplicate effects under its defined contract.
For exampleAfter a timeout, check the original run using the same key before attempting a retry.
Back to term index ↑
Testing & evaluation
Also found as: Calibration · Scoring rubric · Human agreement
Comparing a model judge’s scores with expert ratings on representative cases, then checking disagreement, bias and consistency.
For exampleInspect cases where the judge passes an answer that experts rate as incorrect.
Back to term index ↑
AI & QE essentials
Also found as: LLM · Language model · Generative AI
An AI model that generates or analyzes language and code from its input. A fluent response can still be incorrect.
For exampleA model writes a test from a requirement but may invent the expected result.
Back to term index ↑
Platform controls & operations
Also found as: Scoped permission · Scope · Bounded access
Giving an identity only the access needed for its task, limited by resource, action and time where possible.
For examplePermit one test run in an isolated project until the task’s authorization expires.
Back to term index ↑
Testing & evaluation
Also found as: Model-based judge · AI judge
A language model used to score an output against a rubric. Its scores need checks against expert judgment and known failure cases.
For exampleA judge scores answer completeness; experts verify whether it overlooks unsupported claims.
Back to term index ↑
Testing & evaluation
Also found as: Mutation score · Seeded fault · Mutant
Deliberately introducing small faults to check whether tests detect them. Detection adds evidence about test strength; it does not prove all real defects will be caught.
For exampleChange “reject negative amounts” to “accept negative amounts” and check that the test fails.
Back to term index ↑
Value & measurement
Also found as: Net economic impact · Net captured impact
Benefits remaining after the relevant AI, platform, evaluation, governance and other costs are deducted. State whether the result values effort or represents cash impact.
For exampleSubtract pilot costs from captured benefit; value any added effort separately from actual cash spending.
Back to term index ↑
Value & measurement
Also found as: Task efficiency · Review burden · Net effort reduction
The share of baseline human effort removed after counting AI-assisted work, review, correction and additional controls. It can be negative.
For exampleA 10-hour task becomes 6 hours of work plus 2 hours of review: net task saving is 20%.
Back to term index ↑
Platform controls & operations
Also found as: NHI · Service identity · Workload identity
An identity assigned to a service or workload rather than a person, with an owner and managed permissions.
For exampleThe test runner uses its own scoped identity instead of an engineer’s broad credentials.
Back to term index ↑
Reading the research
Also found as: Correlation · Association · Survey
Evidence from observed behavior or reported experience without assigning the intervention. Differences may reflect other factors as well as AI use.
For exampleTeams using AI report faster delivery, but may also differ in skills or platform maturity.
Back to term index ↑
Reading the research
Also found as: Effect size estimate · Single estimate
One numerical estimate of an outcome or effect. It should be read with the study’s method, uncertainty and measurement unit.
For exampleAn estimated time reduction needs its task definition and uncertainty, not only a percentage.
Back to term index ↑
Testing & evaluation
Also found as: Positive predictive value
The share of positive findings that are correct: true positives divided by all reported positives. High precision means fewer false alarms among the findings.
For exampleOf 10 reported payment defects, 8 are confirmed: precision is 80%.
Back to term index ↑
Platform controls & operations
Also found as: Indirect prompt injection · Malicious instructions
An attempt to make an AI system follow attacker-supplied instructions, including instructions embedded in retrieved material or tool results.
For exampleA repository file tells the assistant to ignore its task and disclose a secret.
Back to term index ↑
AI & QE essentials
Also found as: Quality engineering for AI
Testing and monitoring an AI application itself: its answers, use of tools, resistance to attacks and behavior when something fails.
For exampleCheck whether a support agent retrieves an allowed document and refuses an unauthorized action.
Back to term index ↑
Architecture components3D component
Also found as: AI test author · Generation runtime
The proposed execution environment that coordinates AI-assisted QE work and drafts candidate artifacts within time and cost limits.
For exampleDraft a test, request a sandbox run, and revise it using the failure evidence.
Back to term index ↑
AI & QE essentials
Also found as: QA · Quality assurance
Activities that build confidence that quality requirements will be met, including agreed processes, reviews and checks. This site uses QE for the broader engineering approach and retains QA where sources or cost models use that label.
For exampleReview whether a release followed its agreed testing and approval process.
Back to term index ↑
AI & QE essentials
Also found as: QE
Building quality into delivery through clear requirements, prevention, testing and feedback. On this site, QE includes both conventional software and AI behavior.
For exampleDefine the payment rule before writing code, test it, then monitor failures after release.
Back to term index ↑
Value & measurement
Also found as: Minimum quality · Release threshold · Guardrail
The minimum acceptable quality and safety conditions that must hold while testing a productivity improvement. Mandatory gates cannot be offset by time saved.
For exampleHold the pilot when a required payment assertion fails, even if tests are produced faster.
Back to term index ↑
Testing & evaluation
Also found as: Sensitivity · Detection rate
The share of actual positive cases detected: true positives divided by all actual positives. Measuring it requires knowing which cases truly contain the condition.
For exampleA seeded set contains 10 payment faults and the test suite detects 8: recall is 80%.
Back to term index ↑
Architecture components3D component
Also found as: Regression cases · Regression suite · Test corpus
A curated, versioned collection of cases rerun after changes to detect previously addressed failures returning.
For exampleAdd a reviewed negative-payment case after a defect investigation.
Back to term index ↑
Architecture components3D component
Also found as: Human approval · Release decision
The accountable person or process that decides whether the evidence and required approvals support release. In the demo, human approval is independent of generation.
For exampleHold the change when a mandatory check fails, even if the generated code looks plausible.
Back to term index ↑
Value & measurement
Also found as: Capacity released · Productivity capacity
Human time made available after net task savings, eligible work and actual adoption are accounted for. It may be redeployed without reducing spending.
For exampleA team uses freed hours to reduce its backlog while the payroll stays the same.
Back to term index ↑
AI & QE essentials
Also found as: RAG · Retrieval augmented generation
Finding relevant material and supplying it to a model as context for its response. Retrieval must respect the requesting identity’s permissions.
For exampleRetrieve the approved payment specification before drafting its tests.
Back to term index ↑
Architecture components3D component
Also found as: Test sandbox · Sandbox · Verification
Execution and validation inside an isolated environment with limited access and resources. Passing these checks provides evidence for review.
For exampleRun the candidate test against known good behavior and a deliberately faulty implementation.
Back to term index ↑
Value & measurement
Also found as: Sensitivity analysis · Downside · Base case · Upside
An explicit set of assumptions used to explore possible outcomes. A scenario is not a measured result or a forecast unless evidence supports that use.
For exampleCompare lower adoption or higher review effort while keeping the other model inputs fixed.
Back to term index ↑
Architecture components3D component
Also found as: Team request · Experience layer
The place where a person submits a scoped task and inspects the result. It records the request and its owner.
For exampleAn engineer asks for tests for one payment endpoint.
Back to term index ↑
Platform controls & operations
Also found as: Observability · Operational signals
Recorded operational measurements and events used to understand system behavior. Logs, timing and tool-use records can support investigation and monitoring.
For exampleTrack failed requests, tool denials, evaluation scores and cost per run.
Back to term index ↑
Testing & evaluation
Also found as: Code coverage · Branch coverage · Coverage
A measure of which parts of a system or requirement set tests exercise. High coverage does not establish that the assertions detect incorrect behavior.
For exampleA test reaches the rejection branch but never checks whether a payment was created.
Back to term index ↑
Testing & evaluation
Also found as: Oracle · Expected behavior · Independent expected result
The basis for deciding whether observed behavior is correct. It should come from an independent rule or trusted reference, rather than simply repeat the generated code’s assumptions.
For exampleThe payment specification requires HTTP 422 and no new payment for a negative amount.
Back to term index ↑
Reading the research
Also found as: External validity · Generalizability
How well a finding may apply to a different population, task or operating setting. This site requires local measurement before scaling a claim.
For exampleA student programming study may not predict an experienced team’s regression-maintenance effort.
Back to term index ↑
These are original editorial explanations of how terms are used on this site. Architecture component names describe a proposed design; examples are illustrative. “Read in context” opens the relevant explanation and its sources. For original publications, visit the document library.