← Back to list

log-session
by teaglebuilt
⭐ 0🍴 0📅 Jan 23, 2026
SKILL.md
name: log-session description: "Log the current coding session to project memory. Use at the end of a session to record accomplishments, decisions, and follow-ups. Triggers on: log this session, save session, end session, record what we did."
Log Session to Memory
Record the current session's work to project memory.
The Job
- Summarize what was accomplished this session
- List files that were modified
- Record any decisions made
- Note follow-up tasks
- Append to sessions.json
Steps
1. Gather Session Info
Review the conversation and identify:
- Main accomplishments
- Files created or modified
- Technical decisions made
- Outstanding tasks or follow-ups
2. Create Session Entry
{
"id": "session-{YYYYMMDD}-{HHMMSS}",
"date": "{YYYY-MM-DD}",
"client": "cursor",
"summary": "Brief description of what was accomplished",
"files_modified": [
"path/to/file1.ts",
"path/to/file2.ts"
],
"decisions_made": [
"Used X library for Y reason",
"Chose approach A over B because..."
],
"follow_up": [
"Add tests for new feature",
"Refactor X when time permits"
],
"tags": ["feature", "auth", "refactor"]
}
3. Append to sessions.json
Read ~/aiconfig/memory/projects/{project}/sessions.json, append new session, write back.
4. Record Architectural Decisions (if any)
If significant architectural decisions were made, also add to decisions.json:
{
"id": "decision-{YYYYMMDD}-{NNN}",
"date": "{YYYY-MM-DD}",
"title": "Decision title",
"context": "Why this decision was needed",
"decision": "What was decided",
"rationale": "Why this approach was chosen",
"alternatives_considered": ["Option B", "Option C"],
"status": "accepted"
}
Output
Session logged to memory.
Summary: {summary}
Files modified:
- {file1}
- {file2}
Decisions recorded:
- {decision1}
Follow-up tasks:
- {task1}
- {task2}
Location: ~/aiconfig/memory/projects/{project}/sessions.json
Checklist
- Reviewed session accomplishments
- Listed modified files
- Captured decisions made
- Noted follow-up tasks
- Appended to sessions.json
- Added ADRs to decisions.json (if applicable)
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon