← Back to list

session-start
by BlindsidedGames
Idle Dyson Swarm Project
⭐ 7🍴 1📅 Jan 16, 2026
SKILL.md
name: session-start description: Initialize a coding session by loading git workflow rules and checking Unity console status. Run this at the start of each session.
Session Start Skill
Initialize your coding session with essential context and status checks.
What This Skill Does
- Loads Git Workflow Rules - Ensures safe branching and commit practices
- Checks Unity Console - Identifies any existing errors or warnings
- Verifies Current State - Confirms branch status and working tree
Usage
Run at the start of each coding session:
/session-start
Session Checklist
1. Git Status Check
First, verify your git state:
git status
git branch
Expected state:
- On a feature/refactor/fix/phase branch (NOT main)
- Working tree clean, or with intentional uncommitted changes
If on main: Create a branch before making changes:
git checkout -b feature/description
2. Unity Console Check
Check for pre-existing compilation errors:
read_console(action="get", types=["error", "warning"], count=20)
Expected state:
- No errors (compilation successful)
- Warnings are acceptable but should be addressed if reasonable
If errors exist: Fix compilation errors before starting new work.
3. Review Recent History
Understand what was done previously:
git log --oneline -5
Workflow Rules Summary
Branch Types
feature/- New functionalityrefactor/- Code restructuringfix/- Bug fixesphase/- Multi-part changes
Commit Types
feat:- New featurerefactor:- Restructuringfix:- Bug fixdocs:- Documentationtest:- Testschore:- Config/tooling
Core Principles
- Never work directly on main
- Commit after each logical phase
- Verify compilation before commits
- Run code-simplify before PRs
- Test save compatibility before merging
Quick Actions
Start New Feature
git checkout main && git pull origin main
git checkout -b feature/my-feature
Resume Work
git status # Check state
git stash list # Check for stashed work
git stash pop # Restore if needed
Before Committing
- Run
/unity-consoleto verify no errors - Stage changes:
git add . - Commit:
git commit -m "type: description"
Related Skills
/unity-console- Check Unity Editor console/unity-mcp- Unity MCP expert guidance/git-workflow- Detailed git workflow rules
Full Documentation
- Git workflow:
.claude/git-workflow.md - Service layer:
Assets/Scripts/Services/README.md - Project instructions:
CLAUDE.md
Score
Total Score
40/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