
Plannotator Setup Goal
- 5k installs
- 7.5k repo stars
- Updated August 5, 2026
- backnotprop/plannotator
plannotator-setup-goal is a skill that turns an idea into a goals/slug/ package via Plannotator interviews, fact sheets, codebase exploration, and gated execution plans.
About
Plannotator Setup Goal turns an idea or objective into a goal package at goals/slug/ through five structured phases. Phase 1 rearticulates the request in two to three sentences and waits for user confirmation before creating the goal directory. Phase 2 builds a compact interview.json bundle with recommended answers and answerMode options, runs plannotator setup-goal interview as a monitored foreground browser session, and writes interview-result.json from stdout. Phase 3 converts interview answers into testable facts in facts-review.json, runs the facts browser review, and outputs facts.md plus facts.meta.json with automated verification flags. Phase 4 explores the codebase to validate implementation paths per accepted fact, writes plan.md with ordered steps and verification commands, and gates the plan via plannotator annotate plan.md --gate until approved. Phase 5 produces goal.md referencing facts and plan with a done condition. The skill enforces browser session patience, optional grill-me grilling for vague goals, codebase exploration instead of obvious questions, and stopping if the user dismisses a Plannotator session.
- Five phases from rearticulation through interview, facts, plan, and goal.md output.
- Uses Plannotator CLI browser sessions for interview and facts review with JSON provenance.
- Optional grill-me grilling pass for vague goals before the interview bundle.
- Explores codebase to answer inferable questions instead of asking the user.
- Gates plan.md with plannotator annotate --gate before final goal package delivery.
Plannotator Setup Goal by the numbers
- 4,979 all-time installs (skills.sh)
- +474 installs in the week ending Aug 5, 2026 (Skillselion tracking)
- Ranked #120 of 3,282 Productivity & Planning skills by installs in the Skillselion catalog
- Security screen: LOW risk (skills.sh audit)
- Data as of Aug 5, 2026 (Skillselion catalog sync)
plannotator-setup-goal capabilities & compatibility
- Capabilities
- rearticulate and confirm user goals before direc · generate interview.json bundles with recommended · run plannotator browser interview and facts revi · explore codebase to derive implementation paths · gate plan.md approval and produce final goal.md
- Use cases
- planning · project management · research
What plannotator-setup-goal says it does
A fact is a simple description of each outcome of a goal. It should be easily testable and verifiable
plannotator annotate goals/<slug>/plan.md --gate
npx skills add https://github.com/backnotprop/plannotator --skill plannotator-setup-goalAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 5k |
|---|---|
| repo stars | ★ 7.5k |
| Security audit | 3 / 3 scanners passed |
| Last updated | August 5, 2026 |
| Repository | backnotprop/plannotator ↗ |
How do I convert a vague feature idea into testable facts, an approved plan, and a launchable /goal package?
Turn a vague idea into a goals package via Plannotator interview bundles, fact sheets, codebase exploration, and gated plan approval.
Who is it for?
Developers starting a medium-scope feature who can run Plannotator CLI and approve browser interview sessions.
Skip if: Skip when the goal is already fully specified or Plannotator CLI and browser sessions are unavailable.
When should I use this skill?
User wants to set up a goal, run plannotator setup-goal, or turn an idea into facts and an execution plan.
What you get
Interview and facts JSON, facts.md, gated plan.md, and goal.md ready for /goal goals/slug/goal.md execution.
- interview-result.json
- facts.md
- gated plan.md
Files
Setup Goal
Turn an idea into a goal package at goals/<slug>/ through structured discovery, user interview, and codebase exploration.
Phases
1. Rearticulate
State back what the user wants in your own words. If the conversation already has rich context, summarize it. If the goal is bare or vague, do minimal shallow exploration of the codebase to ground your understanding. Keep it to 2-3 sentences. Wait for the user to confirm or correct before continuing.
Create the goal directory once the slug is clear:
mkdir -p goals/<slug>Use goals/<slug>/ for both working JSON files and final docs. The JSON files are provenance and iteration state; the markdown files are the human-readable authoritative goal package.
Browser session patience rule: Plannotator goal setup is a user-driven browser session. After launching an interview or facts command, be absolutely patient and keep waiting on the user until they submit, dismiss, or explicitly ask you to stop. Do not close, kill, restart, refresh, or open a second copy just because the UI is idle or the user is taking time. Never close and reopen the session as a way to update state; if a rerun is needed after the prior session ends, update the working JSON file and launch a new command from that file.
Optional: grill first (deep, one-at-a-time interview). Before building the compact interview bundle, suggest a grilling pass whenever the goal is vague or carries many interdependent decisions — and run one whenever the user asks for it ("grill me first"). This is opt-in: for a clear, well-scoped goal, skip it and go straight to the bundle, so grilling never fights the bundle's "fewer, higher-leverage questions" philosophy. When you grill, run the protocol below verbatim, then fold the resolved decisions forward into a higher-quality interview bundle (Phase 2) — or, if grilling fully resolves scope, straight into the fact sheet (Phase 3).
<!-- Grilling protocol below adapted verbatim from the /grill-me skill by Matt Pocock (MIT-licensed): https://github.com/mattpocock/skills/blob/main/skills/productivity/grill-me/SKILL.md -->
Interview me relentlessly about every aspect of this plan until we reach a shared understanding. Walk down each branch of the design tree, resolving dependencies between decisions one-by-one. For each question, provide your recommended answer.
>
Ask the questions one at a time.
>
If a question can be answered by exploring the codebase, explore the codebase instead.
2. Interview Bundle
Build a compact bundle of questions that can derive every "fact" this goal should produce. Package the questions together so the user can answer them quickly in the Plannotator goal setup UI. For each question, include your recommended answer and use options when they make answering faster.
Do not ask obvious confirmation questions. If the answer can be inferred from the user's request, from the conversation, or from shallow codebase exploration, infer it and move on. If an obvious area has meaningful nuance, present the inferred answer as a recommendation with options or a custom "add/correct this" path rather than asking the user to restate the obvious.
Question areas that usually matter:
- What the feature/change is
- Who it's for
- What problem it solves
- What behavior changes
- What success looks like
- What's in and out of scope (the most important area to determine facts)
- What edge cases to consider
- What constraints or precedent apply
If a question can be answered by exploring the codebase, explore the codebase instead of asking. Only include questions where the user's judgment is actually needed. Prefer fewer, higher-leverage questions over exhaustive obvious ones.
Write the interview bundle before showing it to the user:
goals/<slug>/interview.json
{
"stage": "interview",
"title": "Short human-readable title",
"goalSlug": "<slug>",
"questions": [
{
"id": "scope",
"prompt": "What should be in scope?",
"description": "Optional clarification.",
"answerMode": "multi-custom",
"recommendedAnswer": "Your recommended answer.",
"recommendedOptionIds": ["ui", "server"],
"options": [
{ "id": "ui", "label": "UI" },
{ "id": "server", "label": "Server" }
],
"required": true
}
]
}Supported answerMode values: text, single, multi, custom, single-custom, multi-custom.
Run this as a monitored foreground process and wait patiently for the browser session to finish. The command may appear idle while the user is reading, editing, or asking questions; leave it running:
plannotator setup-goal interview goals/<slug>/interview.json --jsonThe command returns JSON on stdout with the submitted answers. Write that exact result to goals/<slug>/interview-result.json before continuing. A convenient pattern is:
plannotator setup-goal interview goals/<slug>/interview.json --json | tee goals/<slug>/interview-result.jsonIf the user revises after the session finishes, update interview.json and rerun the command instead of reconstructing the whole bundle from memory. If the session is dismissed, stop and tell the user the goal setup was closed.
Before moving to facts, read every answer and note carefully:
- If the user wrote questions, uncertainty, "not sure", "needs context", or similar concerns in an answer or note, stop and address those questions in chat. Do not proceed to facts until the user has enough context or you have rerun a revised interview bundle.
- If the user skipped a question with a note, treat the note as intentional feedback, not as an empty answer. Answer the note, refine the question, or make a documented assumption before proceeding.
- If the user skipped a question without a note, proceed only if the missing answer is non-blocking; otherwise ask the smallest possible follow-up in chat.
3. Fact Sheet
A fact is a simple description of each outcome of a goal. It should be easily testable and verifiable. A fact may describe the function of a specific feature or aspect of a system. A fact may determine specific UI and UX. Again, a fact is literally anything that can be tested and verified in automated or manual testing. Keep fact language simple. In a way, a fact sheet is a design spec, but less verbose & using language the human user can easily visualize & rationalize.
Prepare a facts review bundle from goals/<slug>/interview-result.json. Each fact should include whether automated verification is recommended and preselected.
Write the facts review bundle before showing it to the user. If revising after a prior facts pass, start from facts-review.json and facts-result.json, include previously accepted facts with "accepted": true, and preserve their state.
goals/<slug>/facts-review.json
{
"stage": "facts",
"title": "Short human-readable title",
"goalSlug": "<slug>",
"facts": [
{
"id": "fact-1",
"text": "The accepted fact text.",
"accepted": false,
"removed": false,
"recommendedAutomatedVerification": true,
"automatedVerification": true
}
]
}Run this as a monitored foreground process and wait patiently for the browser session to finish. The command may appear idle while the user is reviewing, editing, or asking questions; leave it running:
plannotator setup-goal facts goals/<slug>/facts-review.json --jsonThe command returns JSON on stdout with accepted/edited/removed facts plus automated verification selections. Write that exact result to goals/<slug>/facts-result.json. A convenient pattern is:
plannotator setup-goal facts goals/<slug>/facts-review.json --json | tee goals/<slug>/facts-result.jsonWrite goals/<slug>/facts.md as a flat readable list of accepted facts. Each fact is one line; add a minimal note only when the fact cannot be stated clearly on its own. Also write goals/<slug>/facts.meta.json preserving each accepted fact's id, final text, comment, recommendedAutomatedVerification, and automatedVerification value.
If the user edits or removes facts in the UI, apply that result directly. If the session is dismissed, stop and tell the user the facts review was closed.
4. Plan
Explore the codebase. Discover and validate implementation paths toward each accepted fact. Treat facts with automatedVerification: true as requiring concrete automated checks unless you document a blocker. Trace through code, identify files and systems involved, surface risks and unknowns. Refine until you have a confident order of operations.
Write goals/<slug>/plan.md:
- Solution approach (brief)
- Ordered steps with the files/systems each touches
- Verification for each step (concrete commands or checks)
- Risks or open questions worth flagging
Gate the plan with Plannotator:
plannotator annotate goals/<slug>/plan.md --gateIf denied, revise from feedback and re-gate until approved.
5. Goal Output
Write goals/<slug>/goal.md:
- The articulated goal (1-3 sentences)
- Reference to
facts.mdas the shared understanding - Reference to
plan.mdas the execution plan - Done condition
Tell the user:
Done! Launch a goal with `/goal goals/<slug>/goal.md`interface:
display_name: "Setup Goal"
short_description: "Turn an idea into a goal package for /goal"
default_prompt: "Use $plannotator-setup-goal to turn this idea into a goal package."
import { describe, expect, test } from "bun:test";
import { readFileSync } from "node:fs";
import { join } from "node:path";
const skill = readFileSync(join(import.meta.dir, "SKILL.md"), "utf-8");
describe("plannotator-setup-goal skill", () => {
test("uses bundled goal setup UI as the default interview path", () => {
expect(skill).toContain("Build a compact bundle of questions");
expect(skill).toContain("plannotator setup-goal interview");
expect(skill).toContain("goals/<slug>/interview.json");
expect(skill).toContain("goals/<slug>/interview-result.json");
expect(skill).toContain("Do not ask obvious confirmation questions");
expect(skill).toContain("Before moving to facts, read every answer and note carefully");
expect(skill).toContain("be absolutely patient and keep waiting on the user");
expect(skill).toContain("Do not close, kill, restart, refresh, or open a second copy");
expect(skill).not.toContain("setup-goal interview -");
});
test("allows opt-in grill-first questions before the bundled interview", () => {
const grillStart = skill.indexOf("**Optional: grill first");
const bundleStart = skill.indexOf("### 2. Interview Bundle");
expect(grillStart).toBeGreaterThan(-1);
expect(bundleStart).toBeGreaterThan(grillStart);
const grillSection = skill.slice(grillStart, bundleStart);
expect(grillSection).toContain("This is opt-in");
expect(grillSection).toContain("Ask the questions one at a time.");
expect(grillSection).toContain("If a question can be answered by exploring the codebase");
});
test("facts phase captures automated verification selections", () => {
expect(skill).toContain("plannotator setup-goal facts");
expect(skill).toContain("goals/<slug>/facts-review.json");
expect(skill).toContain("goals/<slug>/facts-result.json");
expect(skill).toContain("facts.meta.json");
expect(skill).toContain("automatedVerification");
expect(skill).not.toContain("setup-goal facts -");
});
});
Related skills
How it compares
Pick plannotator-setup-goal over direct coding skills when the blocker is unclear scope rather than missing implementation steps.
FAQ
Where does goal state live?
Under goals/slug/ with interview.json, facts-review.json, plan.md, and final goal.md as the authoritative package.
Can I close the browser session while waiting?
No. Be patient and keep the Plannotator session running until the user submits, dismisses, or asks to stop.
When is grilling suggested?
Before the interview bundle when the goal is vague or has many interdependent decisions; skip for clear well-scoped goals.
Is Plannotator Setup Goal safe to install?
skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.