Agent skill
session-context
Gathers session context for project-analysis agent including git history, recent plans, and pending work detection.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/development/session-context
SKILL.md
Skill: session-context
Gathers session context for project-analysis agent: git history, recent plans, and pending work detection.
Trigger
Agent invokes skill with: "Gather session context for [session_type]"
Where session_type is one of: startup, resume, clear, compact
Usage
uv run --directory ${CLAUDE_SKILLS_PATH}/session-context python -m src [session_type] [--json]
Arguments
session_type: One ofstartup,resume,clear,compact(default:startup)--json: Output as JSON (default: human-readable)
Output
Returns structured context including:
Git Context
- Current branch
- Recent commits (configurable limit)
- Uncommitted changes summary
- Pending work flag
Recent Plans
- Last N plans from
.claude/plans/ - Topic, date, completion status for each
Configuration
- Session behavior settings from config.yml
Example Output (JSON)
{
"session_type": "startup",
"git": {
"branch": "main",
"last_commits": [
{"hash": "abc123", "message": "feat: add feature", "date": "2025-01-15"}
],
"uncommitted_changes": {
"staged": 2,
"unstaged": 1,
"untracked": 0
},
"has_pending_work": true
},
"recent_plans": [
{
"filename": "20250115_120000_feature-impl.md",
"topic": "feature-impl",
"date": "2025-01-15",
"has_incomplete_todos": false
}
],
"config": {
"session_behavior": "full"
}
}
Dependencies
- gitpython: Git repository interaction
- pyyaml: Config file parsing
- structlog: Logging
Integration
This skill is invoked by the project-analysis agent to gather context before presenting session analysis.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?