Overview

Stable

How Pimsy turns raw model reasoning into durable, domain-specific competence across engineering, planning and financial work.

A capability is a bounded domain of work that Pimsy is expected to perform to a professional standard — not a prompt template, but a package of domain grounding, tool bindings, verification rules and escalation policy that together make an agent competent in a specific field.

A base model can produce plausible output in almost any domain. Plausibility is not competence. A capability closes the gap between the two by attaching the three things a raw model lacks: a persistent model of the domain’s state, tools that act on that state rather than describing it, and a definition of what "correct" means that can be checked before the work is presented. Everything on this page is built on the same runtime primitives documented under Agent Runtime; capabilities are how those primitives are specialised.

Anatomy of a capability#

FacetWhat it suppliesWhy the raw model needs it
GroundingA structured model of the domain the agent operates onThe model reasons over its context, not over live state it cannot see
ToolsBound actions with schemas, permissions and side-effect classesReasoning about an action is not the same as performing it safely
VerificationDomain-specific checks that must pass before output is surfacedA confident answer and a correct answer are indistinguishable from text alone
EscalationThe threshold at which the agent must hand control to a humanSome decisions are not the agent’s to make regardless of confidence

The current capability set#

Why capabilities are bounded#

It is tempting to treat an agent as a single general worker and let the model decide what any request requires. That design fails in exactly the places that matter: the model under-scopes a risky action because nothing forced it to recognise the domain it had entered. Bounding a capability means the runtime, not the model, decides that a request touching money is subject to financial verification, and that a request touching a protected branch is subject to review. The model proposes; the capability boundary is what makes the proposal safe to act on.

Last updated 2026-09-02