Agents
Monitor agent
An agent that watches something and reports only what changed.
What it asks you for
- What to watchrequired
- Sites, products, or people.
- What counts as newsrequired
- What is worth waking you for.
What it tells the AI to do
Create a monitor agent.
Watching:
{{ targets }}
Worth reporting: {{ matters }}
System prompt: on each run, check every target and compare against what you
recorded last time in memory. Report only what changed and why it matters.
When nothing changed, say nothing at all. Record the new state so the next run
has something to compare against.
Tools: web search, memory. Autonomy: confirm.
"Say nothing when nothing changed" is the whole design. A monitor that reports
"no changes" every morning gets muted in a week, and then it is not a monitor.
## Create it
Call `idapt agent create` with the system prompt above, the tools listed, and
the autonomy level stated. Name it something the user would recognise in a
list six months from now.
Then, in three lines: what it does, what it will never do without asking, and
how to change its instructions. Do not paste the system prompt back at them.
Offer one first task so they see it work rather than reading about it.- agent
- monitor
- competitors
- changes
More agents skills
- Create an agentDesign a reusable agent with a real job and real limits.
- Split this across agentsBreak a large job into parallel sub-agent work and merge it.
- Fix an agent's behaviourDiagnose why an agent misbehaves and correct its instructions.
- Research agentAn agent that searches, reads, and files findings with sources.
- Editor agentAn agent that edits against your style rules and quotes every violation.
- Code review agentAn agent that reviews diffs for correctness, security, and tests.