Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Automatically updates PROJECT_STATE.md after each commit with recent git info and optional AI-generated summaries to track project status and next steps.
Automatically updates PROJECT_STATE.md after each commit with recent git info and optional AI-generated summaries to track project status and next steps.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
Keep a living project state document updated after each commit, so any agent (or future session) can instantly understand where things stand.
โโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโ โ Git Commit โ โโโถ โ Post-commit Hook โ โโโถ โ PROJECT_STATE.md โ โ โ โ โ โ (auto-updated) โ โโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโ After each commit, the hook: Gathers git info (last commit, recent history, branch, changed files) Optionally calls an LLM to generate a smart summary Updates PROJECT_STATE.md in the repo root
# From the repo you want to enable: cd /path/to/your/repo /path/to/skills/project-context-sync/scripts/install.sh Or if you have the skill in your path: project-context-sync install This will: Install a post-commit hook in .git/hooks/ Create .project-context.yml with default config Create initial PROJECT_STATE.md Add PROJECT_STATE.md to .gitignore
cd /path/to/your/repo /path/to/skills/project-context-sync/scripts/uninstall.sh
Trigger an update without committing: cd /path/to/your/repo /path/to/skills/project-context-sync/scripts/update-context.sh
Edit .project-context.yml in your repo root: project_context: # Use AI to generate smart summaries (default: true) ai_summary: true # How many recent commits to include recent_commits: 5 # Include diff stats in context include_diff_stats: true # Sections to include sections: - last_commit - recent_changes - current_focus # AI-generated - suggested_next # AI-generated
With ai_summary: true (default): Generates intelligent summaries of what changed Infers current focus from recent commit patterns Suggests next steps Costs tokens but provides rich context Requires: Gateway HTTP API enabled (see below) With ai_summary: false: Just logs raw git info Fast and free Less intelligent but still useful
AI mode uses Clawdbot's OpenAI-compatible endpoint (/v1/chat/completions). This is disabled by default for security. To enable: // ~/.clawdbot/clawdbot.json { "gateway": { "http": { "endpoints": { "chatCompletions": { "enabled": true } } } } } Security notes: The endpoint inherits gateway auth (requires bearer token) With bind: "loopback" (default), only local processes can connect The script reads the token from ~/.clawdbot/clawdbot.json automatically Risk is minimal for local development setups
PROJECT_STATE.md is gitignored by default (regenerated locally) The hook requires Clawdbot to be running for AI summaries Without Clawdbot, falls back to raw git info mode
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.