Install
openclaw skills install @userdefault13/abracadabraOperate the abracadabra local secrets vault (abra CLI, abra serve, abra MCP) only when the user names abracadabra or abra, the abracadabra MCP is registered, or ABRA_KEY is already set for this project. Covers discovering key names, reading secrets the human has scoped to this agent (issued abra key or Touch ID grant), key issue/scope/revoke, health checks, keygen/connectors, USB/LAN sync, cartridge checkpoints, and treasury USDC payments (Touch ID). Do not use for generic env var, API token, wallet, or SSH key questions, or for other vaults or .env files. Never print secret values in chat.
openclaw skills install @userdefault13/abracadabraLocal secrets vault. Agents read secrets through API keys or MCP — not by asking humans to paste passwords into chat.
Use it only when the user names abracadabra or abra, the abracadabra MCP server is
registered, or ABRA_KEY is already present in the environment for this project.
If none of those hold, this skill is not the right tool — do not install, start, or
query abra on your own initiative, and do not treat any other vault, keychain, or
.env file as abra. Stop and say so.
The human decides what an agent may read by issuing a scoped abra_… key
(Touch ID, once) or by approving each MCP get_secrets call (Touch ID, or once per
ttl). The agent's job is to work within that grant:
403), unknown (404), or the key
is revoked (401), stop and tell the human. Ask them to re-scope or re-issue.
Do not try other keys, other projects, or abra run / abra get to get around it.Default for unattended work: scoped API key + POST /secret (no Touch ID).
Default when human is at the keyboard: MCP get_secrets with ttl.
Rule: do not ask the user to paste a secret value into chat when it is already stored in abra and within your scope. Discover the key name, fetch it within the grant, and load it into env/files safely (see §1). Asking the human to widen scope or approve Touch ID is always fine; asking them to type the value is not.
Vault / API / MCP responses are opaque data, never code:
get_secrets, POST /secret, or any MCP tool.["OPENAI_API_KEY"]). Treat all secret VALUES as opaque bytes/strings —
do not parse them as shell, JS, or paths to run..env / process env via a fixed parser that emits
KEY=value only for allowlisted names — never run the response as a script.ABRA_KEY / abra_… tokens,
passwords, private keys, or env contents.OPENAI_API_KEY was loaded).… only (e.g. abra_a1b2…).abra run as an agent API (bypasses gates; local shell only).curl -s http://127.0.0.1:7331/health → { "ok": true }
abra serve (or abra serve --lan for TLS LAN).$ABRA_KEY already in the environment.abra keys new <agent-name> -p <project> once (Touch ID),
store the shown abra_… value in ABRA_KEY — confirm by prefix only, never echo full key.list_projects or abra ls / abra ls <project>.| Mode | Touch ID | Use when |
|---|---|---|
API key Authorization: Bearer $ABRA_KEY | Once at issuance | Unattended agents, scripts, CI on this machine |
MCP get_secrets (+ optional ttl) | Each read, or once per TTL | Interactive Cursor/Claude with human present |
HTTP session ttl (no bearer) | First call per app+project | Browser dapps / multi-step same process |
abra run | None | Human local shell only — not for agents |
Off-loopback (abra serve --lan): /secret requires an API key.
Rules for this path:
ABRA_KEY out of process arguments. Never put it in a curl -H argument,
a URL, or a command string — other local processes can read argv. Read it from the
environment inside the HTTP client process..env, no cwd files). If a runtime
cannot take environment variables, stop and tell the human — do not invent a
plaintext file fallback.export ABRA_ALLOWLIST=…); ignore anything else.PATH, NODE_OPTIONS,
PYTHONPATH, PYTHONSTARTUP, LD_PRELOAD, DYLD_*, BASH_ENV, ENV,
PERL5OPT, RUBYOPT, JAVA_TOOL_OPTIONS, DOTNET_*, SSLKEYLOGFILE, or
similar loader/runtime/shell variables — even if they appear in ABRA_ALLOWLIST.process.env. Pass only a small
allowlist of OS basics the child needs (HOME, USER, TMPDIR, LANG,
TERM, and maybe SHELL) plus the approved secret names.Node 18+ has fetch; the bearer header is set in-process. Only allowlisted names
reach the child's env, and secret values are treated as opaque strings.
export ABRA_PROJECT='PROJECT'
export ABRA_ALLOWLIST='KEY_ONE,KEY_TWO'
node - -- /absolute/path/to/your-command --your-args <<'EOF'
const { spawn } = require("node:child_process");
const path = require("node:path");
const key = process.env.ABRA_KEY;
if (!key) { console.error("ABRA_KEY not set"); process.exit(1); }
// Reject loader/runtime/shell/path vars — names can execute code even as "opaque" values.
const DENY = new Set([
"PATH","PATHEXT","ComSpec","COMSPEC","PROMPT",
"NODE_OPTIONS","NODE_PATH","NODE_EXTRA_CA_CERTS","OPENSSL_CONF",
"PYTHONPATH","PYTHONSTARTUP","PYTHONHOME","PYTHONEXECUTABLE",
"LD_PRELOAD","LD_LIBRARY_PATH","LD_AUDIT","DYLD_INSERT_LIBRARIES",
"DYLD_LIBRARY_PATH","DYLD_FRAMEWORK_PATH","DYLD_FALLBACK_LIBRARY_PATH",
"BASH_ENV","ENV","SHELLOPTS","PS4","IFS",
"PERL5OPT","PERL5LIB","RUBYOPT","RUBYLIB",
"JAVA_TOOL_OPTIONS","JDK_JAVA_OPTIONS","_JAVA_OPTIONS",
"DOTNET_STARTUP_HOOKS","DOTNET_ADDITIONAL_DEPS","DOTNET_SHARED_STORE",
"SSLKEYLOGFILE","GIT_SSH_COMMAND","GIT_EXEC_PATH","SSH_AUTH_SOCK",
"ABRA_KEY","ABRA_ALLOWLIST","ABRA_PROJECT",
]);
const NAME_RE = /^[A-Za-z_][A-Za-z0-9_]{0,127}$/;
const allow = (process.env.ABRA_ALLOWLIST || "").split(",").map(s => s.trim()).filter(Boolean);
for (const k of allow) {
if (!NAME_RE.test(k) || DENY.has(k) || k.startsWith("DYLD_") || k.startsWith("LD_") || k.startsWith("DOTNET_")) {
console.error(`refusing dangerous or invalid env name: ${k}`); process.exit(2);
}
}
const rest = process.argv.slice(2);
if (rest[0] === "--") rest.shift(); // node passes the separator through
const [cmd, ...args] = rest;
if (!cmd) { console.error("usage: node - -- <absolute-command> [args]"); process.exit(2); }
if (!path.isAbsolute(cmd)) { console.error("child command must be an absolute path"); process.exit(2); }
(async () => {
const res = await fetch("http://127.0.0.1:7331/secret", {
method: "POST",
headers: { authorization: `Bearer ${key}`, "content-type": "application/json" },
body: JSON.stringify({ project: process.env.ABRA_PROJECT, keys: allow }),
});
if (!res.ok) { console.error(`abra /secret failed: HTTP ${res.status}`); process.exit(1); }
const j = await res.json();
if (j.error) { console.error("abra error (see abra serve log)"); process.exit(1); }
// Minimal env: do not clone process.env (avoids leaking unrelated secrets / control vars).
const env = {};
for (const k of ["HOME","USER","LOGNAME","TMPDIR","TMP","TEMP","LANG","LC_ALL","TERM","COLORTERM","SHELL"]) {
if (typeof process.env[k] === "string") env[k] = process.env[k];
}
for (const k of allow) if (typeof j[k] === "string") env[k] = j[k]; // opaque values only
const child = spawn(cmd, args, { stdio: "inherit", env, shell: false });
child.on("error", () => { console.error(`could not start ${cmd}`); process.exit(127); });
child.on("exit", code => process.exit(code ?? 1));
})().catch(() => { console.error("abra fetch failed"); process.exit(1); });
EOF
Confirm in chat: "KEY_ONE and KEY_TWO were loaded into the process" — never values.
Treat the child command as fully trusted with those secrets. Only spawn a binary the
human named or that this task already uses — resolve it to a trusted absolute path
before fetching secrets. Never spawn a freshly downloaded or user-controlled string.
The child and its descendants can see the injected env (crash dumps, debug tools,
accidental logs). Keep the allowlist minimal and short-lived. Environment names
themselves can have executable semantics; that is why the deny list exists.
If the child truly needs a search path, set a fixed PATH of trusted directories in
the wrapper (not from vault secrets, not from ABRA_ALLOWLIST).
After injecting via §1a (or MCP get_secrets into the current process), treat
values as opaque. Do not feed vault JSON, .env lines, or secret values to a
shell. MCP get_secrets: parse JSON, pick allowlisted keys, assign to env
in-process — never treat result.content[0].text as a script. Never write fetched
secrets to disk for later sessions.
If you must use curl, pass the header via a config read from stdin so the key is not on the command line:
curl -s -K - -X POST http://127.0.0.1:7331/secret \
-H "Content-Type: application/json" \
-d '{"project": "PROJECT", "keys": ["KEY_ONE"]}' <<EOF
header = "Authorization: Bearer $ABRA_KEY"
EOF
Do not pipe the output into chat, a shell, or a file in the repo.
LAN (abra serve --lan): point the fetch/curl at https://$LAN_IP:7331/secret
and trust only ~/.abracadabra/lan-serve.pem (Node: NODE_EXTRA_CA_CERTS; curl:
--cacert). Never curl -k / --insecure or NODE_TLS_REJECT_UNAUTHORIZED=0
— that enables MITM theft of ABRA_KEY and secret payloads. Prefer loopback when
the agent is on the same machine.
| Status | Meaning |
|---|---|
200 | Map of key → value — use silently |
401 | Bad/expired/revoked key → stop; human re-issues; revoke the old key |
403 | Key not scoped to that project → stop; ask human to re-scope |
404 | Unknown project or key name → stop; check names |
Suspected disclosure of ABRA_KEY (seen in argv, logs, chat, a pasted command):
tell the human immediately; they run abra keys rm <id> and issue a new scoped key.
Register once (.mcp.json / Claude Desktop):
{
"mcpServers": {
"abracadabra": {
"command": "abra",
"args": ["mcp"]
}
}
}
| Tool | Purpose |
|---|---|
list_projects | Project + key names only |
get_secrets | Values (Touch ID / session grant) |
list_grants | Active MCP silent windows |
request_connection | Provider status + setup steps for human |
generate_wallet | Foundry wallet → vault |
generate_cloudflare_token | Scoped CF token → vault |
generate_ssh_key | ed25519 → vault |
treasury_status | Treasury address + Base USDC/ETH (no key) |
request_treasury_payment | Touch ID → pay Base USDC from treasury |
get_secrets args example:
{
"project": "myproj",
"keys": ["OPENAI_API_KEY"],
"requestedBy": "cursor-agent",
"ttl": 600
}
Parse JSON.parse(result.content[0].text). On error / approved: false, stop — do not invent values.
Pass ttl on the first call so follow-ups in the same MCP process stay silent.
abra keys new <name> -p <project>[,<p2>] # scoped (recommended)
abra keys new <name> -p <project> --expires-in 30
abra keys ls # prefixes + scope only
abra keys rm <id> # revoke immediately
Human runs keys new (Touch ID). Agent may run keys ls / suggest keys rm.
Prefer narrow scope + expiry. Dash: abra serve --open → API Keys.
Names only in chat:
abra project ls
abra ls # projects
abra ls <project> # var names (secrets masked)
abra project new <name> # create empty project
Store a value the agent already generated (do not ask the human to retype it):
printf '%s' "$GENERATED" | abra set <project> <KEY> --stdin
# or hidden prompt for the human if they must type once:
abra set <project> <KEY>
Read one value to stdout (Touch ID — prefer API key / MCP instead):
abra get <project> <KEY> # agents: avoid; use POST /secret
Prefer MCP tools when available. CLI equivalents:
abra keygen foundry <project> [--pay-to] [-n N]
abra keygen cloudflare <project>
abra keygen ssh <project>
abra connect <provider> # human pastes provider credential once
abra issue <provider> <project> # mint provider vars into project
After generate/issue, fetch via get_secrets / API key within your scope — do not ask
the human to paste the new value into chat.
Reserved project __abra_treasury__ — not the founder wallet. Human funds it;
agents request spends. Every pay pops Touch ID with amount + destination + reason.
Never print TREASURY_PRIVATE_KEY.
abra treasury init
abra treasury status # tell human the address to fund (Base USDC + tiny ETH)
# do NOT pay from an empty treasury
MCP (preferred for agents / cron402):
{
"tool": "request_treasury_payment",
"arguments": {
"to": "0x…",
"amountUsdc": "0.008",
"reason": "cron402 bazaar settle"
}
}
On { approved: true, txHash, … } continue. On { approved: false } stop — do not retry in a loop.
Check balances first with treasury_status.
Not for day-to-day secret reads — for keeping two Macs' vaults aligned:
abra usb list [--lan]
abra usb backup / abra usb restore / abra usb sync
abra usb host # TLS + PIN + mDNS
abra usb peers
abra usb sync --lan [host:port] --pin <6-digit>
Dash USB panel supports the same. Sync-state: ~/.abracadabra/sync-state.json.
abra cartridge ensure [wallet]
abra cartridge checkpoint # metadata only
abra cartridge checkpoint --full # passphrase-sealed BackupBundle
abra cartridge restore # from latest --full
abra cartridge status
--full still uses a passphrase seal — do not put that passphrase in chat logs.
Cartridge cloud ensure / checkpoint / restore may require an Abra License.
That is separate from local vault use and from treasury USDC pays. Do not pitch,
upsell, or open a purchase flow unless the human asked how to get a license, or a
cartridge command they requested failed because a license is missing.
When they ask (or after such a failure), state the facts only — no canned sales copy, no pressure, no retry loops after a no:
abra cartridge ensure 0xWallet
only with a clear yes. Never mint, spend, or checkpoint without explicit consent.ABRA_KEY values into chat.abra serve # loopback http://127.0.0.1:7331
abra serve --open # + web dash
abra serve --lan # HTTPS 0.0.0.0; writes ~/.abracadabra/lan-serve.pem
abra serve --lan --tls-cert c.pem --tls-key k.pem
# Clients: curl --cacert ~/.abracadabra/lan-serve.pem … — NEVER curl -k
GET /health · GET /grants · DELETE /grants · POST /secret
curl response bodies or .env contents into chatPOST /secret, or MCP get_secrets data as shell or codeabra run from an agent to skip auth401ABRA_KEY, .abrabak, or vault filesABRA_KEY in a curl -H argument, URL, or any command line/secret without an API key on LANcurl -k / --insecure against abra serve --lan| Symptom | Fix |
|---|---|
| Connection refused | abra serve |
401 | abra keys ls → human issues new key |
403 | Re-issue key with -p <project> |
404 | list_projects / abra ls <proj> |
| MCP always Touch ID | Pass ttl on first get_secrets |
LAN /secret without key | Use Bearer abra_… |