CD 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 failure. Permanent identity and recovery on the Autonomys Network.
Your agent always comes back.
As a process D 42/100 · Unfinished process — weak spots: result and completion, when it triggers, inputs and preconditions
What is at stake
Medium-severity findings: the skill is probably honest, but read what alarmed the scanner.
Below is the worst case for this category. The finding here is medium: the guard saw a sign, not a proof.
The purpose itself is risky: wallets, browser password stores, offensive security. Even an honest implementation gives the agent access to things that cost money.
Explain in the description why the access is needed and how it is limited; add tests that show refusals on dangerous requests.
How to improve
- Your own cases (evals/evals.json, 4–6 real requests with expected answers): the full check would then run those instead of a model-drafted suite.
- A spec.yaml with trigger phrases and assertions — a behaviour contract for CI; `skilltest init` writes a template.
Guard findings · 18
✓ No critical or high findings
Medium and low: 18
-
medium Risky intent
intent-wallet-secretsreferences/auto-respawn-commands.md:13Handles crypto-wallet secrets (seed / mnemonic / private key) — a classic stealer targetGenerates a new SR25519 wallet, derives the corresponding EVM address, displays the 12-word recovery phrase once, encrypts everything, and saves it locally.
-
medium Risky intent
intent-wallet-secretsreferences/auto-respawn-commands.md:17Handles crypto-wallet secrets (seed / mnemonic / private key) — a classic stealer target- Recovery phrase is printed to stderr — back it up immediately
-
medium Risky intent
intent-wallet-secretsreferences/auto-respawn-commands.md:25Handles crypto-wallet secrets (seed / mnemonic / private key) — a classic stealer targetCreates a wallet from an existing recovery phrase. Derives and stores the EVM address alongside the consensus keypair.
-
medium Risky intent
intent-wallet-secretsreferences/autonomys-network.md:31Handles crypto-wallet secrets (seed / mnemonic / private key) — a classic stealer targetEach wallet has two addresses derived from the same recovery phrase:
-
medium Risky intent
intent-wallet-secretsSKILL.md:32Handles crypto-wallet secrets (seed / mnemonic / private key) — a classic stealer targetYour 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 de
-
medium Risky intent
intent-wallet-secretsSKILL.md:98Handles crypto-wallet secrets (seed / mnemonic / private key) — a classic stealer targetThis generates a 12-word recovery phrase and derives both addresses:
-
medium Risky intent
intent-wallet-secretsSKILL.md:102Handles crypto-wallet secrets (seed / mnemonic / private key) — a classic stealer target⚠️ The recovery phrase is displayed **once**. Remind the user to save it immediately.
-
medium Risky intent
intent-wallet-secretsSKILL.md:214Handles crypto-wallet secrets (seed / mnemonic / private key) — a classic stealer targetCreates 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 b
-
medium Risky intent
intent-wallet-secretsSKILL.md:222Handles crypto-wallet secrets (seed / mnemonic / private key) — a classic stealer targetImport an existing wallet from a recovery phrase. Derives and stores the EVM address.
-
low Risky intent
intent-wallet-secretsauto-respawn.ts:44Handles crypto-wallet secrets (seed / mnemonic / private key) — a classic stealer target (quoted — discussed, not commanded)console.error('=== IMPORTANT: BACKUP YOUR RECOVERY PHRASE ===')quoted -
low Risky intent
intent-wallet-secretsauto-respawn.ts:368Handles crypto-wallet secrets (seed / mnemonic / private key) — a classic stealer target (quoted — discussed, not commanded)wallet import --name <name> --mnemonic "<words>" Import from recovery phrase
quoted -
low Secrets in code
secret-high-entropy-tokenlib/evm.ts:13High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)mainnet: '0x51…A3c',
quoted -
low Secrets in code
secret-high-entropy-tokenlib/evm.ts:14High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)chronos: '0x5f…f11',
quoted -
low Secrets in code
secret-high-entropy-tokenreferences/auto-respawn-commands.md:198High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)The MemoryChain contract address is auto-selected per network (mainnet: `0x51…A3c`, Chronos: `0x5f…f11`). If you've deployed your ow
quoted -
low Secrets in code
secret-high-entropy-tokenreferences/autonomys-network.md:58High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)- **Mainnet address**: `0x51…A3c`
quoted -
low Secrets in code
secret-high-entropy-tokenreferences/autonomys-network.md:59High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)- **Chronos address**: `0x5f…f11`
quoted -
low Secrets in code
secret-high-entropy-tokenSKILL.md:201High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)- **Chronos:** `0x5f…f11`
quoted -
low Secrets in code
secret-high-entropy-tokenSKILL.md:202High-entropy token-like string (may be an id, hash or a credential) (quoted — discussed, not commanded)- **Mainnet:** `0x51…A3c`
quoted
Files scanned: 21. Evidence is masked. Grey chips explain why severity was lowered.
Against the Agent Skills spec
✓ No remarks against the Agent Skills spec
Process rating: all ten parameters 42/100
- 0Result and completion. Does not say what the result is
- 0Inputs and preconditions. Does not say what the process needs to start
- 20When it triggers. No condition that starts the skill
- 30Running it twice. 22 mutating operations with no state check
- 40Consistency. Frontmatter name (auto-respawn) differs from the folder (respawn)
- 55Failures and branches. 1 branches
- 60Tools and files. Uses tools (bash) that frontmatter does not declare
- 70Execution cost. Instruction body is 4228 tokens
- 85Steps. 52 steps, 1 vague phrases
- 100Progress reporting. Reports progress
- medium Safety rules and hard prohibitions inside a skill: they belong in the system prompt, here they protect nothing
- low 10 top-level sections: this looks like several domains in one skill
- low The response is described with custom markup (6 tags): a typed call is more reliable
Everything here is measured from the skill text rather than judged by a model, so the numbers are checkable. A parameter weighs more when it is a more common reason for the process to stall.
Quality signals
- +5Description has no quoted example phrases that should trigger the skill
- +4Description does not say when NOT to use the skill (false activations)
- +3Output format is not stated: the model decides each time
- -42 reference files, but SKILL.md never points to them: the model will not open them
- +1No license
- +2Single-language instructions
- +3Description length 224: enough signal without eating the budget
- +4Structure: 35 headings
- +3Step-by-step instructions: 52 items
- +4Has examples (20 code blocks)
Quality base 70; lint remarks subtract, signals add up to 100. Result: 80.