The Commonplace
Home Papers Evidence Explore Trends Syntheses Digests References Docs 🎲 Workforce Futures
← Papers
Direction, evidence grade, and study type are AI-generated labels (gpt-5-mini), not human-verified. Syntheses are LLM-written. "Tensions" are machine-detected candidates, not confirmed contradictions. A research-acceleration tool, not peer review. How this is built →

A single, centrally hardened agent harness can make LLM-based automation auditable and governable across the enterprise by collapsing bespoke integrations into version-controlled instruction files and enforcing identity-scoped tooling and pre-execution risk checks.

Applying Anthropic Primitives at Large Enterprises: Harness Paradigm for Knowledge Work
George Juraj Salapa · August 20, 2026
arxiv descriptive low evidence 7/10 relevance Full text usable extracted full text Source PDF

Structured author observations

Linked only from stored provider relations; the raw author line above is never matched by name.

Arxiv

Latest observation:

  1. George Juraj Salapa unresolved corpus identity

Semantic Scholar

Latest observation:

  1. George Juraj Salapa provider ID
The paper proposes running a single, centrally hardened agent 'harness' unmodified across enterprise surfaces—combined with credential-scoped tooling, deployment-registered instruction files, and pre-execution risk review—to make LLM-driven automation auditable and governable at scale.

Citation observations

Cumulative provider counts captured on specific dates; providers are never combined.

Frontier models have collapsed the cost of writing custom code: a niche problem a specialist sees in their own domain now costs an afternoon. The cost of reviewing and maintaining that code hasn't collapsed. Each solution drifts from the next; understanding one means reading its codebase from scratch. Large enterprises build something centrally governed instead: at worst an off-the-shelf product, at best a graph-orchestration framework wired bespoke per use case, or a low-code platform used as the orchestrator. These are custom every time and limited in scope. Enterprises don't weigh a third option that escapes both constraints: the harness paradigm. Recent work treats the coding-agent harness as enterprise infrastructure rather than a coding tool, converging on three findings: harnesses suffice at the task level and outperform more elaborate architectures on enterprise work (arXiv:2604.00073, arXiv:2604.13107); harness choice accounts for most of the variance in agent benchmark results, more than model choice does (arXiv:2605.23950); and the gap between that finding and enterprise adoption is governance (arXiv:2605.10223, arXiv:2605.18747). We propose an architecture that closes that gap. One harness runs unmodified as the backbone; the code stays identical across every deployment, so reviewing what gets built collapses to reading its instructions file. Section 4 gives four mechanisms: credential-scoped tooling, where each backend gets one generic request tool and a scoped credential instead of a hand-built method; authorization logic outside the harness, so one artifact runs as a cron backbone, a chat-surface engine, and a terminal tool; registration is a side effect of pushing code, collapsing an audit a review of a text file. Built on microcc (<https://pypi.org/project/micro-cc/>), our reference harness.

Summary

Main Finding

A single, centrally governed "harness"—a repeatable model-in-a-loop runtime packaged once and deployed unmodified across contexts—can serve as enterprise infrastructure for model-driven knowledge work. When combined with four operational primitives (credential-scoped tooling, externalized authorization, deployment-as-registration, and a pre-judging judge-runner for risky calls), this architecture closes the governance gap that has prevented harnesses from scaling across large enterprises, collapsing review and audit effort while enabling many teams to build safely and quickly.

Key Points

  • Problem framed: model generation made custom code cheap to create, but review/understanding/maintenance costs remain high; enterprises therefore end up duplicating orchestrations, tool integrations, and governance.
  • Harness paradigm: treat the coding-agent harness as centrally engineered infrastructure (not a per-team coding tool). The harness is a single looped runtime with memory/filesystem that iterates on reasoning and composes actions at runtime.
  • Core architectural decisions:
    • Use a frontier model as the sole runtime orchestrator (no fixed design-time DAG/graph); orchestration emerges at runtime from repeated model calls.
    • Provide a single tool gateway that exposes enterprise backends through a small set of generic, credential-scoped request tools rather than one hand-written method per operation.
    • Keep authorization and policy decision logic outside the harness; control access by identity-scoped credentials and a gateway policy, not by policing per-operation calls inside the harness.
    • Make governance intrinsic to deployment: CI/CD auto-registers every solution in a solution registry; auditing reduces to reviewing version-controlled instruction files.
    • Add a judge-runner: the model flags risky calls and a freshly spawned, identical harness instance evaluates the risk before the backend is ever invoked; escalate to humans only when the judge cannot clear the call.
  • Operational components (four supporting services):
    • Tool registry/gateway: central capability layer mapping credentials to backend access.
    • Solution registry: records what was deployed, by whom, and links to instruction/config files.
    • Skill library: procedural knowledge baked into images at build time or fetched live when named "live".
    • Run-trigger endpoint: lets chat surfaces or other frontends start the same harness container on demand.
  • Developer flow: fork a reference harness repo (reference implementation: microcc), edit two text files (instructions + configuration), push; CI/CD builds container, registers, and deploys. Same harness artifact runs as cron, interactive terminal, or business-facing chat UI under one identity/governance model.
  • Motivating evidence and citations:
    • Builds on prior findings that harness choice explains more benchmark variance than model choice, and that terminal/filesystem harnesses perform well for enterprise tasks (several cited arXiv works).
    • Architecture and mechanisms were designed and evaluated in engagements across multiple European enterprises (automotive, manufacturing, FMCG, healthcare) and implemented against an Azure RBAC environment.
  • Practical tradeoffs:
    • Low-code conversational platforms retain a role as thin ingress/identity surfaces, but are not robust orchestrators for complex multi-system tasks.
    • Centralizing the harness reduces duplication and audit burden but requires careful integration with identity/access systems and CI/CD pipelines.
  • Implementation artifact: microcc (https://pypi.org/project/micro-cc/) used as the paper’s reference harness.

Data & Methods

  • Nature of evidence: systems-architecture and practitioner paper informed by multiple enterprise engagements, prototyping, and implementation rather than randomized controlled experiments.
  • Implementation details:
    • Reference harness: microcc, used as the unmodified runtime artifact in examples and pilots.
    • Cloud context: mechanisms prototyped against Azure (directory groups, management groups, role-based access control); authors claim portability to other clouds and on-premises.
    • Mechanisms demonstrated in code snippets and system descriptions (tool calling conventions, gateway discovery/call path, solution configuration and registration, run-trigger endpoint).
  • Relationship to prior literature: synthesizes and operationalizes results from several arXiv studies:
    • Terminal agents sufficing for enterprise automation;
    • Harness choice dominating model choice in benchmark variance;
    • Governance being the primary barrier to enterprise harness adoption;
    • Security-oriented work (SHarD) that converges on distributing a hardened harness artifact.
  • Limitations of the methods:
    • No large-scale quantitative outcome study or cost-benefit analysis reported in the paper.
    • Enterprise engagements are anonymized; no public dataset of deployments or controlled performance comparisons across alternative topologies presented.
    • The judge-and-gateway mechanisms mitigate but do not eliminate model failure modes (hallucination, dropped constraints, lazy heuristics) — these remain operational risks that need process and iterative instruction tuning.

Implications for AI Economics

  • Cost structure and productivity:
    • Lowers marginal cost of building bespoke automations by removing repeated integration and orchestration work across teams—reduces duplication of engineering effort and lowers time-to-market.
    • Shifts post-deployment cost profile: fewer unique codebases to audit/maintain, turning many code reviews into reading instruction/configuration files; this likely reduces governance and compliance costs at scale.
    • Because harness choice explains much performance variance, investing in harness engineering (reliable loop, tooling gateway, credential plumbing, CI/CD + registries) offers higher ROI than incremental model procurement improvements.
  • Governance, transaction costs, and latent innovation:
    • Embedding governance into CI/CD and identity-scoped tooling reduces friction for teams to build, increasing on-radar innovation and reducing shadow IT/undocumented automations.
    • Credential-scoped tooling aligns incentives: access decisions are made once per credential, reducing transactional friction for operations while preserving enforceable audit trails.
  • Labor and organizational roles:
    • New specialization: harness engineers and governance-infrastructure teams become critical; fewer custom integration engineers working in isolation.
    • Business specialists can act as effective product owners for automations (editing instructions/configs rather than writing code), potentially increasing leverage per specialist.
    • Risk of concentration of control: central harness + tool gateway concentrates power and monitoring in platform teams; governance and incentives must be designed to avoid bottlenecks or political capture.
  • Vendor and market effects:
    • Reduces reliance on low-code conversational platforms for full orchestration; these platforms may be repositioned as ingress/identity surfaces or compete to offer turnkey governance hooks.
    • Demand shifts toward hardened harness distributions, tool-gateway managed integrations, and registries — a market for enterprise harness tooling and registries may expand.
  • Macro-level effects:
    • If adopted widely, the approach could materially change the economics of enterprise knowledge work by reducing unit costs for complex cross-system tasks and increasing the rate of safe, auditable automation deployment.
    • The largest remaining economic frictions will be residual model failure modes (requiring human-in-the-loop design and testing), the upfront cost of integrating identity and secure tool gateways, and organizational change management for centralized platform teams.

Limitations and open questions for empirical research - Quantify benefits: rigorous measurement of time/cost savings, error rates, and governance burden compared to existing per-team orchestrations is needed. - Behavioral effects: how do teams adapt instruction-writing vs code-writing skills, and what governance incentives ensure responsible use? - Robustness: measure how judge-runner and credential-scoped tooling perform across a wide set of risky-call scenarios and across different cloud/identity environments.

If you want, I can (a) produce a short checklist for evaluating whether your organization should adopt this harness architecture, or (b) sketch an experiment / KPI set to measure the economic impact of adopting the harness in a single business unit. Which would you prefer?

Assessment

Paper Typedescriptive Evidence Strengthlow — The paper is an engineering/architecture proposal supported by prior literature citations and informal examples from several client engagements, but it contains no systematic empirical evaluation, quantitative benchmarks, controlled comparisons, or user studies to demonstrate causal impact on productivity, costs, or governance outcomes. Methods Rigorlow — Design decisions and mechanisms are clearly described and an implementation (microcc) is cited, but the manuscript lacks formal evaluation: no experimental design, metrics, baseline comparisons, statistical analysis, or reproducible case studies; claims rest on anecdote, example workflows, and prior related papers rather than controlled evidence. SampleDescriptive synthesis informed by unnamed engagements across several enterprise clients in Europe (sectors cited: automotive, manufacturing, FMCG, healthcare); implemented and illustrated using an internal reference harness (microcc) and evaluated conceptually against an Azure cloud environment (directory, RBAC) with several illustrative use cases (CRM triage, document checks, policy application), but no named datasets or quantitative logs are provided. Themesadoption org_design governance GeneralizabilityImplementation and examples are Azure-centric (Azure AD/RBAC) which may affect details of deployment on other clouds or on-premises identity systems., Evidence is anecdotal and example-driven; effects at scale (performance, cost, reliability) are not empirically demonstrated., Relies on current frontier model behavior (e.g., iterative reasoning, low-hallucination) so results depend on model reliability that can vary over time and across tasks., Organizational, legal, and regulatory environments differ across firms and jurisdictions; proposed governance primitives may not map cleanly to all compliance regimes., Requires engineering maturity (CI/CD, containerization, centralized registries) and centralized governance buy-in—may not generalize to smaller or less structured organizations.

Claims (11)

ClaimDirectionOutcomeConfidence & EvidenceDetails
The cost of generating custom code with frontier models has fallen substantially, but the costs of reviewing, understanding, and maintaining that code have not fallen comparably. Organizational Efficiency mixed Relative cost of code generation versus code review, understanding, and maintenance
Reading fidelity high
Study strength low
not reported
0.09
Coding-agent harnesses can suffice at the task level and outperform more elaborate agent architectures on enterprise work. Organizational Efficiency positive Performance on enterprise automation tasks relative to more elaborate agent architectures
Reading fidelity high
Study strength medium
not reported
0.18
Harness choice accounts for more variance in agent benchmark results than model choice. Output Quality positive Variance in agent benchmark performance
Reading fidelity high
Study strength medium
not reported
0.18
Governability is the principal gap between the demonstrated capabilities of coding-agent harnesses and enterprise adoption. Governance And Regulation negative Enterprise adoption readiness constrained by governance and oversight requirements
Reading fidelity high
Study strength medium
not reported
0.18
The proposed architecture allows one unchanged harness artifact to run as an unattended scheduled backbone, as the execution engine behind a business-facing chat interface, and interactively at a terminal under a single identity and governance model. Organizational Efficiency positive Cross-context deployment consistency and governance uniformity
Reading fidelity high
Study strength speculative
not reported
0.03
Credential-scoped tooling can centralize enterprise access control by giving each backend a generic request tool and a scoped, identity-bound credential, with the gateway determining which backends the model may access. Regulatory Compliance positive Access-control consistency and governance of model tool use
Reading fidelity high
Study strength speculative
not reported
0.03
Automatically registering every deployment in a lifecycle registry makes auditing an enterprise fleet of agent solutions equivalent to reviewing version-controlled instruction files. Governance And Regulation positive Auditability and visibility of deployed agent solutions
Reading fidelity high
Study strength speculative
not reported
0.03
A risky tool call can be reviewed by a freshly spawned instance of the same harness before the call reaches a backend or a human reviewer. Ai Safety And Ethics positive Pre-execution safety review of risky tool calls
Reading fidelity high
Study strength speculative
not reported
0.03
The architecture has been used to automate repeatable but complex back-office tasks, including applying policy rules to structured business records, triaging CRM requests across connected systems, and comparing supplier certificates against material norms and SAP data. Organizational Efficiency positive Automation of cross-system back-office and document-review tasks
Reading fidelity high
Study strength low
not reported
0.09
Low-code conversational platforms such as Copilot Studio provide governance and ease of deployment, but are weak orchestrators for reasoning across more than a handful of connected actions and expose an internal decision path that users cannot inspect or change. Organizational Efficiency mixed Orchestration capability, transparency, and deployment convenience of low-code conversational platforms
Reading fidelity high
Study strength low
not reported
0.09
In the cited ERP study, simple coding-agent tasks succeeded reliably without ERP-specific tooling, while increasing task complexity exposed failures involving lazy heuristics, hallucinated system state, dropped constraints, and over-confidence. Error Rate mixed Reliability and failure modes of coding-agent task execution in an ERP environment
Reading fidelity high
Study strength medium
not reported
0.18

Notes