arabelatso/state-snapshot-instrumenter
Instrument programs (Python, C/C++, Java) to capture snapshots of key program states at runtime, including variables, memory, and call stacks. Use when you need to debug complex issues, reproduce test cases, prepare traces for formal verification, or analyze program execution. Supports manual instrumentation points, automatic function/method instrumentation, and conditional triggers. Outputs structured JSON snapshots for debugging, replay, and verification workflows.
npx skills add https://github.com/ArabelaTso/Skills-4-SE --skill state-snapshot-instrumenter
This skill instruments programs to capture snapshots of key program states at runtime. Snapshots include variable values, memory state, call stacks, and execution context, saved in structured JSON format for analysis, debugging, reproduction, and verification.
# 1. Add markers to your code
# def my_function(x):
# __SNAPSHOT__("my_function:start")
# result = x * 2
# __SNAPSHOT__("my_function:end")
# return result
# 2. Instrument the code
python scripts/instrument_python.py my_program.py --mode manual
# 3. Run instrumented program
python my_program_instrumented.py
# Snapshots saved to snapshots.json
# 4. Analyze snapshots
python scripts/analyze_snapshots.py snapshots.json --list
# 1. Add markers to your code
# int main() {
# __SNAPSHOT__("main:start");
# int x = 10;
# __SNAPSHOT__("main:end");
# return 0;
# }
# 2. Instrument the code
python scripts/instrument_c.py program.c --mode manual
# 3. Compile with runtime
gcc program_instrumented.c scripts/snapshot_runtime.c -o program -rdynamic
# 4. Run and analyze
./program
python scripts/analyze_snapshots.py snapshots.json --list
# 1. Add markers to your code
# public static void main(String[] args) {
# __SNAPSHOT__("main:start");
# int x = 10;
# __SNAPSHOT__("main:end");
# }
# 2. Instrument the code
python scripts/instrument_java.py Program.java --mode manual
# 3. Compile and run
cp scripts/SnapshotRuntime.java snapshot/
javac snapshot/SnapshotRuntime.java
javac Program_instrumented.java
java Program_instrumented
# 4. Analyze
python scripts/analyze_snapshots.py snapshots.json --list
Add explicit __SNAPSHOT__("location") markers at specific points in your code.
Python:
def process_data(items):
__SNAPSHOT__("process_data:entry")
result = []
for item in items:
__SNAPSHOT__("loop_iteration")
result.append(item * 2)
__SNAPSHOT__("process_data:exit")
return result
C/C++:
int calculate(int x, int y) {
__SNAPSHOT__("calculate:entry");
int result = x + y;
__SNAPSHOT__("calculate:exit");
return result;
}
Java:
public int calculate(int x, int y) {
__SNAPSHOT__("calculate:entry");
int result = x + y;
__SNAPSHOT__("calculate:exit");
return result;
}
Instrument:
python scripts/instrument_python.py file.py --mode manual
python scripts/instrument_c.py file.c --mode manual
python scripts/instrument_java.py file.java --mode manual
Automatically instrument all function/method entry and exit points.
python scripts/instrument_python.py file.py --mode auto
python scripts/instrument_c.py file.c --mode auto
python scripts/instrument_java.py file.java --mode auto
This captures state at every function boundary without manual markers.
Python:
# Manual mode
python scripts/instrument_python.py input.py --mode manual -o output.py
# Automatic mode
python scripts/instrument_python.py input.py --mode auto -o output.py
# In-place modification
python scripts/instrument_python.py input.py --mode manual --inplace
C/C++:
# Instrument
python scripts/instrument_c.py input.c --mode manual -o output.c
# Compile with runtime
gcc output.c scripts/snapshot_runtime.c -o program -rdynamic
# Run with custom output file
SNAPSHOT_OUTPUT=my_snapshots.json ./program
Java:
# Instrument
python scripts/instrument_java.py Input.java --mode manual -o Output.java
# Setup runtime
cp scripts/SnapshotRuntime.java snapshot/
javac snapshot/SnapshotRuntime.java
# Compile and run
javac Output.java
SNAPSHOT_OUTPUT=my_snapshots.json java Output
List all snapshots:
python scripts/analyze_snapshots.py snapshots.json --list
Show detailed snapshot:
python scripts/analyze_snapshots.py snapshots.json --show 5
View execution timeline:
python scripts/analyze_snapshots.py snapshots.json --timeline
Track variable changes:
python scripts/analyze_snapshots.py snapshots.json --track-var "user_id"
Compare two snapshots:
python scripts/analyze_snapshots.py snapshots.json --compare 10 20
Filter snapshots:
# By location
python scripts/analyze_snapshots.py snapshots.json --filter-location "main"
# By type
python scripts/analyze_snapshots.py snapshots.json --filter-type "function_entry"
Python:
import snapshot_runtime
# Disable snapshots temporarily
snapshot_runtime.disable()
# ... performance-critical code ...
snapshot_runtime.enable()
# Set custom output file
snapshot_runtime.set_output_file("custom.json")
# Manually save snapshots
snapshot_runtime.save_snapshots()
C/C++:
#include "snapshot_runtime.h"
snapshot_disable();
// ... performance-critical code ...
snapshot_enable();
snapshot_finalize(); // Manually save
Java:
import snapshot.SnapshotRuntime;
SnapshotRuntime.disable();
// ... performance-critical code ...
SnapshotRuntime.enable();
SnapshotRuntime.setOutputFile("custom.json");
SnapshotRuntime.saveSnapshots();
Capture comprehensive state to understand complex bugs:
See references/use_cases.md for detailed debugging workflows.
Extract exact inputs and state to reproduce failures:
See references/use_cases.md for reproduction workflows.
Generate execution traces for verification tools:
See references/use_cases.md for verification workflows.
references/instrumentation_guide.md - Comprehensive guide on instrumenting programs, including language-specific instructions, best practices, and troubleshootingreferences/snapshot_format.md - Complete specification of the JSON snapshot format, including language-specific variations and serialization rulesreferences/use_cases.md - Detailed workflows for debugging, reproduction, verification, performance analysis, and concurrency debuggingExample instrumented programs are provided in assets/:
example_python.py - Python example with manual snapshotsexample_c.c - C example with manual snapshotsexample_java.java - Java example with manual snapshotsAll snapshots are saved in unified JSON format:
{
"format_version": "1.0",
"language": "python",
"total_snapshots": 5,
"snapshots": [
{
"snapshot_id": 1,
"timestamp": "2026-02-17T19:30:45",
"location": "main:start",
"type": "manual",
"call_stack": [...],
"local_variables": {...}
}
]
}
See assets/snapshot_schema.json for the complete JSON schema.
SNAPSHOT_OUTPUT environment variableTake arabelatso/state-snapshot-instrumenter from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.