Releases: leviuszen/meaning-assurance
Release list
Meaning Assurance v0.2.0 — Coding Agent Verification and Adversarial Review
Meaning Assurance v0.2.0 — Coding Agent Verification and Adversarial Review
Public Preview
Verify coding-agent task claims against frozen evidence.
Meaning Assurance separates worker claims, reviewer findings, moderated
outcomes, and human final acceptance.
简体中文发布说明:Meaning Assurance v0.2.0 — 公开预览版
Your coding agent says “done.” What evidence did it leave?
Running another coding agent is easy. The difficult part is deciding what can be
trusted:
- Did the worker stay inside the authorized scope?
- Were all declared checks actually run?
- What exact files did the reviewer inspect?
- Did a second reviewer independently verify the work or repeat the same
confidence? - Did the reviewer overstate what the evidence can prove?
- Who has authority to accept the result?
Meaning Assurance turns those questions into local task packets, frozen
evidence, explicit findings, moderated outcomes, and a human-controlled final
decision.
Agents propose. Evidence is verified. Humans decide what to accept.
What is new in v0.2.0
A decision trail in one command
powershell -NoProfile -ExecutionPolicy Bypass -File .\scripts\Run-Demo.ps1The deterministic demo requires no API key, launches no live model, and does not
modify an existing repository. It shows:
Worker claim: COMPLETE
Evidence: one declared test is missing; one changed file is outside scope
Review outcomes: 2 confirmed, 1 rejected, 1 not testable
Final acceptance: BLOCKED
The demo writes a SHA-256 evidence manifest so the copied fixture can be
inspected.
A README built for first contact
- problem-first opening;
- one-command demo before installation;
- a real first-party audit before protocol detail;
- a compact mechanism diagram;
- explicit “is / is not” boundaries;
- English as the global primary entry; and
- a complete Simplified Chinese counterpart.
A real first-party evidence case
The repository publishes a curated record of a real Claude Code strategy review
against nine frozen public files. Codex challenged the reviewer and moderated
ten outcomes:
5 confirmed · 2 rejected · 2 duplicate · 1 not testable
The case is internal dogfooding. It is not third-party validation,
certification, or proof of product effectiveness.
Public identity and compatibility
- Canonical product brand: Meaning Assurance
- Chinese audience-facing alias: AI 对抗审计助手
- Public author: LEVIUS
The public repository was renamed from agent-workbench to
meaning-assurance on 2026-07-29. v0.2.0 intentionally retains these
compatibility identifiers:
.agent-workbench
AGENT_WORKBENCH_HOME
Install-AgentWorkbench.ps1
existing task, discussion, and evidence field names
Core protocol
Meaning Assurance provides:
- bounded task and discussion packets;
- isolated Git worktrees for implementation workers;
- frozen, inventoried, and hashed review references;
- blind Round 1 and targeted Round 2 review;
- required and optional reviewer gates;
- canonical results and invalid-output quarantine;
- PID-backed invocation leases;
- evidence-based moderation with
confirmed,rejected,duplicate, and
not-testableoutcomes; - visible unresolved disagreement; and
- no automatic merge or patch application.
This is a role protocol, not a fixed agent trio. The current formal
non-interactive adapters are Claude Code and Reasonix. Other runtimes require an
implemented adapter and must not be described as built-in support.
Install
$env:AGENT_WORKBENCH_HOME = Join-Path $env:LOCALAPPDATA "AgentWorkbench"
powershell -NoProfile -ExecutionPolicy Bypass `
-File .\scripts\Install-AgentWorkbench.ps1Live provider credentials remain managed by the agent CLI. Meaning Assurance
does not store provider API keys.
Verification status
For this release:
- All 18 repository tests pass under Windows PowerShell 5.1.
- All 18 repository tests pass under PowerShell 7.
- The deterministic demo passes cold-start and no-overwrite tests under both
PowerShell versions. - Gitleaks 8.30.1 reports no leaks in the complete reachable Git history or the
current working tree. - Public-email, private-path, bilingual, link, and claim-traceability checks
pass locally.
These statements are bounded verification evidence, not independent validation
or a guarantee that the protocol produces a correct decision. See the
verification record.
Important boundaries
- Windows and PowerShell are the only tested host environment.
- A Git worktree is file isolation, not an operating-system sandbox.
- Frozen evidence can show what a reviewer received; it cannot prove that the
evidence was sufficient. - Reviewer agreement is not proof.
- The protocol does not guarantee correct code or correct decisions.
- No UI, hosted control plane, automatic merge, telemetry service, or provider
key store is included.
See Current Limitations,
Privacy,
and Security.
Author and contact
- Author ID: LEVIUS
- Public contact: agentworkbench@proton.me
Licensed under the Apache License 2.0.
Agent Workbench v0.1.0 - Public Preview
Agent Workbench v0.1.0 - Public Preview
A lightweight local control layer for strategy, adversarial review, read-only analysis, and bounded external work, with every handoff kept controllable, inspectable, and traceable.
Agent Workbench v0.1.0 is the first public preview of a local-first, file-backed harness for delegating bounded work to CLI coding agents and reviewing their output before any change is accepted.
简体中文发布说明:Agent Workbench v0.1.0 - 公开预览版
Why This Release Exists
Launching another coding agent is easy. The difficult part begins when that agent becomes part of real engineering work:
- How do you delegate implementation without letting a worker edit the source workspace directly?
- How do you know which files a reviewer actually saw?
- How do two reviewers stay independent in Round 1 and focus on real disagreements in Round 2?
- How do you avoid launching a duplicate worker when the caller times out but the original process is still running?
- How do you force a multi-agent discussion to end with an evidence-based moderator decision instead of another pile of feedback?
Agent Workbench addresses these situations with inspectable task packets, isolated Git worktrees, frozen review evidence, explicit reviewer gates, and human-controlled final decisions. It is designed for developers who need a governed handoff between a controller, implementation workers, reviewers, and the human decision maker.
A Role Protocol, Not A Fixed Agent Trio
Agent Workbench does not require one permanent combination of agent brands. Its mechanism separates four roles:
- Controller: owns the main conversation, creates task or discussion packets, and moderates results.
- Worker: performs a bounded implementation task in an isolated workspace.
- Reviewer: challenges code, plans, or evidence without accepting its own output.
- Human decision maker: authorizes scope and retains the final decision.
One setup may use Codex as the controller with Claude Code and Reasonix as external workers or reviewers. Another controller could drive the same file and state protocol and dispatch different agents after suitable adapters are implemented.
The v0.1.0 package includes formal non-interactive adapters for Claude Code and Reasonix, and some canonical moderator filenames remain Codex-oriented. OpenHands and other agent runtimes are architectural extension points, not supported built-in adapters in this release.
Lightweight And Fast To Adopt
Agent Workbench is designed for users who want to govern the agents they already have instead of standing up another multi-agent platform.
- No server, database, message broker, separate UI, or hosted control plane is required.
- Installation copies local PowerShell scripts and skill files into a runtime folder.
- Existing CLI agent credentials and provider configuration remain with those CLIs.
- Workflow state is ordinary Markdown, JSON, JSONL, logs, and Git diffs that can be inspected with familiar tools.
- A controller can call the script entrypoints directly; a new agent runtime can join by implementing the required adapter and artifact contracts.
"Fast" here means faster to install, understand, and introduce into an existing CLI-agent workflow. It is not a claim that model inference or task execution is faster than another product.
One Mechanism, Multiple Collaboration Modes
- Strategy and decision support: structure a question, freeze relevant evidence, compare recommendations, and preserve the final decision.
- Adversarial discussion: run blind Round 1 review, moderator synthesis, and targeted Round 2 challenge.
- Read-only review: ask external reviewers to inspect code, plans, articles, or bounded evidence without editing the source workspace.
- Bounded external work: dispatch implementation, research, comparison, or review tasks to an isolated worker path.
- Human escalation: stop after unresolved material disagreement and ask the user to choose the direction.
Controllable, Inspectable, Traceable
- Controllable: explicit task scope, declared roles, required reviewer gates, isolated worktrees, and no automatic merge.
- Inspectable: canonical outputs,
status.json, reviewer findings, Git status, diffs, and visible unfinished states. - Traceable: frozen reference snapshots, inventories, hashes, run logs, invocation leases, moderator synthesis, and final decision files.
Where It Helps
- Bounded implementation: send a focused code task to an external worker while keeping the source branch untouched.
- Independent review: give multiple reviewers the same frozen evidence bundle and preserve separate canonical findings.
- Disagreement resolution: use blind Round 1 review, targeted Round 2 challenge, moderator synthesis, and user escalation when the evidence does not converge.
- Timeout recovery: inspect process leases and canonical outputs before deciding whether a retry is safe.
- Durable handoff: keep tasks, review evidence, diffs, status, and decisions in local files instead of relying on chat memory.
The project is Windows-first and PowerShell-based. It intentionally does not merge or apply agent changes automatically.
Highlights
- Bounded task packets: assignments, context, expected outputs, state, and logs live in one inspectable folder.
- Isolated implementation workers: Claude Code and Reasonix edit a dedicated Git worktree rather than the source workspace.
- Frozen review evidence: reference files are copied, inventoried, size-checked, and hashed when a discussion is created.
- Structured adversarial review: blind Round 1 review can be followed by a targeted Round 2 challenge instead of a repeated review.
- Explicit completion gates: missing canonical reviewer files, missing moderator synthesis, and unresolved disagreement remain unfinished states.
- Evidence-based moderation: reviewer agreement is not treated as proof; findings are confirmed, rejected, deduplicated, or marked not testable.
- Duplicate-run protection: PID-backed invocation leases distinguish an active worker from a failed or stale invocation.
- No automatic merge: workers produce code and evidence, but the controller and human retain the acceptance decision.
Quick Example: Dual Read-Only Review
$WorkbenchRoot = $env:AGENT_WORKBENCH_HOME
$ReferenceFile = (Resolve-Path ".\examples\sample-design-note.md").Path
$params = @{
WorkbenchRoot = $WorkbenchRoot
Slug = "cache-policy-review"
Topic = "Review a cache invalidation proposal"
Question = "Which assumptions could make this proposal fail?"
Context = "Use only the frozen reference snapshot. Do not edit source files."
Mode = "strategy-review"
Protocol = "adversarial-discussion"
AuditProfile = "scientific"
Agents = @("claude-code", "reasonix")
ReferencePaths = @($ReferenceFile)
ReviewerLenses = @{
"claude-code" = "implementation feasibility and hidden coupling"
"reasonix" = "evidence quality and falsification"
}
}
$DiscussionFolder = & (Join-Path $WorkbenchRoot "scripts\New-AgentDiscussion.ps1") @params
& (Join-Path $WorkbenchRoot "scripts\Invoke-ClaudeFeedback.ps1") `
-DiscussionFolder $DiscussionFolder -Round 1 -Collect
& (Join-Path $WorkbenchRoot "scripts\Invoke-ReasonixFeedback.ps1") `
-DiscussionFolder $DiscussionFolder -Round 1 -CollectThe controller then checks the canonical feedback files, writes codex-synthesis.md, asks only targeted Round 2 questions when needed, verifies the findings, and writes decision.md or user-decision-needed.md.
Quick Example: Isolated Implementation Worker
$WorkbenchRoot = $env:AGENT_WORKBENCH_HOME
$Repository = (Resolve-Path ".\sample-repository").Path
$TaskFolder = & (Join-Path $WorkbenchRoot "scripts\New-AgentTask.ps1") `
-WorkbenchRoot $WorkbenchRoot `
-Slug "validate-config" `
-TargetAgent claude-code `
-Mode implementation `
-WorkspaceRoot $Repository `
-Task "Add a focused configuration validation check and its tests." `
-Context "Change only the configuration module and its focused tests."
& (Join-Path $WorkbenchRoot "scripts\New-AgentWorktree.ps1") `
-WorkbenchRoot $WorkbenchRoot `
-TaskFolder $TaskFolder `
-WorkspaceRoot $Repository `
-Slug "validate-config"
& (Join-Path $WorkbenchRoot "scripts\Invoke-AgentTask.ps1") `
-TaskFolder $TaskFolder -CollectThe collector exposes the canonical result and isolated worktree diff for review. It does not merge the worker branch.
See docs/EXAMPLES.md for complete synthetic walkthroughs, expected artifacts, Round 2 moderation, retry behavior, and cleanup guidance.
Safety And Privacy Model
- Agent output is treated as untrusted evidence, not an accepted decision.
- A Git worktree isolates repository changes; it is not an operating-system sandbox.
- Agent Workbench does not add telemetry or a hosted control plane.
- Configured CLI agents may communicate with their own providers under their own settings and terms.
- Runtime folders can contain prompts, source snapshots, paths, diffs, and model output. Keep them outside the source checkout and review artifacts before sharing.
- Secret and path redaction is defense in depth, not a guarantee.
Install
$env:AGENT_WORKBENCH_HOME = Join-Path $env:LOCALAPPDATA "AgentWorkbench"
powershell -NoProfile -ExecutionPolicy Bypass -File .\scripts\Install-AgentWorkbench.ps1The installer preserves existing tasks, bugs, worktrees, and discussions folders during upgrades.
Verified In This Release
- All 15 repository tests pass locally under Windows PowerShell 5.1.
- GitHub Actions passed all 15 repository tests under both Windows PowerShell 5.1 and PowerShell 7 on the release commit.
- Tests use temporary repositories and fake agent executables; live provider credentials a...