
from shinkaevolve1,186
Extracts top-performing programs from a Shinka run and emits a compact Markdown bundle for iteration and analysis.
Shinka Inspect reads Shinka run artifacts (results dir / SQLite DB), ranks programs by combined_score, selects the top-k candidates (with correct-program fallback), and writes a single Markdown context bundle containing metadata, ranking tables, feedback, and code snippets. The artifact is designed to be loaded by coding agents for the next iteration.
Use this skill after an evolutionary run when you need a quick way to surface the best programs for manual review or further automated mutation. It is intended for analysis and preparation before launching further runs or tuning. Avoid when you still need to scaffold or execute runs.
inspect_best_programs.py (see scripts/) to generate the markdown bundle.Best used by coding-capable agents with file-system and python execution access (Copilot-like, local Codex, or CLI-capable agents).
This skill extracts top-performing programs from a Shinka evolutionary optimization run and emits a Markdown context bundle for iteration planning. The script is well-written with clean structure, argparse CLI, and good error handling, but failed to run due to missing pandas dependency. The SKILL.md provides clear triggers, workflow steps, and CLI argument docs. Niche tool only useful for ShinkaEvolve users.
pandasshinkaClean, well-structured skill with no security concerns. Main limitation is narrow audience — only relevant for ShinkaEvolve users. Code quality is solid despite the import failure (missing deps, not code bugs).