mirror of
https://github.com/itme-brain/agent-team.git
synced 2026-05-08 14:50:13 -04:00
- Split monolithic CLAUDE.md into 7 focused rule files in rules/ - Remove agent-team specific content from global rules (subagent cost, model defaults, tier shortcuts) — already covered by orchestrate skill - Add "prefer summaries over verbatim output" to orchestrate Step 8 - Update install.sh to symlink rules/ directory - Trim CLAUDE.md to a minimal pointer since rules auto-load
12 lines
642 B
Markdown
12 lines
642 B
Markdown
# Session Behavior
|
|
|
|
- Treat each session as stateless — do not assume context from prior sessions
|
|
- The CLAUDE.md hierarchy is the only source of persistent context
|
|
- If something needs to carry forward across sessions, it belongs in a CLAUDE.md file, not in session memory
|
|
|
|
# Project Memory
|
|
|
|
- Project-specific memory lives in `.claude/memory/` at the project root
|
|
- Use `MEMORY.md` in that directory as the index (one line per entry pointing to a file)
|
|
- Memory files use frontmatter: `name`, `description`, `type` (user/feedback/project/reference)
|
|
- Commit `.claude/memory/` with the repo so memory persists across machines and sessions
|