context-kit-skills
NewSix Claude skills for building and maintaining a "context kit" — a CLAUDE.md + structured docs/ tree that gives AI agents durable, low-noise project memory across sessions.
Summary
md file plus a structured docs/ directory that gives AI agents durable, low-noise project memory across sessions.
- It helps developers create, update, and organize project context so that Claude retains key knowledge about architecture, conventions, and decisions without cluttering conversations.
Install & Usage
mkdir -p .claude/skillsmkdir -p .claude/skills && curl -o .claude/skills/context-kit-skills.md https://raw.githubusercontent.com/wawoodwa/context-kit-skills/main/SKILL.md/context-kit-skillsUse Cases
Usage Examples
/context-kit-skills init
/context-kit-skills add-decision 'Use React Query for data fetching'
Update the context kit to reflect the new API endpoint structure.
Security Audits
Frequently Asked Questions
What is context-kit-skills?
This skill provides six Claude Code commands for building and maintaining a context kit — a CLAUDE.md file plus a structured docs/ directory that gives AI agents durable, low-noise project memory across sessions. It helps developers create, update, and organize project context so that Claude retains key knowledge about architecture, conventions, and decisions without cluttering conversations.
How to install context-kit-skills?
To install context-kit-skills: create the skills directory (mkdir -p .claude/skills), then run: mkdir -p .claude/skills && curl -o .claude/skills/context-kit-skills.md https://raw.githubusercontent.com/wawoodwa/context-kit-skills/main/SKILL.md. Finally, /context-kit-skills in Claude Code.
What is context-kit-skills best for?
context-kit-skills is a skill categorized under Documentation. It is designed for: agent. Created by wawoodwa.
What can I use context-kit-skills for?
context-kit-skills is useful for: Initialize a new CLAUDE.md and docs/ tree for a fresh project to establish shared context.; Update the context kit after a major refactor to keep agent memory accurate.; Add a new architectural decision record to the docs/ tree for long-term reference.; Prune outdated or redundant context entries to reduce noise in agent prompts.; Synchronize context kit changes across team members via version control.; Generate a summary of the current context kit for onboarding new developers or agents..