BeClaude

context-kit-skills

New
1GitHub TrendingDocumentationby wawoodwa

Six 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

1
Create the skills directory
mkdir -p .claude/skills
2
Download the skill file
mkdir -p .claude/skills && curl -o .claude/skills/context-kit-skills.md https://raw.githubusercontent.com/wawoodwa/context-kit-skills/main/SKILL.md
3
Invoke in Claude Code
/context-kit-skills

Use Cases

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.

Usage Examples

1

/context-kit-skills init

2

/context-kit-skills add-decision 'Use React Query for data fetching'

3

Update the context kit to reflect the new API endpoint structure.

View source on GitHub
agent

Security Audits

LicenseUnknownSourceWarnRepositoryPass

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..