storage

Installation
SKILL.md

netnode_kv

Persistent key-value store backed by IDA netnodes. Data is saved inside the IDB automatically. Supports full CRUD and O(1) key lookup via WHERE key = '...'.

Column Type Writable Description
key TEXT Unique key (identity, read-only)
value TEXT Yes Arbitrary-length value (blob storage)
-- Store a value
INSERT OR REPLACE INTO netnode_kv(key, value) VALUES('author', 'alice');

-- Read by key (O(1) lookup)
SELECT value FROM netnode_kv WHERE key = 'author';
Related skills
Installs
13
GitHub Stars
20
First Seen
Mar 19, 2026