Skip to content

Pipeline Verbs & ISA

Pipeline verbs extend CTX statements with an action type — turning a simple store or call into a classified workflow step. They form the Instruction Set Architecture (ISA) that agents use to structure multi-step reasoning.

Verbs attach to the operator-plane pair with a colon separator:

OPERATOR PLANE:VERB TARGET [FILTERS] [PAYLOAD]
+m:clarify "API boundary unclear" #question
+t:escalate "security review needed" #p0
+m:handoff "parser complete, SSE needs wiring" #state

Verbs are only allowed on specific operator-plane pairs:

Operator-PlaneAllowed
+t (store tools)
+m (store memory)
+i (store inspection)
>l (call LLM)
?l (search LLM)
All others

Using a verb on an unsupported combination throws VERB_NOT_ALLOWED.

VerbPurposeExample
clarifyFlag something that needs clarification+m:clarify "API boundary unclear" #question
escalateRaise priority or hand to human+t:escalate "security vulnerability found" #p0
partialIndicate incomplete work+m:partial "auth module 60% done" #wip
handoffTransfer state to another agent+m:handoff "parser done, SSE needs wiring" #state
exitSignal completion or termination+m:exit "task complete" #done
VerbPurposeExample
checkVerify an assertion or invariant+m:check "all tests passing" #ci
edgeFlag an edge case+m:edge "null input crashes parser" #bug
cross_refReference related information+m:cross_ref "see ADR-006" #arch
patternIdentify a recurring pattern+m:pattern "retry-with-backoff used 4x" #design
scopeDefine or adjust scope+m:scope "phase 1 only covers CLI" #plan
VerbPurposeExample
applyApply a change or transformation+t:apply "run migration" #db
contextAdd contextual information+m:context "running on Node 22" #env
taskDefine a task or work item+m:task "implement SSE heartbeat" #todo
exampleProvide an example+m:example "?k auth #code ^3" #syntax
VerbPurposeExample
chatConversational message+m:chat "considering two approaches" #discussion
completeMark something as done+m:complete "auth module shipped" #milestone
embedRequest or store an embedding>l:embed "mesh decimation algorithm" model="text-embedding-3"

Verbs enable structured reasoning traces. A typical agent workflow might produce:

+m:context "reviewing PR #42 for security issues"
+m:check "OWASP top 10 compliance"
+m:edge "SQL injection possible in search endpoint"
+m:escalate "found injection vulnerability" #p0 #security
+m:handoff "security review complete, remediation needed" #state

Each statement is a discrete, parseable operation. The gateway stores the full trace, enabling replay, audit, and cross-session recall.

When agents use pipeline verbs consistently, the resulting trace becomes a cognition record — a structured log of how the agent reasoned through a problem. These traces are:

  • Stored in the memory plane with full verb classification
  • Searchable via ?m #verb @7d (find all escalations from the last week)
  • Replayable by new agents picking up a task
  • Auditable through the sidecar’s signed translations