Execution safety for side-effecting AI agent tools.
- ✓Open-source license (MIT)
- ✓Actively maintained (<30d)
- ✓Clear description
- ✓Documented (README)
git clone https://github.com/stringsofthemind-oss/once && cp once/*.md ~/.claude/agents/Resumen de Subagents
# @once-agent/sdk
<!-- ONCE_STRIPE_SANDBOX_NOTICE -->
> [!IMPORTANT]
> ## ONCE is currently in Stripe Sandbox / Test Mode
>
> ONCE billing is currently connected to a **Stripe sandbox**.
> No real payment is taken and no real money moves while this beta is running in sandbox mode.
>
> **Do not enter real card details.**
>
> If Stripe asks for payment details during testing, use:
>
> - **Card number:** `4242 4242 4242 4242`
> - **Name:** `John Doe` (or any name)
> - **Expiry:** `12/34` (or any future date)
> - **CVC:** `123` (or any 3 digits)
> - **Postcode / ZIP:** any valid-looking value
>
> These are Stripe test credentials only.
>
> ONCE will clearly announce when billing moves from sandbox to live payments.
**Make side-effecting AI agent tools safe to retry.**
Once helps prevent an AI agent, workflow, or application from accidentally performing the same consequential action twice when the outcome of the first request is uncertain.
Typical examples include:
- payments and refunds
- bookings and reservations
- emails and messages
- account changes
- order creation
- webhook-triggered actions
- other irreversible or externally visible writes
## Install
```bash
npm install @once-agent/sdk
```
Requires Node.js 18 or later.
## Configure
Set your Once API key:
```bash
ONCE_API_KEY=your_api_key
```
> **Node note:** saving `ONCE_API_KEY` in `.env` does not make vanilla Node load it automatically. Use your framework/runtime's environment loader, export the variable before starting the process, or on supported Node versions run your application with `node --env-file=.env <your-entry-file>`.
`new Once()` reads `ONCE_API_KEY` automatically.
Do not commit API keys to source control.
## 60-second quick start
First configure a provider with `once setup .`, or use a provider alias already registered with your Once account.
```ts
import { Once } from "@once-agent/sdk";
async function main() {
const once = new Once();
const operationId = Once.id(
"refund",
"order_123"
);
const result = await once.execute({
operationId,
provider: "my-provider",
action: {
type: "refund",
order_id: "123"
}
});
console.log(result.state);
}
main().catch(console.error);
```
Replace `my-provider` with the provider alias configured for your Once account.
## The important part: operationId
For the same logical operation, reuse the same operation ID on every retry.
```ts
const operationId = Once.id(
"refund",
"order_123"
);
```
The same supported inputs produce the same deterministic ID.
Different logical operations should use different semantic inputs:
```ts
Once.id("refund", "order_123");
Once.id("refund", "order_124");
```
Do not generate a new random ID for each retry if the retry represents the same real-world operation.
## Why this exists
A normal retry can be dangerous when the request causes a real side effect.
For example:
1. your application sends a refund request;
2. the provider performs the refund;
3. the network fails before your application receives the response;
4. your application cannot tell whether the refund happened;
5. it retries.
Without reconciliation, the retry may perform the same consequential action again.
Once keeps durable operation state and, for supported provider integrations, can reconcile provider truth before allowing an ambiguous operation to execute again.
Once may preserve an operation as uncertain rather than assume that another execution is safe.
## Retries
Retries reuse the same `operationId`:
```ts
await once.execute({
operationId,
provider: "my-provider",
action
});
```
## Check operation truth
You can inspect the durable state of an operation later:
```ts
const truth = await once.truth(operationId);
console.log(truth.ledger_state);
```
This is useful after an ambiguous request, or when another process needs to determine the durable state of an existing operation.
## Once.id()
`Once.id()` generates a deterministic operation ID from semantic values.
```ts
const id = Once.id(
"send-invoice",
"invoice_4821"
);
```
Supported parts are:
- strings
- safe integers
Examples:
```ts
Once.id("payment", "invoice_42");
Once.id("booking", 4821);
```
Unsupported or ambiguous values are rejected rather than silently producing language-dependent identifiers.
For example, do not pass booleans, null, fractional numbers, or integers outside the JavaScript safe-integer range.
### Cross-language identity
`Once.id()` uses the versioned `once-id-v1` encoding.
The TypeScript and Python implementations are checked against the same frozen conformance vectors so supported inputs produce the same operation ID in both languages.
The identity hash uses unambiguous UTF-8 byte-length-prefixed parts, so different part boundaries cannot collapse into the same hash input.
The readable prefix is only a label. The deterministic hash represents the complete semantic input.
## Choosing good operation IDs
An operation ID should identify the real-world action, not the network attempt.
Good:
```ts
Once.id("refund", "order_123");
```
Risky:
```ts
Once.id("refund", Date.now());
```
A timestamp changes on every retry, so Once would see each attempt as a different operation.
A useful question is:
> If this request times out and I retry it, should the retry represent the same real-world action?
If the answer is yes, reuse the same operation ID.
## CLI workflow
The package includes the `once` CLI.
A typical workflow is:
```text
setup -> scan -> protect -> apply -> doctor
```
### 1. Set up Once
```bash
npx once setup .
```
Setup can install/configure the SDK, verify your API key, register a supported provider, and prepare local Once configuration.
Preview setup without making changes:
```bash
npx once setup . --plan
```
### 2. Scan for consequential operations
```bash
npx once scan .
```
The scanner looks locally for likely side-effecting operations that may benefit from Once protection.
Source code is reviewed locally by the CLI. The scanner does not require uploading your source code.
### 3. Review protection candidates
```bash
npx once protect .
```
Include all confidence levels:
```bash
npx once protect . --all
```
Write a review plan:
```bash
npx once protect . --all --write-plan
```
This can create:
```text
.once/protect-plan.json
```
### 4. Preview a patch
```bash
npx once protect . --all --patch
```
This generates a reviewable patch preview without directly modifying the application source.
You can also generate integration guidance:
```bash
npx once protect . --all --snippets
```
### 5. Apply an eligible transformation
```bash
npx once protect . --apply
```
`--apply` is intentionally conservative.
Automatic application only proceeds for a narrowly supported callsite that is fully revalidated before modification.
The apply engine checks the source fingerprint, recomputes the proposed transformation, verifies TypeScript, writes a backup, uses a temporary file, verifies the result, and rolls back if post-write validation fails.
If there are zero or multiple PATCHABLE candidates, automatic apply is rejected rather than guessing.
### 6. Verify the connection
```bash
npx once doctor
```
`doctor` verifies that the SDK can reach the configured Once service.
## protect status meanings
Protection review may report statuses such as:
- `PATCHABLE` - the current narrow transformer can produce a validated automatic patch
- `PROVIDER_MAPPING_REQUIRED` - the call needs a provider mapping before protection can be planned
- `PROVIDER_CAPABILITY_DECLARED` - provider capability is declared, but automatic transformation still requires an exact supported match
- `ADAPTER_REQUIRED` - the operation needs provider-specific integration work
- `MANUAL_REVIEW` - the CLI will not automatically rewrite the callsite
The CLI is designed to prefer manual review over unsafe automatic modification.
## Safety model
Once does **not** claim universal exactly-once execution.
Its safety properties depend on:
- a stable operation ID
- durable Once operation state
- the provider integration being used
- sufficiently authoritative provider truth
- the failure mode being within that provider integration's supported model
For supported provider integrations, Once is designed to prevent duplicate side effects across retries and ambiguous transport failures by reconciling provider truth before permitting re-execution.
When Once cannot determine whether an external side effect occurred, it may preserve the operation as uncertain rather than assume another execution is safe.
This means Once may sacrifice availability temporarily in order to avoid an unsafe duplicate side effect.
## Provider truth
Once is strongest when the external system can answer a question equivalent to:
> Did operation X already happen?
A provider integration defines both:
1. how the consequential action is executed;
2. how Once later determines authoritative provider truth.
Provider-specific guarantees should therefore be evaluated separately from the SDK itself.
## Errors
Once exports `OnceError` for SDK and service errors.
```ts
import {
Once,
OnceError
} from "@once-agent/sdk";
const once = new Once();
try {
await once.execute({
operationId,
provider: "my-provider",
action
});
} catch (error) {
if (error instanceof OnceError) {
console.error(
error.code,
error.message
);
}
throw error;
}
```
Do not automatically treat every error as permission to execute the external side effect directly.
An error may represent an ambiguous outcome. Querying operation truth or retrying through Once with the same operation ID preserves the safety model.
## API overview
### `new Once(options?)`
Creates a Once client.
The default configuration reads `ONCE_API_KEY` from the environment.
Supported client options include:
- `apiKey`
- `baseUrl`
- `timeoutMs`
- `networkRetries`
### `Once.id(...parts)Lo que la gente pregunta sobre once
¿Qué es stringsofthemind-oss/once?
+
stringsofthemind-oss/once es subagents para el ecosistema de Claude AI. Execution safety for side-effecting AI agent tools. Tiene 0 estrellas en GitHub y su última actualización registrada es del 2026-09-20.
¿Cómo se instala once?
+
Puedes instalar once clonando el repositorio (https://github.com/stringsofthemind-oss/once) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.
¿Es seguro usar stringsofthemind-oss/once?
+
Nuestro agente de seguridad ha analizado stringsofthemind-oss/once y le ha asignado un Trust Score de 87/100 (tier: Trusted). Revisa el desglose completo de comprobaciones superadas y flags en esta página.
¿Quién mantiene stringsofthemind-oss/once?
+
stringsofthemind-oss/once es mantenido por stringsofthemind-oss. La última actividad registrada en GitHub es del 2026-09-20, con 0 issues abiertos.
¿Hay alternativas a once?
+
Sí. En ClaudeWave puedes explorar subagents similares en /categories/agents, ordenados por popularidad o actividad reciente.
Despliega once en tu cloud
Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.
¿Mantienes este repo? Añade un badge a tu README
Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.
[](https://claudewave.com/repo/stringsofthemind-oss-once)<a href="https://claudewave.com/repo/stringsofthemind-oss-once"><img src="https://claudewave.com/api/badge/stringsofthemind-oss-once" alt="Featured on ClaudeWave: stringsofthemind-oss/once" width="320" height="64" /></a>Más Subagents
The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.
The agent that grows with you
Java 面试 & 后端通用面试指南,覆盖计算机基础、数据库、分布式、高并发、系统设计与 AI 应用开发
Build Agentic workflows, RAG pipelines, with rich AI model and tool support on one collaborative workspace. Deploy on cloud, VPC, or self-hosted, so teams move from prototype to production without rebuilding the stack.
The agent engineering platform.
Makes your AI agent think like the laziest senior dev in the room. The best code is the code you never wrote.