Context engineering and session management skills for AI coding agents.
| Skill | Description |
|---|---|
| context-doctor | Audits project documentation for context engineering best practices |
| session-handoff | Preserves and restores cross-session continuity for coding agents |
# List available skills in this repo
npx skills add kitsunekode/agent-skills --list
# Install a specific skill
npx skills add kitsunekode/agent-skills --skill session-handoff
npx skills add kitsunekode/agent-skills --skill context-doctor
# Or find skills interactively
npx skills find session handoff# Add as a plugin marketplace (Claude Code)
/plugin marketplace add kitsunekode/agent-skills
# Browse + install (interactive)
/plugin marketplace browse# Clone and symlink to your skills directory
git clone https://github.com/kitsunekode/agent-skills.git
ln -s $(pwd)/agent-skills/skills/session-handoff ~/.agents/skills/session-handoff
ln -s $(pwd)/agent-skills/skills/context-doctor ~/.agents/skills/context-doctorWhen installed as a plugin, the following hooks are automatically registered:
| Hook | Event | Purpose |
|---|---|---|
| SessionStart | Session begins | Injects prior .context/handoff.md into context |
| PreCompact | Before compaction | Warns to save state before context is compacted |
| Stop | Session ends | Prompts handoff writing if meaningful work was done |
Use template/SKILL.md.template as a starting point for new skills.
Apache 2.0