Files
backnotprop__plannotator/apps/droid-plugin/README.md
Michael Ramos b19505efd3 chore: remove the redundant /plannotator-status and /plannotator-archive commands (#873)
Two agent command-surface cleanups. Both remove only the command entry points; all underlying infrastructure stays.

1. /plannotator-status (Pi): removed — it echoed phase/plan-file/progress on
   demand, but that state is already shown ambiently (status bar + live
   checklist widget). The phase/checklist state machine is untouched.

2. /plannotator-archive (all agents): removed the command/skill entry points
   across every surface — Claude/Codex/Kiro skills, Pi, OpenCode (handler +
   dispatch + cli-bridge + embedded + stub), Droid, the Kiro agent prompt, all
   three installers, docs, marketing, and the CI deprecated-command guard. The
   installers also gained a stale-skill cleanup so upgraders drop a previously
   installed plannotator-archive skill.

Kept (infrastructure) — archive browsing stays available in-review via the
sidebar: the `plannotator archive` CLI subcommand (apps/hook/server), the
mode:"archive" server path + /api/archive endpoints, ArchiveBrowser/useArchive,
the sidebar Archive tab, sessions.ts "archive" mode, and ~/.plannotator/plans
storage.

Verified: bun test scripts/install.test.ts → 72 pass; pi-extension typecheck +
build:opencode pass; repo-wide residual scan clean; KEEP-set integrity
confirmed; one orphaned import (opencode commands.ts) caught in self-review and
removed.
2026-06-08 11:08:11 -07:00

1008 B

Plannotator for Droid

Plannotator's Droid plugin ships the manual slash-command workflow only:

  • /plannotator-review [PR_URL] (no args reviews local changes)
  • /plannotator-annotate <file|folder|url>
  • /plannotator-last

It does not attempt plan-mode interception or host-level planning integration.

Install

Install the plannotator CLI first:

curl -fsSL https://plannotator.ai/install.sh | bash

Then add the marketplace and install the plugin:

droid plugin marketplace add https://github.com/backnotprop/plannotator
droid plugin install plannotator@plannotator

For local development:

cd /path/to/plannotator
droid plugin marketplace add "$PWD"
droid plugin install plannotator@plannotator

Notes

  • The plugin expects plannotator on PATH.
  • Review and annotate flows still open the Plannotator browser UI and return the result to the Droid session.
  • The command wrappers set PLANNOTATOR_ORIGIN=droid so the UI can label the host correctly.