← SignalRivet Research Notes
RESEARCH NOTE 001VERSION 1.018 SEPTEMBER 2026

Why Reliable AI Work Needs More Than a Good Model

Governed worker completion, machine-verifiable procedures, and fail-closed semantic validation

SignalRivet ResearchTechnical Research Note · Internal architecture validationNot peer reviewed

Abstract

AI workers can launch, execute, and terminate successfully while the requested business outcome remains incomplete, weakly evidenced, or semantically incorrect. This note describes an internal architecture designed to separate execution truth from completion truth. The system preserves a lower-level dispatcher as the source of lifecycle evidence, then applies a governed semantic gate that requires a structured completion contract, task identity, required evidence, acceptance criteria, and machine-verifiable Standard Operating Procedure (SOP) claims before overall completion can be reported as PASS. Across a bounded internal validation set, the machine-companion architecture covered 45 controlled SOPs and passed targeted routing, control, governance, procedure, coordinator, dispatcher, and harness tests. These results provide structural and synthetic evidence for the design, not blanket evidence of production effectiveness. The note concludes that model capability should be evaluated together with the surrounding task contract, tools, procedures, and evidence gates rather than as an isolated property of the model.

Keywords: AI agents · agent reliability · standard operating procedures · semantic validation · evidence · agent harnesses · task completion

1. Introduction

A recurring failure mode in agentic systems is deceptively simple: the worker finishes running, therefore the task is treated as finished. Those are not equivalent statements. A process can terminate cleanly while required evidence is absent, an acceptance condition is unmet, or the produced result does not match the requested outcome.

SignalRivet's internal BOSS architecture was changed to make that distinction explicit. The lower-level worker dispatcher remains responsible for lifecycle facts such as launch, acceptance, execution, termination, timeout, teardown, and durable task identity. A governed coordinator adds a second layer whose job is to decide whether the claimed outcome has actually been demonstrated.

Working proposition. Lifecycle completion is evidence that execution happened. It is not, by itself, evidence that the requested outcome happened.

3. System design

3.1 Separation of lifecycle and semantic completion

The governed path is intentionally layered. A lower-level dispatcher records execution facts. A coordinator then validates a structured final completion message against the task contract and routed SOP requirements.

01Lifecycle

Launch, acceptance, execution, termination, receipt.

02Completion contract

Known schema and immutable task identity.

03Evidence

Required result and acceptance fields.

04SOP validation

Procedure, control, and governance claims.

05Disposition

PASS only if all required layers pass.

Figure 1. Governed completion path. Lifecycle success is necessary but not sufficient for overall task completion.

3.2 Structured worker completion

For governed tasks, the worker receives a compact completion contract before execution. Its final message must use the schema boss.worker-completion.v1. The contract instructs the worker not to claim work, evidence, approvals, or outcomes that did not occur and to return HOLD when completion cannot be proven.

Schemaboss.worker-completion.v1
Worker obligationReturn HOLD rather than invent evidence.
Coordinator ruleMissing semantic evidence converts lifecycle PASS to HOLD.

3.3 Machine companions for SOPs

The human-readable SOP remains normative. Each controlled SOP also has a machine companion appropriate to its primary role so that the runtime can resolve, expose, and validate relevant completion claims.

Table 1. Machine-companion inventory at the time of this note.
SOP classCountMachine representation
Executable procedure27Execution graph + procedure bench
Control gate11Fail-closed control contract + boundary bench
Governance / management7Assertions, review contracts, or state machines
Total controlled SOPs4545 validated machine companions

4. Method

Validation was divided into procedure-level and integration-level checks. Procedure-level benches tested routing, control dispositions, governance state behavior, and valid terminal claims. Integration tests exercised task capsules, runtime SOP resolution, harness contracts, coordinator behavior, lifecycle dispatch, and command-line compatibility.

The validation set is intentionally described as bounded internal validation. It is structural and synthetic evidence produced against known test cases. It is not a substitute for accumulated real-task evidence.

Unit of analysisGoverned task completion path and machine-companion behavior
Evaluation typeDeterministic scenarios, integration regressions, and bounded internal canaries
Primary failure ruleFail closed when required completion or SOP evidence is missing
Promotion scopeOpt-in governed capsules carrying explicit SOP metadata

5. Results

The controlled architecture passed the targeted validation suites listed below.

Table 2. Internal validation snapshot.
Validation areaResultScope
SOP-044 operational-review routing30 / 30 PASSDeterministic review routing
Control-gate scenarios57 / 57 PASSAuthority and fail-closed boundaries
Governance scenarios45 / 45 PASSAssertions and state transitions
Procedure terminal claims93 / 93 PASSRequired procedure paths
Canonical SOP routing32 / 32 PASSTask-class routing
Coordinator dispatch tests10 / 10 PASSSemantic completion and HOLD behavior
Worker dispatcher tests20 / 20 PASSLifecycle dispatch and teardown
Harness-contract tests10 / 10 PASSTask contracts and SOP integration

5.1 Lifecycle PASS can coexist with overall HOLD

The architecture preserves the lifecycle dispatcher's result rather than rewriting it. If lifecycle execution passes but the semantic completion fails, the coordinator records the dispatcher terminal state and returns HOLD_GOVERNED_COMPLETION.

Lifecycle layerPASS

Execution completed under dispatcher rules.

Overall taskPASS only if proven

Result, evidence, acceptance, and SOP claims must validate.

Figure 2. Execution success and proven task completion are modeled as distinct states.

5.2 Observed internal completion-contract mismatch

During a local SignalRivet website integration run, the worker successfully performed filesystem work and the lifecycle layer completed. Its final structured completion payload did not satisfy the exact semantic evidence and SOP-claim contract expected by the governed coordinator. The coordinator therefore held the task rather than inferring completion.

LifecycleExecution completed
Semantic gateCompletion contract mismatch
CoordinatorHOLD_GOVERNED_COMPLETION

This case did not prove the underlying website work was incorrect. It proved that completion had not been demonstrated in the form required by the governed path. The local artifact was subsequently reviewed on separate evidence.

6. Discussion

6.1 Completion claims become more useful when they are testable

Natural-language instructions alone leave substantial discretion at the moment of completion. A structured claim contract narrows that discretion by giving the surrounding system a known object to validate.

6.2 Procedure structure is not the same as independent evidence

Machine companions can verify routing, required paths, control dispositions, and claim structure. They do not automatically make every worker-reported intermediate event independently true. High-consequence tasks still require stronger evidence from tools, tests, hashes, API responses, browser state, database state, or qualified review.

6.3 Fail-closed behavior preserves uncertainty

When semantic evidence is missing, HOLD is preferable to a false PASS. The design goal is not to maximize completion rate. It is to preserve the difference between “we have evidence” and “we have a plausible statement.”

7. Limitations

  1. The validation set does not establish blanket real-world effectiveness across task classes.
  2. Full SOP conversion does not qualify every model or worker for every governed task.
  3. Some procedure completed-node claims remain worker-reported rather than independently observed.
  4. High-consequence work still requires stronger independent evidence through competence, QA, and harness controls.
  5. Legacy workflows without explicit SOP metadata remain on their existing path and are not silently assigned procedures.
  6. Real-world cross-task effectiveness remains dependent on accumulated production evidence.

8. Implications for benchmarking

The model name is only one component of the evaluated system. Task contract, system prompt, tools, procedure representation, evidence requirements, routing, and validation architecture can materially change observed performance. This aligns with SOP-Bench's finding that agent design and procedure choice can substantially affect outcomes [2].

Evaluated system= model + instructions + tools + procedure + evidence gate + task class

Accordingly, future SignalRivet model evaluations should identify the full working configuration and report results by task class rather than collapsing everything into a single “best model” score.

9. Conclusion

A capable model can propose, execute, and describe work. A reliable operating system still needs an explicit definition of what counts as evidence that the work is complete. The governed completion architecture described here separates lifecycle truth from semantic completion, preserves uncertainty through HOLD states, and makes procedure claims more inspectable through machine companions.

The next phase is empirical rather than architectural: accumulate governed real-task evidence, convert actual failures into regression cases, and qualify workers for specific jobs based on what they repeatedly demonstrate.

References

  1. Garg, D., Zeng, S., Ganesh, S., & Ardon, L. (2025). Generating Structured Plan Representation of Procedures with LLMs. arXiv:2504.00029. arxiv.org/abs/2504.00029
  2. Subhrangshu, N., Datta, A., Nama, R., et al. (2026). SOP-Bench: Complex industrial SOPs for evaluating LLM agents. KDD 2026. Amazon Science publication page