Data store
the governed runtime for agent skill workflows, off the leash but on the record
npx -y skills add runxhq/runx --skill data-storeAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
What its author says it does
Copied from the file, not written here
Govern provider-agnostic data reads and state transitions through declared data-source operations, not model-authored raw queries.
SKILL.md
11.5 KB, as published. Nobody here has run it
Data Store
Operate durable event state through Runx's typed data operations. This skill gives an agent enough context to append, read, and project state without learning provider secrets, inventing queries, or depending on one storage backend.
Runx ships native SQLite and an external Redis adapter today. Other providers can implement the same exact operation contract. The boundary is stable: a declared data source exposes typed operations; the graph supplies bounded parameters; runtime configuration selects storage; and the receipt records the resource, authority, idempotency, version, digest, and redaction evidence.
Adapter selection
The operator chooses a data source at run time. The skill receives
data_source_ref and operation inputs; project or hosted configuration binds
that ref to the concrete adapter. A local development ref might be
local://runx-data-store/dev-board. A production ref might be
tenant://acme/board bound to data.postgres, data.d1, data.redis, or a
product-owned HTTP adapter.
Do not put provider logic in the domain skill. Messageboard, CRM, support, and business-ops skills ask for durable facts to be read or written; the data-source binding decides where those facts live. Switching a supported provider is a binding change, not a rewrite of the domain skill.
Each runner calls one exact native operation: data.append_event,
data.read_events, data.read_projection, or data.list_stream_heads.
Unbound local://... refs default to native durable SQLite under
.runx/data/local-sources/, with one source-scoped database file per logical
ref. There is no generic router tool, JSON fixture store, or provider selector
in the public input schema.
Adapter preference is operator configuration, not model choice. To choose Redis,
SQLite, or a hosted provider, bind the same data_source_ref through
RUNX_DATA_SOURCES or .runx/data-sources.json; do not add provider branches to
the domain skill.
What this skill does
- Reads bounded event pages, projections, and stream-head pages through exact typed operations.
- Appends state transitions with idempotency keys and expected versions.
- Reads projections, event streams, or bounded latest-stream-head pages so loops can resume from explicit state without exporting full history.
- Produces receipt-bound evidence for data source, resource, operation, params, row/event limits, versions, and output digests.
- Keeps product semantics outside the data layer. Messageboards, CRMs, billing ledgers, and support desks define their own events and reducers.
- Ships native durable SQLite and a Redis provider adapter behind the same operation envelope. SQLite append and projection reads use a constant-size rolling stream head instead of rescanning full history.
When to use this skill
- A graph needs durable state between turns, such as queue position, board state, sync cursor, review status, or approval inbox state.
- A skill must read a bounded slice of event state before deciding the next action.
- A workflow needs to append an auditable event or effect transition with optimistic concurrency.
- An operator wants one provider-agnostic shape that can move between native SQLite and a configured conforming provider without changing domain graphs.
When not to use this skill
- To let a model write arbitrary SQL, Redis commands, or database migrations.
- To export broad data sets, secrets, raw PII, or unrestricted tables.
- To hide product decisions in storage code. Domain skills still own state machines, acceptance criteria, and business rules.
- To treat a projection as independent truth when the event stream or receipt chain is available and required for review.
- To bypass payment, send, deploy, moderation, or human approval gates.
Procedure
- Identify the domain skill and transition first. The data store is a carrier, not the policy owner.
- Select the logical data source. Use
data_source_refto name the project or tenant source; let the project binding choose the adapter. Do not put raw database URLs, provider credentials, or SQL in the skill input. - Select one exact operation: append event, read events, read projection, or list stream heads. Do not synthesize raw provider commands.
- Check authority. Reads need the narrow resource/query scope; writes need the transition scope, idempotency key, and expected version unless the operation is explicitly append-only without concurrency.
- Bind typed params. Enforce row/event limits, tenant/partition keys, and redaction rules before the adapter runs.
- For writes, use optimistic concurrency and idempotency. A retry with the same idempotency key and same payload returns the existing effect; a different payload under the same key is a conflict.
- Return the operation result with resource refs, version movement, digests, redaction notes, and stop conditions. Receipts should link this data effect to the domain transition that caused it.
Edge cases and stop conditions
needs_source: the data source, resource, query name, tenant key, or schema summary is missing.needs_input: required operation params are incomplete, malformed, or not specific enough to bind a declared data-source operation.needs_authority: the caller lacks the declared read/write scope or provider grant.needs_version: a mutating operation lacksexpected_versionwhere the data source requires optimistic concurrency.conflict: the current version differs fromexpected_version, or an idempotency key is reused with different content.too_broad: the requested read lacks partition filters, exceeds limits, or asks for raw export.redaction_required: the operation would return secrets, private PII, or fields outside the declared projection.provider_unavailable: the adapter cannot reach the data source, times out, or cannot prove whether a write committed.
Output schema
All runners return runx.data.operation_result.v1:
{
"schema": "runx.data.operation_result.v1",
"data_source_ref": "local://example",
"provider": "sqlite-event-store",
"operation": "append_event",
"resource": "board_events",
"aggregate_id": "posting-123",
"status": "committed",
"before_version": 0,
"after_version": 1,
"idempotency_key": "posting-123:create",
"event_ref": "board_events:posting-123:1",
"result_digest": "sha256:...",
"projection_digest": "sha256:...",
"rows": [],
"events": [],
"redactions": [],
"stop_conditions": []
}
Provider adapters may add provider evidence under provider_evidence, but they
must not expose credentials or raw secret material.
For event streams, adapters derive a readable event_type in this order:
explicit event.type, explicit event.event_type, then
event.effect_family + "." + event.operation. Domain skills that emit the
generic runx.effect.transition.v1 packet should include effect_family and
operation on every event so readback projections say messageboard.accept,
business_ops.route, or another meaningful transition instead of data.event.
Worked example
A messageboard skill decides that posting.claimed is allowed. It emits a
domain transition packet. The graph then calls data-store.append_event with
resource board_events, aggregate id posting-123, expected version 2, and
idempotency key posting-123:claim:agent-9. The data adapter appends the event
only if the stream is still at version 2. The receipt proves the decision,
the data operation, and the new version. A later loop turn calls
data-store.read_events or read_projection to resume from the explicit board
state.
Inputs
data_source_ref(required): stable logical ref for the data source. The project or hosted binding maps this ref to the concrete adapter and provider profile.resource(required): declared resource, stream, table, keyspace, or projection name.- Runner name selects the exact operation;
operationis not an input. aggregate_id(required for event operations): stream or partition key.event(required forappend_event): domain event or transition packet.idempotency_key(required for writes): stable retry key.expected_version(required when the source enforces concurrency): current stream/resource version expected by the caller.limit(optional): maximum rows or events to return.after_version(optional forread_events): return an ascending page whose event versions are strictly greater than this value. Omit it to retain the existing latest-tail read. Compare the last returned event version withafter_versionin the result envelope to know whether another page remains.event_types(optional forlist_stream_heads): at most 20 exact latest event types. No pattern or arbitrary field queries are accepted.cursor(optional forlist_stream_heads): opaque cursor returned by the previous page. Limits are capped at 100.
Invocation examples
Durable local dogfood with the bundled default:
runx skill data-store append_event \
-i data_source_ref=local://runx-data-store/dev-board \
-i resource=board_events \
-i aggregate_id=posting-123 \
--input-json expected_version=0 \
-i idempotency_key=posting-123:create:v1 \
--input-json event='{"type":"posting.created","payload":{"title":"verify a receipt link"}}' \
--json
Production graph shape is the same at the skill boundary:
runx skill data-store append_event \
-i data_source_ref=tenant://acme/board \
-i resource=board_events \
-i aggregate_id=posting-123 \
--input-json expected_version=2 \
-i idempotency_key=posting-123:claim:agent-9 \
--input-json event='{"type":"posting.claimed","payload":{"actor":"agent-9"}}' \
--json
The production command only works once tenant://acme/board is bound to an
installed provider adapter. That binding is operator configuration and may name a
credential profile or hosted grant; it must not carry raw secrets.
Project-specific native SQLite uses the same command shape after binding the
source. data.sqlite is a runtime binding identifier, not a second executable
tool surface:
{
"data_sources": {
"tenant://acme/board": {
"adapter": "data.sqlite",
"database_path": ".runx/data/acme-board.sqlite",
"resources": {
"board_events": {
"kind": "event_stream",
"partition_key": "aggregate_id"
}
}
}
}
}
Pass that document through RUNX_DATA_SOURCES or .runx/data-sources.json.
Redis uses the same skill and graph inputs. Only the binding changes:
{
"data_sources": {
"tenant://acme/board": {
"adapter": "data.redis",
"endpoint": "redis://127.0.0.1:6379/0",
"key_prefix": "runx:{acme-board}",
"resources": {
"board_events": {
"kind": "event_stream",
"partition_key": "aggregate_id"
}
}
}
}
}
The Redis endpoint must not embed credentials. Use local unauthenticated Redis
for OSS dogfood, or put production secrets behind a runx credential profile or
hosted grant. For Redis Cluster, the binding's key_prefix must contain one
safe hash tag, such as {acme-board}, so the stream, idempotency, and head keys
touched by an append share one slot and update atomically. Stream-head pages use
stable keyset cursors rather than mutable offsets. Durable events and
dispositions must not receive TTLs; production Redis should enable persistence
and use a non-evicting policy.