Most enterprise agent roadmaps were written with one assumption at their centre: the primary consumer of agentic AI capacity would be engineers. Developer productivity tools, code review pipelines, test generation workflows. The infrastructure was sized for that audience, the governance frameworks were written for that use case, and the success metrics were defined accordingly. Usage data from Claude Cowork tells a different story. Over ninety percent of agentic sessions on that platform involve non-engineering knowledge work: financial reconciliation, contract review, client deliverable preparation, research synthesis. The engineering use case is real, but it is not the dominant one. Technical leaders who have not yet recalibrated their agent strategy around this reality are building for the wrong workload.
Companion piece to our broader work on production agent architecture. See Enterprise Agent Context: Architecture & Design Patterns for why agents fail without system context and how dependency-aware reasoning changes the design calculus.
What Knowledge Work Agents Actually Do
Financial and Legal Workflows
The sessions that dominate real-world agentic usage share a structural profile that differs meaningfully from code generation. They involve multi-document reasoning across sources that were not designed to interoperate. A financial reconciliation task might require an agent to hold context across a general ledger export, a set of bank statements, and a prior-period variance report simultaneously. A contract review workflow requires the agent to track defined terms, cross-reference obligations across clauses, and flag deviations against a standard playbook.
These are not simple retrieval tasks dressed up as agent work. They require the agent to maintain a coherent working model of a problem across many retrieval steps, update that model as new information surfaces, and produce output that a human professional can act on directly. The failure mode is not usually a wrong answer in isolation. It is a subtly inconsistent answer that a domain expert would catch but an automated evaluation pipeline would not.
Content and Deliverable Preparation
Client deliverable preparation follows a similar pattern. An agent assembling a market analysis brief needs to synthesise information from internal research notes, external data sources, prior deliverables, and real-time search results. The output is not a code artefact with a test suite. It is a document that will be read by a client who has expectations about structure, tone, and completeness.
This places demands on the agent that have no analogue in developer tooling. The agent must understand what a finished deliverable looks like in a given professional context, not just what information is technically correct.
The Cross-Tool Orchestration Problem
Knowledge work agents do not operate inside a single system. They move across tools that were built independently, have different authentication models, and expose different data schemas. A single reconciliation session might touch an ERP system, a cloud storage layer, a spreadsheet environment, and an email client. Each transition is a potential failure point.
The orchestration layer that manages these transitions needs to handle more than API calls. It needs to track which tool produced which piece of information, maintain provenance across the session, and surface that provenance to the human reviewer at the end. Without provenance tracking, the human reviewing the output cannot efficiently verify the agent's reasoning. Without efficient verification, trust does not accumulate and adoption stalls.
The practical implication is that cross-tool orchestration for knowledge work requires a different design philosophy than for code pipelines. Code pipelines have deterministic success criteria. Knowledge work outputs are evaluated by professional judgment, which means the orchestration layer must produce outputs that are structured for human review, not just for downstream system consumption.
Session Persistence and the Between-Touchpoints Problem
Developer-facing agents are typically session-scoped. The engineer initiates a task, the agent completes it, the session closes. Knowledge work agents frequently operate on a different temporal model. A contract review that spans multiple document versions, or a financial close process that runs across several days, requires the agent to maintain coherent state between human touchpoints.
This is architecturally non-trivial. Naive implementations store conversation history and replay it at session resumption, which degrades performance as context windows fill and introduces inconsistency when the underlying documents change between sessions. Production deployments need explicit state management: a structured representation of what the agent knows, what it has done, and what it is waiting for, stored separately from the raw interaction log.
The organisational implication is equally significant. When an agent continues working between human touchpoints, the human returning to the session needs to be able to reconstruct the agent's reasoning quickly. That requires output formats and session summaries designed for re-entry, not just for task completion. We covered the engineering readiness conditions that make this possible in What Long-Running Agents Expose About Engineering Team Readiness.
Infrastructure Priorities That Need Reordering
If the dominant workload is knowledge work rather than code generation, several infrastructure investment priorities shift. Retrieval infrastructure needs to handle heterogeneous document types with high fidelity, not just code repositories and structured data. Evaluation frameworks need to incorporate domain-expert review loops, because automated metrics are insufficient for assessing professional-quality document outputs.
Compute allocation also looks different. Knowledge work sessions tend to be longer and involve more retrieval operations per session than code generation tasks. Capacity planning based on developer productivity benchmarks will systematically underestimate the resource requirements of a knowledge worker population using agents at scale.
Governance frameworks need to account for the fact that knowledge work outputs often have regulatory or contractual implications. A contract review agent that misses a material clause, or a reconciliation agent that propagates an error into a financial report, creates liability that a code review agent typically does not. The governance layer needs to reflect that asymmetry.
Organisational Readiness for the Actual Workload
The teams who will use knowledge work agents most intensively are not engineering teams. They are finance, legal, operations, and client services functions. These populations have different relationships with AI tooling, different tolerance for error, and different mental models of what an agent is doing on their behalf.
Deploying agents into these populations without investing in workflow redesign and professional training produces a specific failure pattern: the agent gets used for low-stakes tasks while the high-value workflows it was intended to support remain manual. The productivity gains never materialise because the agent was never properly integrated into the professional's actual work process.
The technical leader's role here is not to build the training programme. It is to ensure that the agent infrastructure produces outputs that are reviewable, that the session persistence model supports professional workflows rather than forcing them into a chat paradigm, and that the evaluation data coming back from knowledge worker usage is feeding into model and system improvement cycles.
Where Vector Labs Fits
We design and build production agent systems with the context management, cross-tool orchestration, and human review interfaces that knowledge work deployments require. Our work on the AI screening tool for a recruitment software platform demonstrates how we structure multi-source reasoning pipelines that produce outputs reviewable by domain professionals rather than just downstream systems. If you are recalibrating your agent strategy around knowledge worker populations, we are worth talking to: vector-labs.ai/contacts.
FAQs
The practical approach is to build evaluation into the professional review workflow rather than treating it as a separate QA step. When a finance analyst or contract lawyer reviews an agent output, that review should generate structured feedback that feeds back into the evaluation pipeline. Over time this builds a domain-specific benchmark grounded in professional judgment rather than proxy metrics. It requires investment in the review interface design, but it produces evaluation data that actually reflects the quality criteria that matter.
At minimum it requires separating the agent's working state from the raw interaction log. The working state should be a structured representation of the task model: what documents have been processed, what conclusions have been reached, what is still outstanding. This state needs to be versioned so that when a human re-enters a session they can see what changed since their last touchpoint. Storing only conversation history and replaying it is a common shortcut that breaks down quickly as sessions grow longer or documents are updated between sessions.
Knowledge work sessions are typically longer and more retrieval-intensive than developer productivity sessions. If your capacity model was built on developer tooling benchmarks, you are likely underestimating both session duration and the number of retrieval operations per session. We recommend running a structured pilot with a representative knowledge worker cohort before committing to infrastructure sizing, and instrumenting that pilot specifically to capture session length, retrieval call volume, and context window utilisation rather than just task completion rates.
The governance layer needs to reflect the liability profile of the output, not just the technical capability of the agent. For contract review and financial reconciliation, that means mandatory human sign-off before any agent output is treated as authoritative, clear provenance trails showing which source documents informed which conclusions, and audit logs that satisfy the evidentiary standards relevant to your industry. The agent should be positioned as producing a draft for professional review, not a final determination, and the system design should make that distinction structurally clear rather than relying on user behaviour.
This pattern usually has a structural cause rather than a cultural one. Knowledge workers default to low-stakes use because the agent's output format does not fit their professional review process for high-stakes work, or because re-entering a session mid-task is too friction-heavy to be worth it. The fix is to invest in the review interface and session re-entry experience before broad deployment, not after. If the agent can produce a structured summary of its work at any point in a session, and if that summary maps onto the professional's existing review checklist, adoption of high-stakes workflows follows more reliably.
Platform consolidation has real operational advantages, but only if the shared platform can accommodate the different session models. Developer tools are typically session-scoped and produce artefacts with deterministic success criteria. Knowledge work tools need persistent state, provenance tracking, and review interfaces designed for professional judgment. If your current platform was architected primarily for developer use cases, extending it to knowledge work is achievable but requires deliberate additions to the context management and output formatting layers. Attempting to use the same output patterns for both workloads typically serves neither well.

