arabelatso/trace-collection-assistant
Collect, normalize, and structure execution traces from instrumented programs (strace, ltrace) into JSON format for downstream analysis. Use when working with system call traces, library call traces, or execution logs that need to be analyzed for debugging, test case reproduction, or verification. Supports parsing strace/ltrace output, filtering noise, extracting debug information, and preparing traces for bug analysis or reproduction workflows.
npx skills add https://github.com/ArabelaTso/Skills-4-SE --skill trace-collection-assistant
This skill helps collect, normalize, and structure execution traces produced by instrumented programs (strace, ltrace), making them suitable for downstream analysis such as debugging, reproduction, or verification. It converts raw trace output into structured JSON format and provides tools for filtering, cleaning, and extracting relevant information.
# 1. Capture trace
strace -o trace.txt python buggy_program.py
# 2. Parse to JSON
python scripts/parse_strace.py trace.txt -o trace.json --pretty
# 3. Extract errors
python scripts/extract_debug_info.py trace.json --category errors --pretty
# 4. Filter to relevant operations
python scripts/filter_trace.py trace.json --error-only --remove-noise -o filtered.json --pretty
# 1. Capture trace
ltrace -o trace.txt ./program
# 2. Parse to JSON
python scripts/parse_ltrace.py trace.txt -o trace.json --pretty
# 3. Analyze specific functions
python scripts/filter_trace.py trace.json --include-calls "malloc,free,strlen" --pretty
Convert raw trace output to normalized JSON format.
For strace:
python scripts/parse_strace.py <input_file> [--output <output_file>] [--pretty]
For ltrace:
python scripts/parse_ltrace.py <input_file> [--output <output_file>] [--pretty]
Both parsers produce the same normalized JSON structure (see references/json_schema.md for details).
Remove noise and focus on relevant operations.
Common filtering operations:
# Show only errors
python scripts/filter_trace.py trace.json --error-only --pretty
# Remove common noise syscalls
python scripts/filter_trace.py trace.json --remove-noise --pretty
# Include specific calls
python scripts/filter_trace.py trace.json --include-calls "open,read,write,close" --pretty
# Exclude specific calls
python scripts/filter_trace.py trace.json --exclude-calls "gettimeofday,clock_gettime" --pretty
# Filter by argument pattern
python scripts/filter_trace.py trace.json --arg-pattern "config.json" --pretty
# Combine filters
python scripts/filter_trace.py trace.json --error-only --remove-noise --arg-pattern "/etc" -o filtered.json --pretty
Extract structured information for specific analysis tasks.
Extract all debug info:
python scripts/extract_debug_info.py trace.json --pretty
Extract specific categories:
# File operations only
python scripts/extract_debug_info.py trace.json --category file --pretty
# Network operations only
python scripts/extract_debug_info.py trace.json --category network --pretty
# Process operations only
python scripts/extract_debug_info.py trace.json --category process --pretty
# Errors only
python scripts/extract_debug_info.py trace.json --category errors --pretty
When debugging a failing program:
See references/analysis_guide.md for detailed debugging patterns.
When reproducing a bug:
See references/analysis_guide.md for reproduction workflows.
references/trace_formats.md - Detailed documentation on strace and ltrace output formats, common syscalls, error codesreferences/json_schema.md - Schema for normalized JSON output formatreferences/analysis_guide.md - Comprehensive guide on using traces for debugging and reproduction, including common patternsAll tools produce JSON output following the normalized schema:
{
"trace_type": "strace",
"source_file": "trace.txt",
"total_calls": 1234,
"traces": [
{
"syscall": "open",
"arguments": ["\"/etc/passwd\"", "O_RDONLY"],
"return_value": "3",
"line_number": 42,
"raw_line": "open(\"/etc/passwd\", O_RDONLY) = 3"
}
]
}
See assets/schema_template.json for the complete JSON schema definition.
--pretty flag for human-readable JSON output--remove-noise to filter out common irrelevant syscallsreferences/analysis_guide.md for common debugging patternsline_number field preserves execution order for sequence analysisTake arabelatso/trace-collection-assistant 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.