AutomationShell

Finish Session

by alexeykrol

Finish Session is an Automation skill for Claude Code, published by alexeykrol in claude-code-starter.

192 stars61 forkson alexeykrol/claude-code-starterAdded 2026/09/06Repository updated 2026/07/26
claude-codedevelopment-environmentframeworksvibe-coding
Install in seconds
Install Finish Session
Copy Finish Session into your Claude Code skills folder. Run the command in your terminal, or review the source on GitHub before installing.
terminal
npx degit https://github.com/alexeykrol/claude-code-starter/tree/main/.claude/skills/finish ~/.claude/skills/finish

Requires Node.js. Downloads this skill only — not the rest of the repository — into your Claude Code skills folder.

Without Node.js

git clone https://github.com/alexeykrol/claude-code-starter.git

Clones the whole repository, then copy the skill’s own directory into your skills folder yourself.

In this catalog

Source file
.claude/skills/finish/SKILL.md in alexeykrol/claude-code-starter
Installs to
~/.claude/skills/finish
Collection
One of 16 skills cataloged from this repository
Category
Automation2032 skills

What Finish Session does

Finish Session runs tests, checks git changes, commits allowed files, and updates session memory files. Use it at the end of a Claude Code session to record results and next steps.

Finish Session is cataloged under Automation on DirSkills. Finish Session comes from a repository tagged claude-code, development-environment, frameworks and vibe-coding.

Documentation

README

Skill: Finish Session

Что делать

1. Запустить тесты

Если в проекте есть тесты:

# Определить тип проекта и запустить тесты
if [ -f "package.json" ]; then
  npm test 2>&1 || true
elif [ -f "pytest.ini" ] || [ -f "pyproject.toml" ] || [ -d "tests" ]; then
  python3 -m pytest tests/ 2>&1 || true
fi

Если тесты падают:

  • Попробовать починить (до 3 попыток, автономно)
  • Если не удалось — коммитить код, но записать в SNAPSHOT.md что тесты красные и что конкретно падает
  • Не блокировать весь finish из-за упавшего теста

2. Проверить git status

git status --short
git diff --stat

3. Коммит изменений (по Commit Policy)

Если есть незакоммиченные изменения — следовать правилу commit-policy.md:

This is the opening of the README. Read the full README on GitHub.

Commands Finish Session provides

Slash commands named in this skill’s SKILL.md, listed in the order they first appear.

  • /save-dialog
  • /finish

Frequently asked about Finish Session

  • What else does alexeykrol publish alongside Finish Session?

    Finish Session is one of 16 skills that DirSkills catalogs from alexeykrol/claude-code-starter, the repository it ships in. Its siblings there include Content Index, Content Review and Database Migration. Each one is a separate skill with its own page in this directory, installs the same way Finish Session does, and is maintained by alexeykrol in that same repository. The rest of the collection is listed on the alexeykrol/claude-code-starter page.

  • How does Finish Session compare to other Automation skills?

    Finish Session ranks #1832 by stars among the 2032 Automation skills in this catalog. The most-starred ones next to it are Autonomous Loops, Autonomous Agent Harness and Automation Audit Ops. DirSkills ranks by the star count of the repository each skill ships in, so that order reflects how popular those repositories are rather than any review of Finish Session against them. Open each page to compare what they document and how they install.

More from alexeykrol/claude-code-starter

Finish Session is one of 16 skills cataloged on DirSkills from alexeykrol/claude-code-starter.

See all 16 skills
🧭
5h ago

Content Index

Content Index обновляет индексы, registry и оглавления после изменений в контенте. Используют, чтобы проверить метаданные, ссылки и достижимость файлов в структуре проекта.
Writing
19261
📝
5h ago

Content Review

Content Review проверяет контент перед финализацией, публикацией или handoff. Используйте его для оценки структуры, источников, стиля, формата и ссылок в content units или bundles.
Quality
19261
🗄️
5h ago

Database Migration

Database Migration converts SQLite schemas to PostgreSQL or Supabase migrations and checks type, key, and constraint compatibility. Use it when moving an app database to Postgres and generating deployable SQL.
DevOps
19261
📝
5h ago

Enrich

Enrich makes existing content more practical by adding examples, exercises, quizzes, glossaries, and cross-links. Use it when you want to improve learning value without changing the original meaning.
Writing
19261
🔁
5h ago

Handoff

Handoff prepares reliable cross-session transfer files after auditing project state and documentation. Use it to pass work to a new Claude Code session, preserve context, and verify that the next session understood the scope and readiness state.
AI Engineering
19261
🧹
5h ago

Housekeeping

Housekeeping обновляет README, CHANGELOG, версию и метафайлы проекта по фактическому состоянию кода. Housekeeping используют перед push или по запросу, чтобы убрать дрейф документации и лишние tracked files.
Writing
19261