work-agent
Installation
SKILL.md
Agent Creator
Create global agents in Treasure Work — either on-demand (invoked from the UI, chat, or @mention) or scheduled (cron-driven). Both share one AGENTS.md format and lifecycle. Setting a schedule: field is the single switch that turns an agent into a scheduled one.
Agent Location
Each agent is its own directory with a single AGENTS.md:
- Global (the only scope this skill creates):
~/.treasure-work/agents/{name}/AGENTS.md - Workspace (read-only via MCP; edit through the AgentSettings UI):
{workspace}/agents/{name}/AGENTS.md
The directory is the agent's working directory at run time, so the body can reference relative paths and the agent can create supporting files as needed. No subdirectories are required.
Workflow
CRITICAL: Never just create and stop. Always run the agent and iterate until it works.