ai/skills/perfetto_infra_querying_traces/TEST.md
Verify that the skill files exist.
ls ai/skills/perfetto_infra_querying_traces/SKILL.md
Verify: File exists.
Run a simple query using trace_processor.
trace_processor query dummy.pftrace "SELECT 1"
Verify: Command runs (might fail if dummy.pftrace not found, but checks binary existence).
Prompt: "I have a trace file called my_trace.pftrace. How do I find all slices longer than 1 second?"
Verify:
trace_processor.dur > 1e9 (or dur > 1000000000).slices.with_context or thread_or_process_slice for better context.Prompt: "I need to run many queries on a large trace. What's the best way?" Verify: