From antigravity-awesome-skills
Evaluates and installs Context Kit for durable personal context in Claude Code and coding agents. Guides safe setup of context files, session digests, and briefings while keeping private data local.
How this skill is triggered — by the user, by Claude, or both
Slash command
/antigravity-awesome-skills:context-kitThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill when the user wants to:
Use this skill when the user wants to:
Context Kit is an external project that organizes personal context into Markdown artifacts and companion Claude Code skills. This skill helps the user decide what to adopt, where to store it, and how to avoid turning a useful context system into a pile of sensitive data.
Treat every personal context file as private by default. These files may contain identity details, family context, work history, contact notes, mental models, health constraints, or relationship information. Do not paste them into third-party tools, public repositories, issue trackers, or model contexts unless the user explicitly approves the exact subset.
git clone https://github.com/JDDavenport/context-kit.git
cd context-kit
sed -n '1,220p' scripts/install.sh
.gitignore excludes the chosen private context directory.~/.claude/context/ and ~/.claude/skills/.agent/context/ or another ignored directorypca-wiki.md for durable identity and domainspca-mental-models.md for decision rulespca-voice.md for writing preferencespca-protocols.md for hard rules and boundariesBefore running an installer, verify:
If anything is unclear, stop at inspection and provide the user with the exact lines that need review.
git clone https://github.com/JDDavenport/context-kit.git
cd context-kit
sed -n '1,220p' scripts/install.sh
find templates skills -maxdepth 2 -type f | sort
After inspection, summarize the files that would be installed and ask for confirmation before running the installer.
mkdir -p .agent/context
printf '.agent/context/\n' >> .gitignore
cp ~/Downloads/context-kit/templates/pca-wiki.md .agent/context/pca-wiki.md
Then trim the template to the minimum useful fields for the project instead of filling every personal section immediately.
curl without inspecting it firstnpx claudepluginhub sickn33/agentic-awesome-skills --plugin antigravity-awesome-skills5plugins reuse this skill
First indexed Jul 4, 2026
Evaluates and installs Context Kit for durable personal context in Claude Code and coding agents. Guides safe setup of context files, session digests, and briefings while keeping private data local.
Provides persistent cross-session memory for Claude Code using a two-layer architecture (hot cache + knowledge wiki), safety hooks, and end-of-day synthesis via /close-day.
Guides efficient use of context-mem MCP tools: compress large outputs, search before re-reading files, persist knowledge across sessions, and manage token budget.