latitude-dev/latitude-llm · Archived

agentation-watch-mode

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.

First seen May 10, 2026

Installation

$ npx skills add latitude-dev/latitude-llm --skill agentation-watch-mode

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from latitude-dev/latitude-llm · top by installs.

npx skills add latitude-dev/latitude-llm

Browse all from latitude-dev/latitude-llm

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 4.6K
License LICENSE
Default branch development
Open issues 26
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,751 B
  • docs SUMMARY.md 271 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 5 installs

SKILL.md

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

  1. Start a watch loop with agentationagentationwatch_annotations.
  2. For each returned annotation:

- Call agentationagentationacknowledge immediately so the user can see you picked it up. - Read any extra session context you need. - Make the requested fix. - Call agentationagentationresolve with a short summary of what changed.

  1. After the batch is done, call agentationagentationwatch_annotations again.
  2. 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.