smithery.ai

checkout

Automated session closing - no prompts, just capture and display.

First seen Mar 20, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

LicenseMIT
Declared agents claude-code

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,100 B
  • docs SUMMARY.md 81 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2 installs

SKILL.md

ELF Checkout Command

Automated session closing - no prompts, just capture and display.

What It Does

The /checkout command:

  • Auto-detects session activity (commits, files, domains)
  • Counts heuristics recorded during the session
  • Displays a summary
  • No questions asked

Usage

/checkout

Execution

python ~/.claude/emergent-learning/src/query/checkout.py

Output Example

┌────────────────────────────────────┐
│    Emergent Learning Framework     │
├────────────────────────────────────┤
│                                    │
│      Session Complete              │
│      Auto-capturing learnings...   │
│                                    │
└────────────────────────────────────┘

[*] Session Summary (auto-detected)
   Domains: infrastructure, backend
   Commits: 3
   Files modified: 7
     - src/query/checkin.py
     - src/query/checkout.py
     ... and 5 more
   Heuristics recorded: 2

[OK] Checkout complete.

What Gets Captured

  • Domains: Auto-detected from file paths (dashboard, frontend, backend, infrastructure)
  • Commits: Count of recent commits in the repo
  • Files: List of recently modified files
  • Heuristics: Count from database (last 4 hours)

Philosophy

Checkout should be frictionless. Record learnings during the session using:

  • [LEARNED:domain] pattern markers in subagent outputs
  • record-heuristic.py script when you discover something
  • Failure analysis files when things break

Checkout just summarizes what happened - it doesn't interrogate you at the end.

Complementing /checkin

Command Purpose
/checkin Load context at session start
/checkout Show session summary at end