Files
backnotprop__plannotator/apps/droid-plugin/commands/plannotator-annotate.js
Michael Ramos 4de62e83e1 Add Droid slash-command integration (#787)
* feat: add Droid slash-command integration

* fix: restore Droid command launcher behavior

* chore: remove archive command from homepage

* fix(droid): tighten last-message session resolution
2026-05-24 09:29:13 -07:00

12 lines
363 B
JavaScript
Executable File

#!/usr/bin/env node
const { emitAnnotateDecision, exitWithFailure, runPlannotator } = require("../lib/run-plannotator");
const result = runPlannotator(["annotate", ...process.argv.slice(2), "--json"]);
if (result.error || result.status !== 0) {
exitWithFailure(result, "plannotator annotate");
}
emitAnnotateDecision(result.stdout, "Markdown Annotations");