Query the per-turn DecisionEntry log for skill co-occurrence patterns, meta-skill usage stats, and the router fixture corpus. Returns a JSON summary suitable for downstream LLM consumption. Used by meta-skill-creator's harvest step but also useful standalone for 'which skills did I use most this week?'
66
81%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
Lightweight read-only view over ~/.opensquilla/logs/decisions-*.jsonl. Aggregates DecisionEntry.skills_invoked (SCHEMA_VERSION 10) into co-occurrence frequencies, joins with SkillLoader.list_meta_specs() for meta-skill usage stats, and surfaces the tests/test_skills/router_fixtures/ corpus.
uv run python {baseDir}/scripts/explore.py \
--log-dir ~/.opensquilla/logs \
--query "Co-occurring chains for PDF workflows" \
--window-days 30 \
--include co_occurrences,meta_usage,router_fixtures \
--top-k 10JSON to stdout with keys co_occurrences, meta_usage, router_fixtures, and a placeholder string when the log is empty.
If no decision-log exists, return an empty result with a placeholder string explaining "no history; downstream should rely on user intent only".
94ac35e
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.