
Session Start
- 48 installs
- 31 repo stars
- Updated August 2, 2026
- shipshitdev/library
Helps with ai & agent building tasks.
About
session-start is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.
- session-start
- AI & Agent Building
- AI-coding skill
Session Start by the numbers
- 48 all-time installs (skills.sh)
- +3 installs in the week ending Jul 27, 2026 (Skillselion tracking)
- Ranked #7,411 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 3, 2026 (Skillselion catalog sync)
npx skills add https://github.com/shipshitdev/library --skill session-startAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 48 |
|---|---|
| repo stars | ★ 31 |
| Last updated | August 2, 2026 |
| Repository | shipshitdev/library ↗ |
What it does
Helps with ai & agent building tasks.
Files
Session Start
Load critical context and recent history at the start of each session or after /clear.
Contract
Inputs:
- Project root
- Current date
- Existing
.agents/memory/and.agents/sessions/files
Outputs:
- Loaded repo memory summary
- Today's session context (if any)
- Open next-steps surfaced from the latest session log
Creates/Modifies:
- No required writes
- May create today's session file only through
session-documenter
External Side Effects:
- None
Confirmation Required:
- Before creating or rewriting session files when paths are ambiguous
Delegates To:
session-documenterto track the active sessionrules-captureif startup reveals uncaptured preferences
Workflow
1. Read Repo Memory (CRITICAL — source of truth)
Read the repo's memory files at .agents/memory/. These are the source of truth for current project context: architecture, deployment state, migrations, known gotchas, and operating decisions. Apply the staleness and temporary-file checks defined in the global CLAUDE.md / MEMORY.md before citing any entry.
2. Read Today's Session File
Read today's session to understand what was already done before /clear:
Read today's session file at .agents/sessions/YYYY-MM-DD.md (where YYYY-MM-DD is today's date).
If the file exists, it shows tasks completed, decisions made, files changed, mistakes, and next steps. If it doesn't exist yet, this is a fresh session day.
3. Activate Session Documenter
Run the session-documenter skill to track all work throughout the session.
4. Confirmation
After reading memory and the session file, provide a brief confirmation (5-7 bullet points max):
- Critical rules understood
- Repo memory loaded (flag any stale
last_verifiedorstatus: temporaryfiles) - Today's session context loaded (if it exists)
- Session documenter active
- Open next-steps surfaced from the latest session log (if any)
Related Skills
- session-end — Document session before clearing context
- session-documenter — Tracks work throughout the session
{
"name": "session-start",
"version": "1.0.0",
"description": "Load critical preferences, session history, and inbox tasks at session start",
"author": {
"name": "Ship Shit Dev",
"email": "hello@shipshit.dev",
"url": "https://shipshit.dev"
},
"license": "MIT",
"skills": "."
}