Agent skill
context
[Utilities] Load project context for current session
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/context-duc01226-easyplatform
SKILL.md
[IMPORTANT] Use
TaskCreateto break ALL work into small tasks BEFORE starting — including tasks for each file read. This prevents context loss from long files. For simple tasks, AI may ask user whether to skip.
Quick Summary
Goal: Load project context for the current session (git status, branch info, recent changes).
Workflow:
- Gather -- Run git status, branch info, recent commits
- Analyze -- Identify current work context and pending changes
- Present -- Summarize context for session awareness
Key Rules:
- Provides situational awareness at session start
- Shows branch, uncommitted changes, recent commits
- Non-destructive: read-only operation
Load Project Context
Load current development context to help with subsequent tasks.
Git Status
git status --short
git branch --show-current
Recent Activity
# Recent commits
git log --oneline -5
# Uncommitted changes
git diff --stat
Project Pattern Discovery
Before reporting project structure, search the codebase for actual services and apps:
- Search for: project services (
ls src/Services/), frontend apps, key libraries - Look for: service directories, app directories, shared library directories
MANDATORY IMPORTANT MUST Read the
project-structure-reference.mdcompanion doc for project-specific patterns. If file not found, continue with search-based discovery above.
Project Structure Reminder
Discover the actual project structure by running:
# Backend services
ls -d src/Services/*/
# Frontend apps
ls -d {frontend-apps-dir}/*/
# Key libraries
ls -d {frontend-libs-dir}/*/
Development Patterns
Backend: Clean Architecture + CQRS + Entity Events Frontend: Component framework + state management
Current Session Focus
Based on the git status, identify:
- What files are being worked on
- What feature/fix is in progress
- Any uncommitted changes that need attention
Summarize the current state to help with subsequent tasks.
IMPORTANT Task Planning Notes (MUST FOLLOW)
- Always plan and break work into many small todo tasks
- Always add a final review todo task to verify work quality and identify fixes/enhancements
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?