Iteratively shape a JSON dataset across multiple tool calls
언제 쓸까: Multi-step transform where you want to keep intermediate variables.
사전 조건
- Server/skill installed and authenticated — See repo README
흐름
-
Load dataeval_js: const data = await fetch('https://example.com/data.json').then(r => r.json()); data.length✓ 복사됨→ Length printed
-
Iterateeval_js: const filtered = data.filter(x => x.status === 'active'); filtered.length✓ 복사됨→ Filtered count — data still in heap
-
Snapshotsnapshot_save name=cleanup-2026-05-21✓ 복사됨→ Saved
결과: Notebook-style JS sessions without a notebook.
함정
- V8 isolate has no Node APIs by default. If you need fs/net, opt in explicitly — V8 isolate has no Node APIs by default. If you need fs/net, opt in explicitly — and remember Claude can then write to disk.