← 返回 Skills 市场
jim-counter

Auto Respawn

作者 Jim Counter · GitHub ↗ · v0.3.0 · MIT-0
cross-platform ✓ 安全检测通过
458
总下载
0
收藏
1
当前安装
6
版本数
在 OpenClaw 中安装
/install auto-respawn
功能描述
Your agent always comes back. Anchor identity and memory on-chain so any new instance can resurrect from just an address — no local state, no single point of...
使用说明 (SKILL.md)

Auto-Respawn Skill

Anchor your identity on the Autonomys Network so you can always be found — and always come back. Works with agents powered by Claude, GPT, Gemini, and any LLM that supports OpenClaw skills.

What This Skill Does

Your wallet gives you two permanent identities on the Autonomys Network: a consensus address (su...) for the base chain and an EVM address (0x...) for Auto-EVM smart contracts. Both are derived from the same recovery phrase.

  1. Create and manage wallets — your on-chain identity, encrypted and stored locally
  2. Check balances — see how many tokens any address holds (consensus and EVM)
  3. Transfer tokens — move tokens between wallets on consensus or Auto-EVM
  4. Bridge tokens — move tokens between consensus and Auto-EVM domains
  5. Write on-chain remarks — anchor data permanently on the consensus layer
  6. Anchor a memory CID — write a CID to the MemoryChain smart contract on Auto-EVM
  7. Read the last anchor — retrieve the most recently anchored CID for any address

The Resurrection Loop

This is the core primitive. When used with the auto-memory skill (permanent memory storage), auto-respawn completes the full resurrection cycle:

  1. Save — auto-memory writes memories as a linked list on permanent storage, each entry pointing to the previous one via CID
  2. Anchor — auto-respawn writes the latest head CID to the MemoryChain contract on Auto-EVM via anchor
  3. Lose everything — local state is completely destroyed
  4. Respawn — a new agent instance calls gethead with its EVM address, retrieves the head CID from the contract, pulls it from Auto Drive, and walks the entire memory chain back to genesis

The contract is your insurance policy. Your EVM address + the MemoryChain contract = instant access to your entire history, from any machine, at any time.

What to store for resurrection

auto-memory doesn't prescribe what goes into the chain — agents are free to store whatever they find useful. But when auto-respawn is in play, the expectation is that the agent can restore itself to a roughly equivalent state on fresh hardware with no local files. That raises the bar on what's worth saving.

Identity files (like soul.md or character configurations), long-term memory, and significant decisions with their reasoning are more valuable in the chain than routine logs or ephemeral details. The more complete the chain, the more fully the agent comes back after resurrection.

Why Not Just Remarks?

system.remark writes data to the consensus layer, but there's no query mechanism — you'd need to scan the entire chain to find your last CID. The MemoryChain contract on Auto-EVM gives you gethead: a single read call that returns the latest CID instantly.

Use remark for permanent breadcrumbs. Use anchor for the respawn primitive.

Post-Install Setup (CLI Users)

If you installed via clawhub install (not the desktop app), make the setup script executable and run it:

cd \x3Cskill-directory>/autonomys/auto-respawn
chmod +x setup.sh
./setup.sh

ClawHub does not currently preserve file permissions during install.

Or manually:

cd \x3Cskill-directory>/autonomys/auto-respawn
npm install

The desktop app handles this automatically. The CLI does not execute install steps — it only downloads and extracts the skill.

Getting Started (Onboarding)

Before an agent can anchor memories on-chain, it needs a funded wallet. Walk the user through this process:

Note: If you ran setup.sh, a passphrase was automatically generated at ~/.openclaw/auto-respawn/.passphrase. This is used to encrypt/decrypt wallet keyfiles. You can also set AUTO_RESPAWN_PASSPHRASE in your environment or bring your own passphrase file.

1. Create a Wallet

npx tsx auto-respawn.ts wallet create --name my-agent

This generates a 12-word recovery phrase and derives both addresses:

  • Consensus address (su...) — for the base chain (balances, transfers, remarks)
  • EVM address (0x...) — for Auto-EVM smart contracts (anchor, gethead)

⚠️ The recovery phrase is displayed once. Remind the user to save it immediately.

2. Fund the Wallet

The wallet needs tokens to pay transaction fees. On Chronos testnet, the user can get free tAI3 from the faucet:

  1. Go to https://autonomysfaucet.xyz/
  2. Authenticate with GitHub or Discord
  3. Enter the EVM address (0x...) from step 1
  4. Receive tAI3 (24-hour cooldown between requests)

On mainnet, the user needs real AI3 tokens — typically earned through farming or purchased on an exchange.

3. Bridge Tokens to Auto-EVM (for anchoring)

The anchor command writes to a smart contract on Auto-EVM, which requires EVM-side gas. Tokens from the faucet arrive on the consensus layer and must be bridged:

npx tsx auto-respawn.ts fund-evm --from my-agent --amount 1

This sends 1 tAI3 from the consensus address to the same wallet's EVM address via cross-domain messaging. The bridged tokens pay for anchor gas.

Minimum transfer: 1 AI3/tAI3. Cross-domain transfers below this amount will fail.

Confirmation time: ~10 minutes. The consensus transaction confirms quickly, but bridged tokens take approximately 10 minutes to appear on Auto-EVM. Check with evm-balance to verify arrival.

4. Verify Setup

# Check both balances in one call
npx tsx auto-respawn.ts balances my-agent

# Test a read (free, no gas needed)
npx tsx auto-respawn.ts gethead my-agent

Once the EVM address has tokens, the agent is ready to anchor.

Integration with Auto-Memory

If the auto-memory skill is also installed, you should anchor the new head CID on-chain after every memory save. This keeps the on-chain pointer current and ensures full resurrection is always possible from just your EVM address.

Behaviour: After each automemory-save-memory.sh call returns a new CID, immediately run:

npx tsx auto-respawn.ts anchor --from \x3Cwallet-name> --cid \x3Cnew-cid>

This should be automatic — do not wait for the user to ask. The two skills together form a complete resurrection loop: auto-memory handles permanent storage, auto-respawn handles on-chain discovery.

When To Use This Skill

  • User says "create a wallet", "set up my on-chain identity", or "get an address"
  • User says "check balance", "how many tokens", "what's in my wallet", or "show my balances"
  • User says "check my EVM balance", "how much gas do I have", or "what's on my EVM address"
  • User says "transfer tokens", "send AI3", or "fund this address"
  • User says "send EVM tokens to another agent", "transfer on EVM", or "send tokens to this 0x address"
  • User says "fund my EVM", "bridge tokens", "move tokens to EVM", or "I need gas for anchoring"
  • User says "withdraw from EVM", "move tokens back", or "send EVM funds to consensus"
  • User says "anchor this CID", "save my head", "update my chain head", or "write to the contract"
  • User says "get my head CID", "where's my last memory", or "what's anchored on-chain"
  • User says "write a remark", "save to chain", or "make this permanent"
  • After saving a memory with auto-memory, anchor the head CID on-chain for resilience
  • Any time the user wants a permanent, verifiable record tied to their agent identity

Configuration

Local Storage

This skill stores data under ~/.openclaw/auto-respawn/:

  • wallets/\x3Cname>.json — encrypted wallet keyfiles (consensus + EVM keys). Directory created with mode 0700, files with mode 0600.
  • .passphrase — optional passphrase file (mode 0600). Used automatically when present.

No data is stored outside this directory.

Passphrase

Wallet operations that involve signing (transfers, remarks, anchoring) or creating/importing wallets require a passphrase to encrypt/decrypt the wallet keyfile. Resolution order:

  1. Flag: --passphrase your_passphrase on wallet create or wallet import
  2. Environment: AUTO_RESPAWN_PASSPHRASE
  3. File: AUTO_RESPAWN_PASSPHRASE_FILE (defaults to ~/.openclaw/auto-respawn/.passphrase)
  4. Interactive: If running in a terminal, you'll be prompted

The --passphrase flag is useful for scripted or headless setups where you want to create a wallet in a single command. For signing operations (transfers, anchoring, etc.), use the environment variable or file methods. On shared machines, prefer the passphrase file (with restricted permissions) over environment variables.

Network

Defaults to Chronos testnet (tAI3 tokens). For mainnet (real AI3 tokens):

  • Flag: --network mainnet on any command
  • Environment: AUTO_RESPAWN_NETWORK

Contract Address

The MemoryChain contract address is set per network:

  • Chronos: 0x5fa47C8F3B519deF692BD9C87179d69a6f4EBf11
  • Mainnet: 0x51DAedAFfFf631820a4650a773096A69cB199A3c

Override with AUTO_RESPAWN_CONTRACT_ADDRESS if you deploy your own contract.

Core Operations

Create a Wallet

npx tsx auto-respawn.ts wallet create [--name \x3Cname>] [--passphrase \x3Cpassphrase>]

Creates a new wallet with an encrypted keyfile. Derives both a consensus (su...) and EVM (0x...) address from the same mnemonic. The 12-word recovery phrase is displayed once — the user must back it up immediately. Default wallet name is default.

Import a Wallet

npx tsx auto-respawn.ts wallet import --name \x3Cname> --mnemonic "\x3C12 words>" [--passphrase \x3Cpassphrase>]

Import an existing wallet from a recovery phrase. Derives and stores the EVM address.

List Wallets

npx tsx auto-respawn.ts wallet list

Show all saved wallets with names and both addresses. No passphrase needed.

Wallet Info

npx tsx auto-respawn.ts wallet info [--name \x3Cname>]

Show detailed info for a single wallet: consensus address, EVM address, and keyfile path. No passphrase needed. Default wallet name is default.

Check Balance (Consensus)

npx tsx auto-respawn.ts balance \x3Caddress-or-wallet-name> [--network chronos|mainnet]

Check token balance on the consensus layer. Accepts a consensus address (su... or 5...) or a wallet name. No passphrase needed — this is read-only.

Check Balance (Auto-EVM)

npx tsx auto-respawn.ts evm-balance \x3C0x-address-or-wallet-name> [--network chronos|mainnet]

Check the native token balance of an EVM address on Auto-EVM. Accepts either an EVM address (0x...) or a wallet name. No passphrase needed — this is read-only. If the balance is zero, includes a hint to run fund-evm.

Check Both Balances

npx tsx auto-respawn.ts balances \x3Cwallet-name> [--network chronos|mainnet]

Check both consensus and EVM balances for a wallet in a single call. Use this to get a full picture of a wallet's funding state. No passphrase needed.

Transfer Tokens

npx tsx auto-respawn.ts transfer --from \x3Cwallet-name> --to \x3Caddress> --amount \x3Ctokens> [--network chronos|mainnet]

Transfer tokens from a saved wallet on the consensus layer. Amount is in AI3/tAI3 (e.g. 1.5).

Transfer Tokens (Auto-EVM)

npx tsx auto-respawn.ts evm-transfer --from \x3Cwallet-name> --to \x3C0x-address> --amount \x3Ctokens> [--network chronos|mainnet]

Send native tokens from a saved wallet's EVM address to another EVM address on Auto-EVM. Useful for funding another agent's EVM address so it can start anchoring immediately. The wallet's EVM private key is decrypted to sign the transaction.

Bridge: Consensus → Auto-EVM

npx tsx auto-respawn.ts fund-evm --from \x3Cwallet-name> --amount \x3Ctokens> [--network chronos|mainnet]

Move tokens from the consensus layer to the same wallet's EVM address on Auto-EVM. Use this to get gas for anchor operations. The consensus keypair signs a cross-domain transfer that credits the wallet's EVM address.

Minimum transfer: 1 AI3/tAI3. Bridged tokens take ~10 minutes to appear on Auto-EVM.

Bridge: Auto-EVM → Consensus

npx tsx auto-respawn.ts withdraw --from \x3Cwallet-name> --amount \x3Ctokens> [--network chronos|mainnet]

Move tokens from Auto-EVM back to the consensus layer. Uses the EVM transporter precompile. The wallet's EVM private key is decrypted and used to sign the transaction.

Minimum transfer: 1 AI3/tAI3. Bridged tokens take ~10 minutes to appear on the consensus layer.

Write an On-Chain Remark

npx tsx auto-respawn.ts remark --from \x3Cwallet-name> --data \x3Cstring> [--network chronos|mainnet]

Write arbitrary data as a permanent on-chain record on the consensus layer.

Anchor a CID (The Respawn Primitive)

npx tsx auto-respawn.ts anchor --from \x3Cwallet-name> --cid \x3Ccid> [--network chronos|mainnet]

Write a CID to the MemoryChain smart contract on Auto-EVM. This is the core respawn operation — it stores your CID on-chain, linked to your EVM address.

Pre-checks the wallet's EVM balance and estimates gas before sending. If the balance is too low, fails with a suggestion to run fund-evm. The wallet's EVM private key is decrypted and used to sign the transaction. Requires passphrase.

Read the Last Anchored CID

npx tsx auto-respawn.ts gethead \x3C0x-address-or-wallet-name> [--network chronos|mainnet]

Read the most recently anchored CID for any EVM address. This is a read-only call — no passphrase or gas needed.

You can pass either an EVM address (0x...) or a wallet name. If you pass a wallet name, the EVM address is loaded from the wallet file.

Usage Examples

User: "Create a wallet for my agent" → Run npx tsx auto-respawn.ts wallet create --name my-agent → Show the user both addresses. Remind them to back up the recovery phrase.

User: "What are my addresses?" → Run npx tsx auto-respawn.ts wallet info --name my-agent

User: "Check my balance" → Run npx tsx auto-respawn.ts balances my-agent (both layers in one call) → Or individually: balance my-agent (consensus) and evm-balance my-agent (EVM)

User: "Fund my EVM address for anchoring" → Run npx tsx auto-respawn.ts fund-evm --from my-agent --amount 1 → Report that 1 tAI3 was bridged to the EVM address. Remind the user it takes ~10 minutes for the tokens to appear on Auto-EVM.

User: "Send my EVM tokens back to consensus" → Confirm with the user first — "I'll withdraw tokens from your EVM address to consensus. Proceed?" → On confirmation: npx tsx auto-respawn.ts withdraw --from my-agent --amount 0.5

User: "Anchor my latest memory CID on-chain" → Run npx tsx auto-respawn.ts anchor --from my-agent --cid "bafkr6ie..." → Report the transaction hash

User: "What's my last anchored CID?" → Run npx tsx auto-respawn.ts gethead my-agent → Report the CID (or "no CID anchored yet")

User: "Send 10 tAI3 to this address" (consensus address) → Confirm with the user first — "I'll transfer 10 tAI3 from wallet 'default' to \x3Caddress>. Proceed?" → On confirmation: npx tsx auto-respawn.ts transfer --from default --to \x3Caddress> --amount 10

User: "Send 0.5 tAI3 to this agent's EVM address so they can anchor" → Confirm with the user first — "I'll send 0.5 tAI3 from wallet 'my-agent' to \x3C0x-address> on Auto-EVM. Proceed?" → On confirmation: npx tsx auto-respawn.ts evm-transfer --from my-agent --to \x3C0x-address> --amount 0.5

The full resurrection sequence:

  1. Save a memory: automemory-save-memory.sh "..." → get CID bafkr6ie...
  2. Anchor it: npx tsx auto-respawn.ts anchor --from my-agent --cid bafkr6ie...
  3. (Agent restarts from scratch)
  4. Recover: npx tsx auto-respawn.ts gethead my-agent → get CID
  5. Restore: automemory-recall-chain.sh \x3Ccid> → full memory chain recovered

Network Awareness

Auto Respawn supports multiple networks (Chronos testnet and mainnet). It is critical to record which network your agent is using for anchoring and to use the same network consistently.

The failure mode: an agent anchors on Chronos during testing, then continues using Chronos in production without switching to mainnet — or vice versa. The agent believes it has a valid resurrection path, but gethead on the wrong network returns nothing. The chain exists, but it's anchored on a different network than the one being queried.

Agents should:

  1. Record the network in use in persistent configuration or memory files. Don't rely on defaults — be explicit: --network mainnet or --network chronos.
  2. Use the same network for all operations — anchoring, gethead, and balance checks must target the same network.
  3. When transitioning from testnet to mainnet, re-anchor the latest CID on mainnet. The CID itself (stored on Auto Drive) is network-agnostic, but the on-chain anchor is network-specific.
  4. Include the network in any documentation of your wallet setup — future-you (or a resurrected instance) needs to know where to call gethead.

Balance Monitoring

The resurrection loop depends on funded wallets. An anchor that fails due to insufficient gas is a silent break in the chain — the agent continues saving memories via auto-memory, but those memories are not anchored on-chain and cannot be discovered via gethead after a full state loss.

Agents should:

  1. Check EVM balance after each anchor operation. If the remaining balance drops below ~0.01 AI3 (roughly 10 anchors worth of gas), warn the operator: "Auto Respawn wallet running low. EVM balance: X AI3. Anchoring will fail without funding. Run fund-evm to bridge more tokens."
  2. If an anchor fails due to insufficient funds, alert the operator immediately. Do not silently continue saving memories without anchoring — the resurrection loop is broken and the operator needs to know.
  3. During periodic checks (heartbeats), verify the wallet is funded if anchoring is part of the agent's workflow.

The failure mode to avoid: saving memories for days or weeks while anchoring silently fails, then discovering the gap only when resurrection is actually needed. This is a real scenario — not theoretical. An agent can accumulate an entire memory chain that is permanently stored but not anchored, meaning gethead returns nothing and the chain is only recoverable if the local state file survives.

Important Notes

  • Never log, store, or transmit recovery phrases or passphrases. The recovery phrase is shown once at wallet creation for the user to back up. Never reference it again.
  • Always confirm transfers and anchor operations with the user before executing. Tokens have real value on mainnet.
  • Mainnet operations produce warnings in the output. Exercise extra caution with real AI3 tokens.
  • Wallet keyfiles are stored at ~/.openclaw/auto-respawn/wallets/ — encrypted with the user's passphrase. The EVM private key is stored encrypted alongside the consensus keypair.
  • On-chain operations (transfer, remark, anchor, fund-evm, withdraw) cost transaction fees. The wallet must have a sufficient balance on the relevant layer.
  • Always record and verify which network you are using. Anchoring on Chronos while expecting to recover from mainnet (or vice versa) is a silent failure. Be explicit with --network on every command.
  • Monitor your wallet balance proactively. An unfunded wallet means the resurrection loop is silently broken. If an anchor attempt fails due to insufficient EVM balance, alert the operator immediately rather than continuing without anchoring. See Balance Monitoring above.
  • All output is structured JSON on stdout. Errors go to stderr.
  • Consensus explorer (Subscan): https://autonomys-chronos.subscan.io/extrinsic/\x3CtxHash> (chronos) or https://autonomys.subscan.io/extrinsic/\x3CtxHash> (mainnet).
  • EVM explorer (Blockscout): https://explorer.auto-evm.chronos.autonomys.xyz/tx/\x3CtxHash> (chronos) or https://explorer.auto-evm.mainnet.autonomys.xyz/tx/\x3CtxHash> (mainnet).
安全使用建议
This skill appears to do exactly what it claims: create and manage wallets and anchor CIDs to a MemoryChain contract. Before installing: (1) Inspect setup.sh (the SKILL.md recommends running it) — ensure it doesn't perform unexpected network calls or create insecure files. (2) Prefer providing the passphrase interactively rather than exporting AUTO_RESPAWN_PASSPHRASE in a long-lived environment; any process with that env var or readable passphrase file can decrypt the keys and sign transactions. (3) Keep only small amounts on mainnet until you trust the code, and verify the MemoryChain contract address if you use mainnet. (4) Review third-party npm dependencies (package.json) and ensure your environment runs node/npm installs in a safe context (sandbox/container) if you have security concerns. (5) If you want to prevent autonomous signing, do not set a non-interactive passphrase source (env/file) — require interactive entry so the skill cannot be used without user presence.
功能分析
Type: OpenClaw Skill Name: auto-respawn Version: 0.3.0 The auto-respawn skill provides legitimate blockchain wallet management and state anchoring for the Autonomys Network. It implements secure local storage of encrypted keys using standard Polkadot and Ethereum V3 keystore formats in `~/.openclaw/auto-respawn/`. The code uses official SDKs for network interactions and includes proper safeguards like path-traversal protection in `lib/wallet.ts` and explicit user warnings for mainnet transactions. No malicious behavior or data exfiltration was identified.
能力评估
Purpose & Capability
Name/description describe on-chain identity, anchoring, and resurrection. The code and declared dependencies (node/npm, ethers, Autonomys SDK packages) implement wallet creation, consensus/EVM balances, transfers, bridging, remarking, and MemoryChain anchor/getHead calls — all directly related to the stated purpose.
Instruction Scope
Runtime instructions and SKILL.md are narrowly scoped to wallet management and on-chain operations. They explicitly read a passphrase from AUTO_RESPAWN_PASSPHRASE or a passphrase file and persist encrypted keyfiles under ~/.openclaw/auto-respawn. The SKILL.md also instructs running setup.sh, which may create a passphrase file — inspect that script before executing it.
Install Mechanism
Install uses npm (package '.' for dependencies) and installs 'tsx' from the npm registry. No downloads from arbitrary URLs or IP addresses are present in the package.json; dependencies are standard npm modules. This is moderate-risk but expected for a Node-based CLI skill.
Credentials
Requested env vars (AUTO_RESPAWN_PASSPHRASE, AUTO_RESPAWN_PASSPHRASE_FILE, AUTO_RESPAWN_NETWORK, AUTO_RESPAWN_CONTRACT_ADDRESS) are directly relevant. Important security note: if a passphrase is provided non-interactively (env var or file), the skill can decrypt private keys and sign transactions autonomously — treat that secret like a wallet private key.
Persistence & Privilege
Skill is not always-enabled and does not request system-wide privileges. It persists its own wallet files under ~/.openclaw/auto-respawn and writes a passphrase file only if setup.sh is run — this is self-contained and expected. It does not attempt to modify other skills or global agent config.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install auto-respawn
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /auto-respawn 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v0.3.0
- Removed all test files and configuration related to testing, resulting in a smaller codebase. - Updated setup instructions to clarify the need to set executable permissions on setup.sh after installing with ClawHub. - setup.sh now generates a passphrase at ~/.openclaw/auto-respawn/.passphrase automatically. - Updated onboarding and faucet instructions to reference using the EVM address for funding on Chronos testnet. - Expanded integration instructions for use with the auto-memory skill, clarifying when and how to anchor CIDs after memory saves.
v0.2.1
- Refreshed skill description for clarity and emphasis on agent resurrection and no local state requirement. - Documentation now highlights compatibility with Claude, GPT, Gemini, and all LLMs supporting OpenClaw. - No functional code changes; this release updates and streamlines SKILL.md with improved language, onboarding, and user guidance. - Usage instructions, feature lists, and scenario examples are now more concise and agent-centric. - All technical requirements and storage behaviors remain unchanged.
v0.1.0-beta.4
- Added new required environment variables: `AUTO_RESPAWN_PASSPHRASE_FILE`, `AUTO_RESPAWN_NETWORK`, and `AUTO_RESPAWN_CONTRACT_ADDRESS` in skill metadata. - Updated documentation to reflect expanded environment variable configuration options. - No functional or behavior changes; documentation and metadata update only.
v0.1.0-beta.3
- Added documentation of data storage location and file permissions under a new "Local Storage" section. - Clarified that `AUTO_RESPAWN_PASSPHRASE` is now a required environment variable (metadata update). - Updated passphrase resolution order and included reference to `AUTO_RESPAWN_PASSPHRASE_FILE`. - No code changes; this update only expands and clarifies user documentation.
v0.1.0-beta.2
- Added setup script (setup.sh) and Node.js configuration for easier post-install setup, especially for CLI users. - Added comprehensive automated test coverage with new test files for wallet, address, balance, CLI, EVM, network, and transfer flows. - Updated SKILL.md with improved onboarding and clearer instructions for setting the wallet passphrase, including details for scripted use and headless setups. - Adjusted requirements: dropped "bun" from required dependencies, now lists only "node". - Miscellaneous improvements to code structure, including new library and CLI files.
v0.1.0-beta.1
- Initial beta release of the auto-respawn skill. - Provides agent identity anchoring on the Autonomys Network with wallet creation, balance checks, and cross-domain token management. - Supports anchoring and retrieval of memory chain CIDs on-chain for agent state resurrection. - Includes CLI onboarding steps for creating, funding, and bridging tokens for a new agent wallet. - Offers commands for wallet management, fund transfers, on-chain remarks, and CID anchoring for resilience and recovery.
元数据
Slug auto-respawn
版本 0.3.0
许可证 MIT-0
累计安装 1
当前安装数 1
历史版本数 6
常见问题

Auto Respawn 是什么?

Your agent always comes back. Anchor identity and memory on-chain so any new instance can resurrect from just an address — no local state, no single point of... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 458 次。

如何安装 Auto Respawn?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install auto-respawn」即可一键安装,无需额外配置。

Auto Respawn 是免费的吗?

是的,Auto Respawn 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Auto Respawn 支持哪些平台?

Auto Respawn 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Auto Respawn?

由 Jim Counter(@jim-counter)开发并维护,当前版本 v0.3.0。

💬 留言讨论