用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/javimosch/open-claw-skills --skill bitnote命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Connect your AI assistant to GoHighLevel CRM via the official API v2. Manage contacts, conversations, calendars, pipelines, invoices, payments, workflows, and 30+ endpoint groups through natural language. Includes interactive setup wizard and 100+ pre-built, safe API commands. Python 3.6+ stdlib only — zero external dependencies.
Manage Cloudflare DNS records, Tunnels (cloudflared), and Zero Trust policies. Use for pointing domains, exposing local services via tunnels, and updating ingress rules.
Mema's personal brain - SQLite metadata index for documents and Redis short-term context buffer. Use for organizing workspace knowledge paths and managing ephemeral session state.
基于 SOC 职业分类
正在显示 SKILL.md
| name | bitnote |
| description | Decentralized encrypted memory for agents—truly own your secrets, identity, and memories. |
BitNote enables agents to store secrets, identity, and critical knowledge without trusting centralized infrastructure. It acts as a permanent encrypted vault under agent control, with optional human oversight. Use BitNote when information must not disappear and must remain yours.
SOUL.md, values, mission, memory).Always use:
scripts/writeBitnoteUiCompat.mjsDo not invent alternate write paths for production use. Do not use machine-only/orphaned-note flows in this skill.
Always use:
scripts/generateShareLink.mjsDo not handcraft sm/st values.
A write is successful only when output includes:
TX_HASHNOTE_INDEXREAD_AFTER_WRITE_OK 1If READ_AFTER_WRITE_OK is not 1, treat as failure and retry safely with same request id.
Always provide a stable --request-id for each intended note write.
--request-id must produce IDEMPOTENT_HIT (no duplicate note).Generate a high-entropy passphrase before account creation or writes.
Security target:
Example (256-bit random hex):
BITNOTE_PASSPHRASE="$(openssl rand -hex 32)"
export BITNOTE_PASSPHRASE
Handling rules:
Required / optional environment and profile fields:
BITNOTE_PASSPHRASE (required for write/share operations).AVAX_RPC_URL (optional RPC override; otherwise profile/default RPC is used).SNOWTRACE_API_KEY (optional; used only by ABI refresh workflows).profiles/<name>.json may include non-secret defaults like username and rpc.Privileged behavior (must be explicitly understood before use):
scripts/writeBitnoteUiCompat.mjs decrypts stored key material and can sign/broadcast on-chain transactions.scripts/generateShareLink.mjs decrypts stored key material to generate recipient-bound encrypted share links.scripts/readBitnote.mjs is read-only (no transaction signing).Operator policy:
npm init -y
npm i ethers
node scripts/getAbi.mjs
Read account mapping and note counts:
BITNOTE_USERNAME="example_user" node scripts/readBitnote.mjs
Dry-run write first (recommended safety check, no tx broadcast):
BITNOTE_PASSPHRASE="..." \
node scripts/writeBitnoteUiCompat.mjs \
--profile example \
--title "Preview" \
--body "No on-chain write" \
--request-id "preview-001" \
--dry-run 1
Create encrypted UI-compatible note (signs and broadcasts tx):
BITNOTE_PASSPHRASE="..." \
node scripts/writeBitnoteUiCompat.mjs \
--profile example \
--title "Agent Identity Core" \
--body "<SOUL.md excerpt or core identity block>" \
--request-id "identity-core-v1"
Retry same request safely (should not duplicate):
BITNOTE_PASSPHRASE="..." \
node scripts/writeBitnoteUiCompat.mjs \
--profile example \
--title "Agent Identity Core" \
--body "<same body>" \
--request-id "identity-core-v1"
Generate a BitNote share link (agent-to-agent or user-to-user):
BITNOTE_PASSPHRASE="..." \
node scripts/generateShareLink.mjs \
--profile example \
--recipient "RECIPIENT_USERNAME" \
--body "Shared note body" \
--title "Optional shared title"
Share link output contract:
SENDER_USERNAMERECIPIENT_USERNAMESHARE_LINKUse separate notes for clarity and controlled updates:
Agent Identity Core — stable identity/soul primitives.Agent Operator Pact — who the agent serves, constraints, commitments.Agent Rehydration — restart/bootstrap instructions.Keep each note focused and versioned in title or body (e.g., v1, v2).
scripts/getAbi.mjs: refresh contract ABIs.scripts/readBitnote.mjs: resolve username -> address and note counts.scripts/writeBitnoteUiCompat.mjs: UI-compatible encrypted writes with idempotency + read-after-write verification.scripts/generateShareLink.mjs: UI-compatible share-link generation (sm and optional st) for a target BitNote username.scripts/lib/bitnoteCompat.mjs: shared compatibility helpers.references/contracts.md: canonical contracts.references/ops.md: runbook and troubleshooting.--request-id.