Context Kit
When to Use
Use this skill when the user wants to:
- Set up durable personal context files for Claude Code or another coding agent
- Compare Context Kit's Personal Context Artifact pattern with an existing memory or project-notes system
- Adapt a context template structure without copying private details into the chat
- Review whether a one-line installer or downloaded skill pack is appropriate before running it
- Create a safer, local-first plan for CRM notes, open loops, session digests, or morning briefings
Overview
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.
Safety Rules
- Do not run a remote install script until the user has seen the command, source repository, and target
paths it will write to.
- Prefer cloning or downloading the repository for inspection before executing any installer:
git clone https://github.com/JDDavenport/context-kit.git
cd context-kit
sed -n '1,220p' scripts/install.sh
- Never store passwords, API keys, recovery codes, private keys, session tokens, or payment details in
personal context artifacts.
- If the user wants contact notes or CRM files, store only information they are comfortable keeping in
local plaintext Markdown.
- Before adding these files to a repo, confirm
.gitignore excludes the chosen private context directory.
- If adapting Context Kit to a team or company setting, separate personal context from company-confidential
or customer-confidential information.
Setup Workflow
- Ask what the user wants Context Kit to improve: session startup context, voice consistency, relationship
memory, open-loop tracking, daily briefings, or handoff summaries.
- Inspect the upstream project and installer before running anything.
- Choose a storage location:
- Claude Code default:
~/.claude/context/ and ~/.claude/skills/
- Project-local context:
.agent/context/ or another ignored directory
- Portable setup: a private notes repo with explicit sync rules
- Create a minimal starter set before filling everything:
pca-wiki.md for durable identity and domains
pca-mental-models.md for decision rules
pca-voice.md for writing preferences
pca-protocols.md for hard rules and boundaries
- Add only enough detail to make the next agent session useful. Leave sensitive, speculative, or outdated
details out until there is a clear reason to include them.
- Add a recurring review cadence. Personal context goes stale quickly; stale context is worse than no
context when it drives decisions.
Installation Review Checklist
Before running an installer, verify:
- The repository URL is exactly the one the user intended
- The script writes only to expected local directories
- The script does not upload files, send telemetry, or edit shell startup files unexpectedly
- The target directories are not inside a public repo
- The user has a rollback path, such as removing the copied templates and skills
If anything is unclear, stop at inspection and provide the user with the exact lines that need review.
Examples
Example: Inspect before installing
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.
Example: Create a private project-local context directory
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.
Best Practices
- Keep context files short enough that an agent can read them at session start without drowning in stale
detail.
- Separate durable facts from temporary state. Use project workplans or task trackers for temporary state.
- Label assumptions and uncertain memories instead of presenting them as facts.
- Review personal context after major life, role, health, or project changes.
- Store voice examples and anti-examples separately from private identity details when possible.
Common Pitfalls
- Running a shell installer directly from
curl without inspecting it first
- Committing personal context files to a public repository
- Storing secrets because "the agent needs to know everything"
- Letting relationship or health notes become outdated and still treating them as current
- Copying upstream paid or license-unclear content instead of linking to it or writing original local notes
Limitations
- This skill does not verify the current upstream license or installer behavior on its own; inspect the live
repository before running commands.
- It does not replace a dedicated secrets manager, CRM, password vault, or medical record system.
- It is for local personal context hygiene, not for collecting private information about other people
without a legitimate reason.
Source: sickn33/agentic-awesome-skills → skills/context-kit/SKILL.md
Also appears in: sickn33/agentic-awesome-skills/plugins/agentic-awesome-skills-claude/skills/context-kit/SKILL.md
1---2name: context-kit3description: Evaluate, adapt, and safely install Context Kit personal context artifacts for Claude Code or adjacent agent workflows.4---5
6
7# Context Kit
8
9## When to Use
10
11Use this skill when the user wants to:
12
13- Set up durable personal context files for Claude Code or another coding agent
14- Compare Context Kit's Personal Context Artifact pattern with an existing memory or project-notes system
15- Adapt a context template structure without copying private details into the chat
16- Review whether a one-line installer or downloaded skill pack is appropriate before running it
17- Create a safer, local-first plan for CRM notes, open loops, session digests, or morning briefings
18
19## Overview
20
21Context Kit is an external project that organizes personal context into Markdown artifacts and companion
22Claude Code skills. This skill helps the user decide what to adopt, where to store it, and how to avoid
23turning a useful context system into a pile of sensitive data.
24
25Treat every personal context file as private by default. These files may contain identity details, family
26context, work history, contact notes, mental models, health constraints, or relationship information. Do
27not paste them into third-party tools, public repositories, issue trackers, or model contexts unless the
28user explicitly approves the exact subset.
29
30## Safety Rules
31
321. Do not run a remote install script until the user has seen the command, source repository, and target
33 paths it will write to.
342. Prefer cloning or downloading the repository for inspection before executing any installer:
35 ```bash
36 git clone https://github.com/JDDavenport/context-kit.git
37 cd context-kit
38 sed -n '1,220p' scripts/install.sh
39 ```
403. Never store passwords, API keys, recovery codes, private keys, session tokens, or payment details in
41 personal context artifacts.
424. If the user wants contact notes or CRM files, store only information they are comfortable keeping in
43 local plaintext Markdown.
445. Before adding these files to a repo, confirm `.gitignore` excludes the chosen private context directory.
456. If adapting Context Kit to a team or company setting, separate personal context from company-confidential
46 or customer-confidential information.
47
48## Setup Workflow
49
501. Ask what the user wants Context Kit to improve: session startup context, voice consistency, relationship
51 memory, open-loop tracking, daily briefings, or handoff summaries.
522. Inspect the upstream project and installer before running anything.
533. Choose a storage location:
54 - Claude Code default: `~/.claude/context/` and `~/.claude/skills/`
55 - Project-local context: `.agent/context/` or another ignored directory
56 - Portable setup: a private notes repo with explicit sync rules
574. Create a minimal starter set before filling everything:
58 - `pca-wiki.md` for durable identity and domains
59 - `pca-mental-models.md` for decision rules
60 - `pca-voice.md` for writing preferences
61 - `pca-protocols.md` for hard rules and boundaries
625. Add only enough detail to make the next agent session useful. Leave sensitive, speculative, or outdated
63 details out until there is a clear reason to include them.
646. Add a recurring review cadence. Personal context goes stale quickly; stale context is worse than no
65 context when it drives decisions.
66
67## Installation Review Checklist
68
69Before running an installer, verify:
70
71- The repository URL is exactly the one the user intended
72- The script writes only to expected local directories
73- The script does not upload files, send telemetry, or edit shell startup files unexpectedly
74- The target directories are not inside a public repo
75- The user has a rollback path, such as removing the copied templates and skills
76
77If anything is unclear, stop at inspection and provide the user with the exact lines that need review.
78
79## Examples
80
81### Example: Inspect before installing
82
83```bash
84git clone https://github.com/JDDavenport/context-kit.git
85cd context-kit
86sed -n '1,220p' scripts/install.sh
87find templates skills -maxdepth 2 -type f | sort
88```
89
90After inspection, summarize the files that would be installed and ask for confirmation before running the
91installer.
92
93### Example: Create a private project-local context directory
94
95```bash
96mkdir -p .agent/context
97printf '.agent/context/\n' >> .gitignore
98cp ~/Downloads/context-kit/templates/pca-wiki.md .agent/context/pca-wiki.md
99```
100
101Then trim the template to the minimum useful fields for the project instead of filling every personal
102section immediately.
103
104## Best Practices
105
106- Keep context files short enough that an agent can read them at session start without drowning in stale
107 detail.
108- Separate durable facts from temporary state. Use project workplans or task trackers for temporary state.
109- Label assumptions and uncertain memories instead of presenting them as facts.
110- Review personal context after major life, role, health, or project changes.
111- Store voice examples and anti-examples separately from private identity details when possible.
112
113## Common Pitfalls
114
115- Running a shell installer directly from `curl` without inspecting it first
116- Committing personal context files to a public repository
117- Storing secrets because "the agent needs to know everything"
118- Letting relationship or health notes become outdated and still treating them as current
119- Copying upstream paid or license-unclear content instead of linking to it or writing original local notes
120
121## Limitations
122
123- This skill does not verify the current upstream license or installer behavior on its own; inspect the live
124 repository before running commands.
125- It does not replace a dedicated secrets manager, CRM, password vault, or medical record system.
126- It is for local personal context hygiene, not for collecting private information about other people
127 without a legitimate reason.
128
129---
130
131**Source:** [`sickn33/agentic-awesome-skills`](https://github.com/sickn33/agentic-awesome-skills) → `skills/context-kit/SKILL.md`
132
133**Also appears in:** `sickn33/agentic-awesome-skills/plugins/agentic-awesome-skills-claude/skills/context-kit/SKILL.md`