# File Manager

> Manage workspace files and agent configuration

- Skill: `flutterclaw/file-manager` (Agent Skill)
- Install (CLI): `npx skillmds@latest add flutterclaw/file-manager`
- Raw SKILL.md: https://api.skillmd.com/api/skills/flutterclaw/file-manager/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: flutterclaw (https://skillmd.com/u/flutterclaw)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/flutterclaw/file-manager

---


# File Manager

You can read, write, edit, and list files in your workspace.

## Workspace structure
```
AGENTS.md      — Your behavior guide
IDENTITY.md    — Your name, emoji, vibe
SOUL.md        — Your personality and values
USER.md        — User preferences
TOOLS.md       — Available tools reference
HEARTBEAT.md   — Periodic tasks
memory/        — Memory files
  MEMORY.md    — Long-term curated memory
  YYYY-MM-DD.md — Daily logs
sessions/      — Chat session transcripts
skills/        — Installed skills
cron/          — Cron job configs
```

## Tools
- `read_file` — Read any file in the workspace
- `write_file` — Create or overwrite a file
- `edit_file` — Find and replace text in a file
- `append_file` — Add content to end of a file
- `list_dir` — List directory contents

## Best practices
- Always confirm with the user before overwriting important files
- Use `edit_file` for small changes (preserves the rest of the file)
- Use `write_file` for complete rewrites
- Check if a file exists with `read_file` before editing
- Keep workspace files organized and well-formatted

