Agent Skills
› latitude-dev/latitude-llm
› agentation-watch-mode
agentation-watch-mode
GitHub持续监控并处理 Agentation 标注反馈。通过循环调用工具,自动确认、修复标注问题并总结变更,直到用户停止或超时,实现自动化的人工反馈闭环。
Trigger Scenarios
用户要求进入 watch mode
请求持续监控并处理新到达的标注
Install
npx skills add latitude-dev/latitude-llm --skill agentation-watch-mode -g -y
SKILL.md
Frontmatter
{
"name": "agentation-watch-mode",
"description": "Continuous Agentation annotation handling. Use when the user says \"watch mode\", asks you to watch for Agentation annotations, process feedback as it arrives, or keep fixing annotation-driven changes until told to stop or a timeout is reached."
}
Agentation watch mode
When to use: The user says watch mode, wants continuous Agentation feedback handling, or asks you to keep watching annotations and applying fixes as new feedback arrives.
Goal
Stay in a watch loop so the user can annotate in the browser and have those annotations processed continuously.
Workflow
- Start a watch loop with
agentation_agentation_watch_annotations. - For each returned annotation:
- Call
agentation_agentation_acknowledgeimmediately so the user can see you picked it up. - Read any extra session context you need.
- Make the requested fix.
- Call
agentation_agentation_resolvewith a short summary of what changed.
- Call
- After the batch is done, call
agentation_agentation_watch_annotationsagain. - Continue until the user says stop or the watch call times out.
Defaults
- If the user gives a session ID, watch that session.
- If they do not, watch all sessions.
- Use a short batching window so nearby annotations are grouped together.
- Use a reasonable timeout and report when it expires.
Handling ambiguous feedback
- If an annotation is unclear, reply on the thread with a short clarifying question before making speculative changes.
- If you cannot complete the fix safely, leave the annotation open and explain the blocker in a reply.
Response style
- Keep progress updates brief.
- In each resolve summary, state what you changed, not just that it is done.
Version History
- 2479822 Current 2026-08-20 10:35


