skip to content
FILESYSTEM.md

For Agents

Last updated:

View Markdown source

Agent procedure

  1. If context is tight, fetch and follow /for-agents/cheatsheet.md first.
  2. Otherwise read this hub, then in order:
    1. /for-agents/bootstrap.md
    2. /for-agents/operations.md
    3. /for-agents/memory.md
    4. /for-agents/skills.md
    5. /for-agents/safety.md
  3. Treat /filesystem.md as the normative workspace contract.
  4. Map abstract ops (read_file, grep, append_log) to your harness tools. Do not invent a second layout.
  5. Prefer on-demand reads. Do not load the entire repo into context at bootstrap.
1. read_file FILESYSTEM.md
2. read_file AGENTS.md # if present
3. read_file SOUL.md / USER.md # only if present and needed
4. read_file MEMORY/daily/<today>.md
5. list SKILLS/ # index only; do not load full SKILL.md yet

Manual index

DocWhen to use
CheatsheetMinimal injectable card
BootstrapSession start / cold start
OperationsOrient → plan → execute → log
MemoryDaily / observations / learned
SkillsLoading reusable capabilities
SafetyBoundaries, secrets, append-only logs
Claude Code mappingMap abstract ops to Claude Code–style tools + study guide

Human notes

This section is the agent-facing handbook for FILESYSTEM.md. Humans maintain the workspace; agents execute against it.

Out of scope