45 lines
1.2 KiB
Markdown
45 lines
1.2 KiB
Markdown
# Workspace Structure
|
|
|
|
```
|
|
workspace/
|
|
├── AGENTS.md # How I operate
|
|
├── SOUL.md # Who I am
|
|
├── IDENTITY.md # My name, vibe, etc.
|
|
├── USER.md # About you
|
|
├── TOOLS.md # Local tool notes
|
|
├── HEARTBEAT.md # Periodic check instructions
|
|
├── STRUCTURE.md # This file
|
|
├── MEMORY.md # Long-term curated memory
|
|
│
|
|
├── memory/ # Daily logs
|
|
│ └── YYYY-MM-DD.md
|
|
│
|
|
├── projects/ # Active work
|
|
│ └── {project}/
|
|
│
|
|
├── docs/ # Reference, guides, research
|
|
│
|
|
├── inbox/ # Stuff to process
|
|
│
|
|
├── archive/ # Completed/old stuff
|
|
│
|
|
├── templates/ # Reusable scaffolds
|
|
│
|
|
├── scripts/ # Utility scripts
|
|
│
|
|
└── tools/ # Local tools we build
|
|
```
|
|
|
|
## Conventions
|
|
|
|
- **Projects:** One folder per project, self-contained
|
|
- **Inbox:** Drop zone — I'll process and sort
|
|
- **Archive:** `mv` completed projects here, not delete
|
|
- **Memory:** Daily notes auto-named by date
|
|
|
|
## File Naming
|
|
|
|
- Lowercase, hyphens: `my-project-name`
|
|
- Dates: `YYYY-MM-DD` prefix when relevant
|
|
- No spaces in filenames
|