Learn-skills.dev ac-insight-extractor
Extract insights from autonomous coding sessions. Use when learning from completions, extracting patterns, analyzing decisions, or improving future performance.
install
source · Clone the upstream repo
git clone https://github.com/NeverSight/learn-skills.dev
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/NeverSight/learn-skills.dev "$T" && mkdir -p ~/.claude/skills && cp -r "$T/data/skills-md/adaptationio/skrillz/ac-insight-extractor" ~/.claude/skills/neversight-learn-skills-dev-ac-insight-extractor && rm -rf "$T"
manifest:
data/skills-md/adaptationio/skrillz/ac-insight-extractor/SKILL.mdsource content
AC Insight Extractor
Extract insights and learnings from autonomous coding sessions.
Purpose
Analyzes completed sessions to extract patterns, learnings, and improvements for future sessions.
Quick Start
from scripts.insight_extractor import InsightExtractor extractor = InsightExtractor(project_dir) insights = await extractor.extract_session_insights() await extractor.apply_learnings(insights)
API Reference
See
scripts/insight_extractor.py for full implementation.