/storage-lifecycle
Trigger Pattern Always required for Soroban audits - Inject Into Breadth agents, depth agents
$ npx -y skills add PlamenTSV/plamen --skill storage-lifecycle --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/storage-lifecycle
Context preview
The summary Claude sees to decide when to auto-load this skill.
Trigger Pattern Always required for Soroban audits - Inject Into Breadth agents, depth agents
SKILL.md
storage-lifecycle.SKILL.mdname: "storage-lifecycle"
description: "Trigger Pattern Always required for Soroban audits - Inject Into Breadth agents, depth agents"
STORAGE_LIFECYCLE Skill (Soroban)
> **Trigger Pattern**: Always required for Soroban audits > **Inject Into**: Breadth agents, depth agents > **Finding prefix**: `[SL-N]` > **Rules referenced**: R8, R10, R14
Soroban has three distinct storage types — Instance, Persistent, and Temporary — with fundamentally different lifetime semantics. Using the wrong storage type is a critical design flaw. Instance and Persistent entries expire if TTL is not extended; Temporary entries are permanently deleted at expiration with no recovery path.
1. Storage Type Audit
For every storage key defined (typically in a `DataKey` enum or equivalent), verify the correct storage type is used:
| DataKey Variant | Storage Type Used | Correct Type? | Justification | |----------------|------------------|--------------|---------------| | `{key}` | Instance / Persistent / Temporary | YES/NO | `{why this type is correct or wrong}` |
**Selection rules**:
- **Instance**: Contract-wide config that lives and dies with the contract itself (admin address, fee parameters, pause flag). Shared 64KB limit with all other Instance entries for this contract.
- **Persistent**: User-specific state that must survive indefinitely (balances, positions, allowances that should not expire). Requires explicit TTL extension. Archived entries can be restored but require a fee.
- **Temporary**: Truly ephemeral data that becomes invalid after a period (short-lived signatures, nonces with expiry, one-time-use proofs). Permanently deleted at expiry — **no recovery**.
**Common misclassifications to flag**:
- User balances stored as Temporary (funds permanently lost at expiry)
- Escrow or locked funds stored as Temporary
- Allowances stored as Temporary without the protocol communicating expiry to users
- Voting records or governance state stored as Temporary (votes silently discarded)
2. TTL Management
Soroban entries expire if their TTL is not extended. Identify all critical entries and verify TTL extension logic:
| DataKey | Storage Type | TTL Extended? | Extension Location | Threshold Value | Extend-To Value | Reasonable? | |---------|-------------|--------------|-------------------|----------------|-----------------|-------------| | `{key}` | Persistent/Instance | YES/NO | `{fn:line or NONE}` | `{ledgers or NONE}` | `{ledgers or NONE}` | YES/NO |
**Check for**:
- Critical entries (admin, balances, config) never having their TTL extended → will expire after the initial minimum TTL (~17 days at default settings)
- `extend_ttl` called with `threshold = 0` (extends on every call, expensive) vs reasonable threshold
- `extend_ttl` called only in some code paths but not others (e.g., extended on deposit but not on query)
- Extend-to value set too low (e.g., 100 ledgers ≈ 8 minutes) causing rapid re-expiry
**TTL extension pattern (correct)**:
let max_ttl = env.ledger().max_entry_ttl();
env.storage().persistent().extend_ttl(&key, max_ttl / 2, max_ttl);
**Dangerous anti-pattern**:
// Never extends TTL — entry will expire after initial minimum
env.storage().persistent().set(&DataKey::Balance(user), &balance);
// (no extend_ttl call anywhere for this key)
3. Instance Storage Bounds
Instance storage is shared across ALL instance entries for a contract and has a hard cap of approximately 64KB. Unbounded growth causes contract failure.
| DataKey | Stored in Instance? | Data Type | Can Grow Unboundedly? | Current Bound | Risk | |---------|--------------------|-----------|-----------------------|---------------|------| | `{key}` | YES/NO | `{type}` | YES/NO | `{N entries or unbounded}` | HIGH/MED/LOW |
**Check for**:
- `Vec<T>` stored in Instance storage — grows with each `push`
- `Map<K, V>` stored in Instance storage — grows with each new key
- Any collection type in Instance storage that users or external callers can add to
**Attack**: If Instance storage approaches 64KB, ALL contract operations that touch instance storage fail, effectively bricking the contract. An attacker who can add entries (e.g., via a public function that appends to an Instance-stored Vec) can DoS the entire contract.
**Estimate growth**: For each unbounded Instance collection, estimate: what is the maximum realistic entry size? How many entries before 64KB is reached? Is that number reachable by a malicious actor?
3b. Persistent Storage Single-Entry Growth DoS
Even though Persistent storage has no shared size limit, each individual ledger entry has a ~64KB size limit. A single Persistent key holding a growing collection hits this limit the same way Instance storage does.
| Persistent Key | Data Type | Grows With Users? | Approx Entries Before ~64KB | Permissionless Append? | Risk | |---------------|-----------|-------------------|----------------------------|------------------------|------| | `{key}` | `{Vec/Map}` | YES/NO | `{estimate}` | YES/NO | HIGH/MED/LOW |
**Dangerous pattern**: `DataKey::AllUsers` → `Vec<Address>` stored as a single Persistent entry. At ~32 bytes per Address, this hits ~64KB at ~2,000 entries.
**Correct pattern**: Variable DataKeys — one Persistent entry per user/item: `DataKey::User(address)` → `UserData`. This distributes data across unlimited entries with no single-entry size constraint.
**Check for**: Any Persistent storage key that stores a collection type (`Vec<T>`, `Map<K,V>`) where the collection grows with protocol usage (new users, new positions, new orders). If the append operation is permissionless or low-cost, flag as DoS risk (same severity as Instance storage DoS).
4. Archival Risk Assessment
Persistent entries that are not extended will eventually be archived by the network. Archived entries can be restored but this requires paying a fee and providing a Merkle proof — not a default user flow.
| DataKey | Persistent? | TTL Extended? |
Read more
name: "storage-lifecycle" description: "Trigger Pattern Always required for Soroban audits - Inject Into Breadth agents, depth agents"
STORAGE_LIFECYCLE Skill (Soroban)
> **Trigger Pattern**: Always required for Soroban audits > **Inject Into**: Breadth agents, depth agents > **Finding prefix**: `[SL-N]` > **Rules referenced**: R8, R10, R14
Soroban has three distinct storage types — Instance, Persistent, and Temporary — with fundamentally different lifetime semantics. Using the wrong storage type is a critical design flaw. Instance and Persistent entries expire if TTL is not extended; Temporary entries are permanently deleted at expiration with no recovery path.
1. Storage Type Audit
For every storage key defined (typically in a `DataKey` enum or equivalent), verify the correct storage type is used:
| DataKey Variant | Storage Type Used | Correct Type? | Justification | |----------------|------------------|--------------|---------------| | `{key}` | Instance / Persistent / Temporary | YES/NO | `{why this type is correct or wrong}` |
**Selection rules**:
- **Instance**: Contract-wide config that lives and dies with the contract itself (admin address, fee parameters, pause flag). Shared 64KB limit with all other Instance entries for this contract.
- **Persistent**: User-specific state that must survive indefinitely (balances, positions, allowances that should not expire). Requires explicit TTL extension. Archived entries can be restored but require a fee.
- **Temporary**: Truly ephemeral data that becomes invalid after a period (short-lived signatures, nonces with expiry, one-time-use proofs). Permanently deleted at expiry — **no recovery**.
**Common misclassifications to flag**:
- User balances stored as Temporary (funds permanently lost at expiry)
- Escrow or locked funds stored as Temporary
- Allowances stored as Temporary without the protocol communicating expiry to users
- Voting records or governance state stored as Temporary (votes silently discarded)
2. TTL Management
Soroban entries expire if their TTL is not extended. Identify all critical entries and verify TTL extension logic:
| DataKey | Storage Type | TTL Extended? | Extension Location | Threshold Value | Extend-To Value | Reasonable? | |---------|-------------|--------------|-------------------|----------------|-----------------|-------------| | `{key}` | Persistent/Instance | YES/NO | `{fn:line or NONE}` | `{ledgers or NONE}` | `{ledgers or NONE}` | YES/NO |
**Check for**:
- Critical entries (admin, balances, config) never having their TTL extended → will expire after the initial minimum TTL (~17 days at default settings)
- `extend_ttl` called with `threshold = 0` (extends on every call, expensive) vs reasonable threshold
- `extend_ttl` called only in some code paths but not others (e.g., extended on deposit but not on query)
- Extend-to value set too low (e.g., 100 ledgers ≈ 8 minutes) causing rapid re-expiry
**TTL extension pattern (correct)**:
let max_ttl = env.ledger().max_entry_ttl(); env.storage().persistent().extend_ttl(&key, max_ttl / 2, max_ttl);
**Dangerous anti-pattern**:
// Never extends TTL — entry will expire after initial minimum env.storage().persistent().set(&DataKey::Balance(user), &balance); // (no extend_ttl call anywhere for this key)
3. Instance Storage Bounds
Instance storage is shared across ALL instance entries for a contract and has a hard cap of approximately 64KB. Unbounded growth causes contract failure.
| DataKey | Stored in Instance? | Data Type | Can Grow Unboundedly? | Current Bound | Risk | |---------|--------------------|-----------|-----------------------|---------------|------| | `{key}` | YES/NO | `{type}` | YES/NO | `{N entries or unbounded}` | HIGH/MED/LOW |
**Check for**:
- `Vec<T>` stored in Instance storage — grows with each `push`
- `Map<K, V>` stored in Instance storage — grows with each new key
- Any collection type in Instance storage that users or external callers can add to
**Attack**: If Instance storage approaches 64KB, ALL contract operations that touch instance storage fail, effectively bricking the contract. An attacker who can add entries (e.g., via a public function that appends to an Instance-stored Vec) can DoS the entire contract.
**Estimate growth**: For each unbounded Instance collection, estimate: what is the maximum realistic entry size? How many entries before 64KB is reached? Is that number reachable by a malicious actor?
3b. Persistent Storage Single-Entry Growth DoS
Even though Persistent storage has no shared size limit, each individual ledger entry has a ~64KB size limit. A single Persistent key holding a growing collection hits this limit the same way Instance storage does.
| Persistent Key | Data Type | Grows With Users? | Approx Entries Before ~64KB | Permissionless Append? | Risk | |---------------|-----------|-------------------|----------------------------|------------------------|------| | `{key}` | `{Vec/Map}` | YES/NO | `{estimate}` | YES/NO | HIGH/MED/LOW |
**Dangerous pattern**: `DataKey::AllUsers` → `Vec<Address>` stored as a single Persistent entry. At ~32 bytes per Address, this hits ~64KB at ~2,000 entries.
**Correct pattern**: Variable DataKeys — one Persistent entry per user/item: `DataKey::User(address)` → `UserData`. This distributes data across unlimited entries with no single-entry size constraint.
**Check for**: Any Persistent storage key that stores a collection type (`Vec<T>`, `Map<K,V>`) where the collection grows with protocol usage (new users, new positions, new orders). If the append operation is permissionless or low-cost, flag as DoS risk (same severity as Instance storage DoS).
4. Archival Risk Assessment
Persistent entries that are not extended will eventually be archived by the network. Archived entries can be restored but this requires paying a fee and providing a Merkle proof — not a default user flow.
| DataKey | Persistent? | TTL Extended? |
Autonomous Web3 security auditor for Claude Code and OpenAI Codex CLI. Orchestrates 18-100 AI agents across 40+ phases to produce audit reports with verified PoC exploits — for smart contracts and L1 node-client infrastructure.
Repo: PlamenTSV/plamen
Other skills on plamen.
- /ability-analysis
Trigger Pattern Always (Aptos Move) - foundational security check - Inject Into Breadth agents, depth agents
Open skill - /bit-shift-safety
Trigger Pattern Always (Aptos Move) - Move VM aborts on shift = bit width - Inject Into Breadth agents, depth-edge-case
Open skill - /centralization-risk
Trigger Protocol has privileged roles (admin, operator, governance, resource account owner) - Covers Single points of failure, privilege escalation, external governance dependen...
Open skill - /cross-chain-timing
Trigger Pattern wormhole|layerzero|ccip|bridge|cross_chain|vaa|guardian|emitter|relay|remote_chain|payload|nonce.sequence - Inject Into Breadth agents, depth-external
Open skill - /dependency-audit
Trigger EXTERNAL_LIB flag detected (protocol uses third-party Move dependencies) - Used by Breadth agents, depth-external
Open skill - /economic-design-audit
Trigger Pattern MONETARY_PARAMETER flag (required) - Inject Into Breadth agents (merged via M4 hierarchy)
Open skill

