Sandbox
@JamesShi96/project-butler

Project memory skill for Claude Code and Codex

project-butler keeps a project’s current state, rules, and next steps in plain Markdown files that AI assistants can read across sessions. It supports daily setup, end-of-session handoff, resume, status checks, and optional project-profile-aware close behavior.

372 stars11 forksShellUpdated 1mo ago
Who it's for

Builders who want Claude Code, Cursor, or Codex to keep working from the same project memory instead of starting over.

What it delivers

You can resume work without re-explaining the project, decisions, or next steps.

What it does

Session memory files

Maintains `PROJECT.md`, `TODO.md`, `session-handoff.md`, `UPDATE_LOG.md`, `DOCS.md`, and related project files.

Cross-tool support

Works natively as a Claude Code skill and can generate Cursor rules and Codex `AGENTS.md` guidance.

Daily workflow commands

Uses natural-language triggers like `end session`, `continue`, and `status` for normal work.

Project profile system

Adds profile-aware setup and close behavior for projects that need stronger alignment on docs and workflow.

Update checks

Checks for newer versions and can prompt for updates or run `scripts/check-update.sh` manually.

How to get it

  1. 1Install as a Claude Code skill
    git clone https://github.com/JamesShi96/project-butler.git ~/.claude/skills/project-butler
  2. 2Open any project and set up project memory
    /project-butler
  3. 3Work normally. At the end of a work session
    end session
  4. 4Next time, resume without re-explaining the project
    continue

README

project-butler

English | 中文

GitHub stars GitHub release License: MIT AI Coding Assistants

Make AI coding agents remember your project between sessions.

project-butler helps Claude Code, Cursor, Codex, and similar AI coding assistants behave like long-term project teammates instead of starting from scratch every session.

For normal use, you only need four actions:

/project-butler   Set up project memory
end session       Save progress and next steps
continue          Resume next time
status            Check where the project stands

For projects that need stronger product, architecture, roadmap, research, or eval alignment, project-butler can also create a Project Profile during setup and offer profile-aware Normal Close / Full Close behavior.

Quick Start

Install as a Claude Code skill:

git clone https://github.com/JamesShi96/project-butler.git ~/.claude/skills/project-butler

Open any project and set up project memory:

/project-butler

Work normally. At the end of a work session:

end session

Next time, resume without re-explaining the project:

continue

That is enough for daily use. For Cursor, Codex, and other assistants, see Tool Compatibility.

Updating project-butler

The skill auto-checks for updates on every invocation. Once per day per machine, it runs git fetch against its own repo and compares local HEAD to origin/main. If behind, Claude Code asks you once — and at most once every 24 hours:

project-butler is 3 commits behind upstream. Update now?
  › Update now       — pull the latest version right here
  › Remind me later  — ask again tomorrow
  › Stop reminding   — turn the check off

Picking Update now runs a fast-forward-only git pull for you and reports the result. If it fails (local changes, offline, SSH blocked), you get the manual command plus an HTTPS fallback. Nothing is ever pulled without you choosing it.

The prompt is worded in your project's CLAUDE.md Language: setting (English / Chinese / bilingual), and stops appearing once you are up to date — the cache is keyed on commit SHA, not just time.

Side effect on git status: after the auto-fetch, git status inside the skill directory may show "behind origin/main by N commits". This is expected and harmless — the skill never modifies the working tree unless you pick "Update now".

Silencing: export PROJECT_BUTLER_NO_UPDATE_CHECK=1. Only the literal value "1" silences — =0, =false, or empty does not silence (counter-intuitive but intentional).

Note: the check runs as a skill instruction, so it is best-effort — it may occasionally not fire. Run the script manually any time you want a definitive answer.

Debugging a missing prompt: from an external shell only, run the shared update-check script with PROJECT_BUTLER_UPDATE_CHECK_DEBUG=1. Never enable debug inside Claude Code — CC captures stderr into the LLM context and debug output will leak into responses.

Cursor / Codex: these tools do not have Claude Code's skill lifecycle, so update checks are manual/on-demand:

bash "${PROJECT_BUTLER_SKILL_DIR:-$HOME/.claude/skills/project-butler}/scripts/check-update.sh"

Outside Claude Code there is no prompt — the script just prints a VERSION_NOTICE: block with the update command when you are behind, and nothing when you are current.

Reach limitation: if you installed project-butler before v1.7.0, you do not have this auto-check feature yet. Pull once manually:

cd ~/.claude/skills/project-butler && git pull

After that, future updates are announced automatically.

Why It Exists

AI coding assistants are powerful in one session and forgetful across sessions. If any of these sound familiar, project-butler is for you:

  • "I had to re-explain the architecture again." Each new session starts with missing context.
  • "What did we decide about naming conventions last week?" Decisions disappear into chat history.
  • "The README and TODOs keep drifting from reality." Project state stops matching the files.
  • "The AI keeps violating rules I already explained." Rules live in your head instead of in project memory.
  • "I switch between Claude Code, Cursor, and Codex." Different tools need one shared source of truth.

project-butler turns a project folder into that source of truth, so the next AI session can pick up where the last one stopped.

Main Commands

All triggers are natural language. Use slash commands only for first-time setup.

CommandUse it when
/project-butlerSet up or upgrade project memory.
end session / we're doneSave progress, refresh next steps, and record important changes.
continue / continue from last timeResume the previous session without re-explaining context.
status / where are weGet the current project state and the next best step.

Advanced Commands

CommandUse it when
continue full contextRebuild the full project trajectory after a long break or assistant switch.
review claude / check the rulesReview candidate project rules before they become long-term rules.
sync wiki / update overviewForce-refresh PROJECT.md.
organize filesClean up new files according to STRUCTURE.md.
change languageSwitch project management files between English, Chinese, and bilingual mode.
normal closeSave the session and defer profile-impacting updates into the pending queue.
full closeAlign affected profile docs now with a bounded Scope Plan.
profile setup / foundation repairCreate or repair the project profile and baseline reference docs after confirmation.

Session recovery (continue / continue full context) is routed through project-butler internally. There is no separate /continue command to install.

What It Maintains

Run /project-butler once. It maintains these plain Markdown files in your project:

project-root/
├── CLAUDE.md                   <- Project rules / constitution
├── PROJECT.md                  <- Current project wiki
├── STRUCTURE.md                <- File organization rules
├── UPDATE_LOG.md               <- Milestone-level changelog
├── DOCS.md                     <- Document index and metadata
├── session-handoff.md          <- Cross-session handoff
├── TODO.md                     <- Execution checklist
├── docs/                       <- Archived project documents
├── log/                        <- Session logs
└── .claude/
    ├── candidates.md           <- Candidate rules for review
    ├── project-profile.json    <- Project profile config
    ├── profile-pending.json    <- Profile pending/debt queue
    └── .file-snapshot.json     <- File organization snapshot

The core files are plain Markdown, so other tools can read them even when they do not run the skill natively.

What that means in practice:

  • Keeps the current project state readable.
  • Keeps next steps clear between sessions.
  • Keeps project documents indexed and findable.
  • Records milestone changes so the project has a clear history.
  • Keeps new files from drifting into random folders.
  • Preserves long-term rules only after user review.

Project Butler also keeps a small machine-readable profile so the assistant can understand which long-lived docs matter, which sections are protected, and which profile updates have been deferred.

Tool Support

ToolStatusHow it works
Claude CodeNative skillInstall this repo under ~/.claude/skills/project-butler and run /project-butler.
CursorProject rules, best-effortproject-butler can generate .cursor/rules/project-system.mdc, which points Cursor at the same project memory files and mirrors the main triggers.
CodexAGENTS.md, best-effortproject-butler can generate AGENTS.md, which points Codex at the same project memory files and mirrors the main triggers.
Other AI assistantsFile-basedAny assistant that can read project files can use the project memory as shared context.

See docs/compatibility.md for details and caveats.

How It Works

Internals: The Memory Stack

project-butler uses a 7-component memory stack internally, organized by stability:

Stable rules
┌─────────────────────────────────────┐
│  CLAUDE.md / project rules          │  <- Human-reviewed principles
│  ↑ candidates collected by AI       │
└─────────────────────────────────────┘
            ↑ distilled from work
Current state
┌─────────────────────────────────────┐
│  PROJECT.md                         │  <- What the project is now
│  STRUCTURE.md                       │  <- Where files belong
│  UPDATE_LOG.md                      │  <- Milestone-level changes
│  DOCS.md                            │  <- Document index
│  .claude/project-profile.json       │  <- Profile config
│  .claude/profile-pending.json       │  <- Profile debt queue
└─────────────────────────────────────┘
            ↑ summarized from facts
Raw facts
┌──────────────────────┐ ┌───────────────────────┐
│  log/                │ │  TODO.md              │
│  What happened       │ │  What needs doing     │
└──────────────────────┘ └───────────────────────┘
            ↓
session-handoff.md       <- Where the next session should resume

Bottom feeds top. Top constrains bottom.

  • Session logs capture what happened.
  • Handoff tells the next assistant where to resume.
  • Project wiki summarizes the current state.
  • TODOs keep execution visible.
  • Rules / constitution preserve decisions that should keep guiding the project.
  • Update log records significant changes at milestone level.
  • Structure rules keep files from drifting into chaos.
  • Document index keeps project documents organized under docs/.
  • Project profile tracks project shape, document tiers, document policies, pending profile updates, and review queue items.

Project Profiles

Project Profile System is internal profile-aware behavior for setup and close. Fresh setup stays conversational and can remain lightweight by creating only minimal confirmed docs.

During setup, project-butler asks what you are trying to do in natural language, infers the project shape, asks a few targeted follow-up questions, and proposes Required / Recommended / Optional reference docs. It does not force you to pick a fixed project type or expose Profile System as a setup switch.

During close, profile-aware projects can use:

ModeBehavior
Normal CloseSave the session and record profile-impacting changes in .claude/profile-pending.json.
Full CloseRead only affected profile docs, present a Scope Plan, and apply safe updates inside that boundary.

Full Close confirms boundaries, not every small edit. It still requires explicit confirmation before changing protected sections, document policies, stable baselines, or whole-document rewrites.

Language Support

project-butler supports three language modes:

ModeContent languageUser file naming
enEnglishEnglish naming (kebab-case)
zhChineseChinese naming allowed
bilingualChinese with English annotationsEnglish preferred, Chinese acceptable

You choose the mode during setup, and can later say change language.

Version Naming

During setup, project-butler asks which version style the project should use:

StyleExampleBest for
Semanticv0.1.0Engineering projects and libraries
CodenameProject Name 0.1Products, brands, and creative projects
PatchPatch 1Games and iterative content releases
Date2026.06.1Research logs, operations, and document-heavy work

end session uses this style when a significant update deserves an UPDATE_LOG.md entry.

Upgrade Mode

If a project already has some management files, project-butler creates only the missing ones. It does not replace existing files; when a system section needs an update, it asks before making a small targeted patch. It also detects legacy .claude/memory/ layouts and suggests migration.

During upgrade, project-butler preserves existing files and offers to bring the project into the current profile-aware setup model. It infers profile state from existing project docs and asks for confirmation before writing profile files or changing existing document policies.

Examples

See docs/examples.md for a complete session flow:

  1. initialize a project,
  2. work normally,
  3. end the session,
  4. resume the next day,
  5. review accumulated rules.

Requirements

  • Claude Code CLI for native skill execution
  • jq for continue / continue full context session recovery
  • Optional: Cursor for generated project rules
  • Optional: Codex or other AI coding assistants that can read project Markdown files and AGENTS.md

Update Log

v1.7.1 (2026-06-21) - Multi-Tool Compatibility Foundation

  • Extract version freshness detection into scripts/check-update.sh so Claude Code can keep automatic Step -1 checks while Cursor/Codex can run manual checks on demand.
  • Add Codex AGENTS.md project-instruction template and update Cursor rules with manual update-check coverage.
  • Document best-effort Cursor/Codex support and add an adapter coverage matrix.

v1.6.0 (2026-06-10) - Project Profile System Runtime Wiring

  • Add references/project-profile-system.md and route profile setup, Normal Close, Full Close, Foundation Repair, and profile-aware status through the main skill.
  • Teach generated project rules, continue, full context recovery, and upgrade mode to read and preserve profile files.
  • Document Project Profile System as internal profile-aware runtime behavior on top of the base 7-component memory stack.

v1.5.1 (2026-06-03) - Product Noise Reduction

  • Reframe the README around four primary actions: /project-butler, end session, continue, and status.
  • Move internals behind "How it works" and make examples result-focused.
  • Update generated CLAUDE/Cursor rules to separate daily workflow from advanced commands.

v1.5.0 (2026-06-03) - Versioned Update Log System

  • Add version style selection during setup: Semantic, Codename, Patch, and Date.
  • Teach end-session update logging to calculate the next version from the selected style.
  • Sync README, examples, compatibility docs, generated rules, continue recovery, document archiving, upgrade mode, and trigger routing with the current memory stack.

v1.4.1 (2026-06-02) - Cross-Reference + Flow Consistency

  • Fix DOCS.md, file snapshot, language switching, continue recovery, and template consistency gaps found through six review rounds.
  • Align document archiving, file reorganization, and Cursor rule templates.

v1.3.0 (2026-06-01) - Four-Phase File Reorganization

  • Replace template-based file organization with Discover, Ask or Plan, Plan, and Execute phases.
  • Add confidence routing, safe move planning, and a never-delete cleanup policy.

v1.2.1 (2026-05-09) - Skill Loader Compatibility

  • Move continue reference workflows under references/ instead of nested SKILL.md files.
  • Shorten skill metadata to satisfy loader limits.
  • Keep session recovery routed through the main project-butler skill.

Full update log: UPDATE_LOG.md | Releases: GitHub Releases

Star History

Star History Chart

License

MIT

Files in the repo

Repository payload11 top-level entries
  • docs
  • log
  • references
  • scripts
  • .gitignore
  • LICENSE
  • README_zh.md
  • README.md
  • session-handoff.md
  • SKILL.md
  • UPDATE_LOG.md

Discussion (0)

Ask about usage, or say what you built with it

Sign in to join the discussion.

No comments yet. Be the first to say what this is good for.

More skills

obra/
superpowers

An agentic skills framework & software development methodology that works.

285k
1 add

Turn any codebase, with its docs, SQL schemas, configs, and PDFs, into a queryable knowledge graph. A /graphify skill for Claude Code, Cursor, Codex, and Gemini CLI: local deterministic AST parsing, every edge explained, no vector store.

117k
1 add
Vincentwei1021/
anything2explainer

Topic in, narrated explainer video out. A Claude Code / Codex skill that turns any topic into a black-canvas motion-graphics explainer video with TTS voiceover, subtitles and a chapter progress bar. Chinese or English; every frame drawn in code with Remotion.

666

Open-source AI job search: scan job portals, evaluate listings into a structured A-H report with a global 1-5 score, tailor your CV, track applications — runs locally in your AI coding CLI (Claude Code, Codex, OpenCode, Antigravity…)

71k