ejs-session-init
>
Install
mkdir -p .claude/skills/ejs-session-init-mcfuzzysquirrel && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/15250" && unzip -o skill.zip -d .claude/skills/ejs-session-init-mcfuzzysquirrel && rm skill.zipInstalls to .claude/skills/ejs-session-init-mcfuzzysquirrel
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Initialize an Engineering Journey System (EJS) session by creating a Session Journey file, refreshing the ADR/journey database index, and setting up metadata for continuous recording throughout the session.About this skill
EJS Session Initialization
Use this skill when a session is starting — for example when the user says "initialize session", "start session", "create session journey", or begins work on a new task, feature, or bug fix.
Steps
-
Refresh the EJS database index
python scripts/adr-db.py sync -
Determine the session ID
- Format:
ejs-session-YYYY-MM-DD-<seq>(2-digit daily sequence) - Check
ejs-docs/journey/YYYY/for existing sessions today and increment the sequence number.
- Format:
-
Create the Session Journey file
- Copy the template from
ejs-docs/journey/_templates/journey-template.md - Save to
ejs-docs/journey/YYYY/ejs-session-YYYY-MM-DD-<seq>.md
- Copy the template from
-
Populate initial metadata Fill in the frontmatter fields:
session_id— the generated session IDauthor— the human user (if known)date— today's date (YYYY-MM-DD)repo— current repository namebranch— current git branchagents_involved— list the active agents (e.g.,[copilot])decision_detected: false— initial value; updated at session endadr_links: []— populated if an ADR is created later
-
Capture initial Problem / Intent
- Write the user's stated goal or task description into the Problem / Intent section.
-
Confirm initialization
- Inform the user:
"Session initialized: ejs-session-YYYY-MM-DD-<seq>"
- Inform the user:
Contextual References
- Session Journey template:
ejs-docs/journey/_templates/journey-template.md - ADR template:
ejs-docs/adr/0000-adr-template.md - Lifecycle patterns:
ejs-docs/session-lifecycle-patterns.md - Database tool:
scripts/adr-db.py
Key Principle
Initialize early, capture context while it's fresh. A well-initialized session reduces the burden at session end and produces higher-quality documentation.