agents/skills/solana/zero-state-return/SKILL.md
Trigger Always inject into Arithmetic agent (extends existing ZERO_STATE_ECONOMICS) - Purpose Check protocol return-to-zero state, not just initial zero state
npx skillsauth add plamentsv/plamen zero-state-returnInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Trigger: Always inject into Arithmetic agent (extends existing ZERO_STATE_ECONOMICS) Purpose: Check protocol return-to-zero state, not just initial zero state
ZERO_STATE_ECONOMICS checks initial zero state. This skill EXTENDS it to cover:
After normal operations, can the protocol return to:
| State | Trigger | Check |
|-------|---------|-------|
| lp_supply == 0 | All users burned LP tokens / withdrew | Does this recreate first-depositor conditions? |
| {protocol}.{total_tracked} == 0 | No funds deposited | Are there residual rewards or time-decay state? |
| Empty strategy set | All strategies removed / deallocated | Can protocol still function? |
| Zero liquidity | All LP withdrawn | What happens to accumulated fees / ratio snapshots? |
When LP supply returns to zero, check for:
Does re-entering zero state recreate first-depositor attack conditions?
| Scenario | Initial State | Return-to-Zero State | Same Vulnerability? | |----------|---------------|---------------------|---------------------| | First depositor attack | lp_supply=0, total_tracked=0 | lp_supply=0, total_tracked=X (residual) | WORSE if residual > 0 | | Exchange rate manipulation | No LP exists | No LP, but token account has balance | YES + amplified | | Donation attack | Clean state | Dirty state (dust, residual) | YES + pre-seeded |
Key question: Does first-depositor protection (minimum deposit, burned shares) apply only on first initialize or also on return-to-zero re-deposits?
Check for admin/authority instructions that can force zero state:
emergency_withdraw() - does it clear ALL state (total tracked, time-decay state, ratio snapshots)?close_vault() - what state persists in remaining accounts?migrate() - does old program retain residual token account balances?force_deallocate() - can it create accounting mismatch between vault state and token accounts?For each: what state persists after the "reset"?
## Zero-State Return Analysis for [ProgramName / Vault]
### Can protocol return to zero state?
- [ ] All users can withdraw / burn LP (no locked funds)
- [ ] All LP tokens can be burned
- [ ] LP supply can reach exactly zero
### What persists when LP supply = 0?
- [ ] Accrued rewards / time-decay state: [amount/none]
- [ ] Protocol fees / ratio snapshots: [amount/none/resets]
- [ ] Dust in token accounts: [yes/no]
- [ ] Pending operations / withdrawal receipts: [list/none]
- [ ] Strategy allocations: [zeroed/residual]
### Re-entry vulnerability?
- [ ] Initial zero state protected: [yes/no/how]
- [ ] Return-to-zero state protected: [yes/no/how]
- [ ] Same protection mechanism: [yes/no]
### Exchange rate at return-to-zero:
- [ ] Formula: [show calculation]
- [ ] With residual X: [show calculation]
- [ ] Can attacker inflate rate before re-entry: [yes/no]
For each state variable used in arithmetic or control flow, check its initial value before any user interaction:
last_timestamp, start_time, or last_update in subtraction or division BEFORE it has ever been set, the result may be unexpected (e.g., clock.unix_timestamp - 0 = enormous elapsed time, or division by a value derived from 0).// Pattern 1: Check covers initial zero only
if vault.total_shares == 0 {
return Ok(1_000_000); // 1:1 rate (scaled)
}
// QUESTION: What if total_shares returns to 0 with token_account.amount > 0?
// Pattern 2: Exchange rate with balance
let rate = vault.total_value
.checked_div(vault.total_shares)
.ok_or(ErrorCode::DivisionByZero)?;
// QUESTION: What if total_value > 0 and total_shares = 0?
// QUESTION: What if both return to 0 but at different slots?
// Pattern 3: First deposit protection
require!(
vault.total_shares > 0 || ctx.accounts.deposit_amount >= MIN_FIRST_DEPOSIT,
ErrorCode::DepositTooSmall
);
// QUESTION: Does this check exist for RE-deposits after full exit?
// Pattern 4: Time-decay state
let unlocked = vault.decay_state * elapsed / DECAY_DURATION;
// QUESTION: Does decay state persist when total_shares = 0?
// QUESTION: Next depositor inherits unlocked value?
**ID**: [ZS-N]
**Severity**: [typically HIGH if funds extractable]
**Location**: programs/{program}/src/instructions/{file}.rs:LineN
**Title**: Return-to-zero state allows [attack] due to [residual state]
**Description**:
- Protocol can return to lp_supply=0 via [mechanism]
- When this happens, [state variable] retains value of [amount]
- A new depositor can [exploit path]
**Impact**: [Fund extraction / exchange rate manipulation / unfair distribution]
**PoC Scenario**:
1. Users deposit and earn rewards
2. All users withdraw, LP supply = 0
3. Residual state remains: {time_decay_var} = X
4. Attacker deposits minimum amount
5. Attacker claims X rewards via inflated exchange rate
This skill does NOT replace ZERO_STATE_ECONOMICS. It EXTENDS it:
| Check | ZERO_STATE_ECONOMICS | ZERO_STATE_RETURN | |-------|---------------------|-------------------| | Initial zero state | YES | - | | First depositor attack | YES | - | | Return to zero | - | YES | | Residual assets (time-decay state, fees, dust) | - | YES | | Re-entry vulnerability | - | YES |
When applying ZERO_STATE_ECONOMICS, ALSO apply ZERO_STATE_RETURN.
development
Prepare Solidity projects for a security audit — test coverage, test quality, NatSpec docs, code hygiene, dependency health, best-practice enforcement, deployment readiness, and project documentation checks. Generates a scored Audit Readiness Report and optionally runs static analysis. Trigger on: "prepare for audit", "audit readiness", "pre-audit check", "audit prep", "NatSpec check", or any request to review a Solidity codebase before a security review.
development
Launch the Plamen deterministic Web3 security audit pipeline
development
Run the Plamen smart-contract audit wizard in Codex
testing
Launch the Plamen deterministic L1 infrastructure audit pipeline