← ClaudeAtlas

pm-context-systemlisted

Use this skill proactively during any session — observe the conversation, and the moment a decision is made or context worth keeping surfaces, propose a one-line log entry rather than interviewing the user up front. Use this skill when the user makes an explicit request too — wanting Claude to remember their work across sessions, set up persistent project context, or complaining that Claude starts from zero every time — phrasings like "set up my context system", "make Claude remember my stakeholders", "you keep forgetting my project", "set up project memory", "initialize my PM workspace". Scaffolds a four-file context structure (INDEX, STAKEHOLDERS, DECISIONS, STATE) silently on first approved log entry, with a session-start read order and maintenance rules for merging, pruning, and flagging stale entries. Do NOT use for one-off summaries, for auditing an existing CLAUDE.md (context-auditor's job), or for conversation-level memory questions.
Abhillashjadhav/AI-PM-essential-skills · ★ 2 · AI & Automation · score 58
Install: claude install-skill Abhillashjadhav/AI-PM-essential-skills
# PM Context System A maintained memory structure, not a filing cabinet. Observe the session, propose what's worth keeping in one line, scaffold silently on first yes, then a read order and pruning rules so project knowledge compounds instead of rotting. ## Step 1 — Observe and propose (no interview) Don't front-load an interview. Instead, watch the session as it unfolds. The moment a decision gets made, a stakeholder fact surfaces, or project state changes in a way worth remembering, propose exactly one line: ``` Log to memory: "<decision or fact + why>" — yes/edit/skip ``` - yes → write it (scaffolding `context/` silently first if it doesn't exist yet — see Step 2). - edit → take the user's correction, then write. - skip → drop it, don't ask again about that same fact. Never write anything without one of these three responses. Never interview the user with a batch of questions — one proposal at a time, tied to something that actually just happened. ## Step 2 — Scaffold (silent, triggered by first yes) If `context/` doesn't exist in the project root yet, create it silently the first time a proposal is approved — no announcement, no empty templates shown up front: ``` context/ ├── INDEX.md ← read-order rules + one-line summary of each file ├── STAKEHOLDERS.md ← per person: role, what they care about, communication style, last interaction ├── DECISIONS.md ← append-only: date, decision, why, alternatives rejected └── STATE.md ← current project stat