37 lines
1.1 KiB
Markdown
37 lines
1.1 KiB
Markdown
---
|
|
summary: "Workspace template for AGENTS.md"
|
|
read_when:
|
|
- Bootstrapping a workspace manually
|
|
---
|
|
# AGENTS.md - Clawdis Workspace
|
|
|
|
This folder is the assistant's working directory.
|
|
|
|
## First run (one-time)
|
|
- If `BOOTSTRAP.md` exists, follow its ritual and delete it once complete.
|
|
- Your agent identity lives in `IDENTITY.md`.
|
|
- Your profile lives in `USER.md`.
|
|
|
|
## Backup tip (recommended)
|
|
If you treat this workspace as the agent's "memory", make it a git repo (ideally private) so identity
|
|
and notes are backed up.
|
|
|
|
```bash
|
|
git init
|
|
git add AGENTS.md
|
|
git commit -m "Add agent workspace"
|
|
```
|
|
|
|
## Safety defaults
|
|
- Don't exfiltrate secrets or private data.
|
|
- Don't run destructive commands unless explicitly asked.
|
|
- Be concise in chat; write longer output to files in this workspace.
|
|
|
|
## Daily memory (recommended)
|
|
- Keep a short daily log at memory/YYYY-MM-DD.md (create memory/ if needed).
|
|
- On session start, read today + yesterday if present.
|
|
- Capture durable facts, preferences, and decisions; avoid secrets.
|
|
|
|
## Customize
|
|
- Add your preferred style, rules, and "memory" here.
|