← スキル一覧に戻る

close-session
by dyc5828
My Dotfiles
⭐ 0🍴 0📅 2026年1月14日
SKILL.md
name: close-session description: Wraps up a coding session by creating documentation and committing artifacts. Use when the user says "wrap up", "close session", "let's finish", or similar end-of-session language.
Close Session
Wraps up a coding session by documenting work and committing artifacts.
Steps
- Invoke the SUMA agent to create session documentation
- Stage session artifacts (SESSIONS/ or SESSIONS.md)
- Commit with message:
docs: add session log for [date] - Ask user if they want to push to remote
Git Commands
First check if in a git repo:
git rev-parse --git-dir 2>/dev/null
If not a git repo, skip git operations and inform user.
If in a git repo:
git add SESSIONS/ SESSIONS.md 2>/dev/null
git commit -m "docs: add session log for $(date +%Y-%m-%d)"
If commit fails (nothing to commit), inform user session was documented but no git changes needed.
If user confirms push:
git push
If push fails, report the error to user.
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓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
レビュー
💬
レビュー機能は近日公開予定です