返回技能列表

plannotator-setup-goal

backnotprop
更新于 2 days ago
8 次查看
5,598
382
5,598
在 GitHub 上查看
general

关于

This skill transforms vague project ideas or objectives into structured, durable goal packages for Claude Code's `/goal` system. It creates a complete set of reviewed documents—including a narrative plan, acceptance criteria, and verification steps—within a project's `goals/` folder. Use it to establish a clear, gated mission and external memory for any long-running development work.

快速安装

Claude Code

推荐
主要方式
npx skills add backnotprop/plannotator -a claude-code
插件命令备选方式
/plugin add https://github.com/backnotprop/plannotator
Git 克隆备选方式
git clone https://github.com/backnotprop/plannotator.git ~/.claude/skills/plannotator-setup-goal

在 Claude Code 中复制并粘贴此命令以安装该技能

技能文档

Plannotator Setup Goal

Overview

Create a durable goal package in the current project at goals/<slug>/ so Codex /goal has a clear mission, guardrails, proof of done, and external memory. Use Plannotator as the user review UI: every critical document must be gated with plannotator annotate <document.md> --gate and revised until approved.

Workflow

  1. Confirm the working directory is the project root, or use the user-provided project directory.

  2. Gather enough context to name the goal, define the intended outcome, identify constraints, find likely project docs, and determine proof of done.

  3. Ask focused questions whenever the goal is vague, risky, too broad, missing a finish line, or missing verification. Do not proceed with guessed critical requirements.

  4. Create a slug from the goal name and scaffold goals/<slug>/ with:

    python3 <skill_dir>/scripts/scaffold_goal.py --root . --slug <slug> --title "<goal title>" --objective "<one sentence outcome>"
    
  5. Draft and refine the critical documents in this order:

    • brief.md
    • plan.md
    • verification.md
    • blockers.md
    • goal-prompt.md
  6. Gate each critical document with Plannotator before moving on:

    plannotator annotate goals/<slug>/<document.md> --gate
    
  7. If Plannotator returns denial, comments, or markup, treat that as user feedback. Revise the document, then run the same gate again. Continue until approved.

  8. After all gates pass, present the final path and the exact /goal prompt from goal-prompt.md.

Document Standards

brief.md must state the mission, context, constraints, non-goals, ask-before rules, and concise done condition.

plan.md is the central reviewed planning artifact. It must read like a clear solution narrative, not just a technical checklist. Include what is being built, why this approach is appropriate, how the solution will work, the main implementation slices, risks, phase boundaries, and acceptance criteria. Every important acceptance item needs observable evidence. For large missions, prefer several sequential goals over one endless goal.

verification.md must list exact verification commands and manual checks. Include expected pass conditions and where evidence should be recorded.

blockers.md must capture open questions, user-decision points, dangerous operations that require approval, and conditions that should pause the goal.

goal-prompt.md must contain the final command the user can paste into Codex. It should reference the goal package files as the durable source of truth, tell Codex to append evidence to progress.jsonl, and define when to stop or ask.

progress.jsonl is append-only evidence. Do not gate it. During execution, append concrete progress and proof, not summaries of intent.

Plannotator Rules

Use Plannotator as the review surface, not as a passive preview. The command plannotator annotate <document.md> --gate presents the document to the user and captures approval or denial feedback.

Do not skip gates for critical documents. Do not mark a document ready because it seems reasonable. The user must approve it through the gate.

If a document is denied, update the document from the captured feedback and rerun the gate. Keep the loop tight: one document, one review, one revision cycle.

Goal Prompt Rules

Write the final /goal prompt as a compact product brief, not a raw todo dump.

Include:

  • outcome
  • relevant files
  • constraints and non-goals
  • plan acceptance criteria and evidence
  • verification commands
  • ask-before rules
  • instruction to use goals/<slug>/ as the durable plan and append evidence to progress.jsonl

Avoid:

  • open-ended improvement loops
  • mixed unrelated missions
  • vague words like "improve" without measurable proof
  • instructions to keep working forever
  • hidden assumptions that are not written into the files

Quality Checks

Before finalizing, verify:

  • The goal has one clear finish line.
  • The plan explains what, why, and how before listing work slices.
  • The plan acceptance criteria can be audited from real artifacts.
  • Verification commands are concrete.
  • Risky actions have ask-before rules.
  • The final /goal prompt tells Codex where the goal files live.
  • All critical documents have passed Plannotator gates.

GitHub 仓库

backnotprop/plannotator
路径: apps/skills/plannotator-setup-goal
0
agentsclaude-codecode-reviewcodexobsidianopencode

相关推荐技能

content-collections

Content Collections 是一个 TypeScript 优先的构建工具,可将本地 Markdown/MDX 文件转换为类型安全的数据集合。它专为构建博客、文档站和内容密集型 Vite+React 应用而设计,提供基于 Zod 的自动模式验证。该工具涵盖从 Vite 插件配置、MDX 编译到生产环境部署的完整工作流。

查看技能

polymarket

这个Claude Skill为开发者提供完整的Polymarket预测市场开发支持,涵盖API调用、交易执行和市场数据分析。关键特性包括实时WebSocket数据流,可监控实时交易、订单和市场动态。开发者可用它构建预测市场应用、实施交易策略并集成实时市场预测功能。

查看技能

creating-opencode-plugins

该Skill帮助开发者创建OpenCode插件,用于接入命令、文件、LSP等25+种事件。它提供了插件结构、事件API规范和JavaScript/TypeScript实现模式,适合需要拦截操作、扩展功能或自定义事件处理的场景。开发者可通过它快速构建响应式模块来增强OpenCode AI助手的能力。

查看技能

sglang

SGLang是一个专为LLM设计的高性能推理框架,特别适用于需要结构化输出的场景。它通过RadixAttention前缀缓存技术,在处理JSON、正则表达式、工具调用等具有重复前缀的复杂工作流时,能实现极速生成。如果你正在构建智能体或多轮对话系统,并追求远超vLLM的推理性能,SGLang是理想选择。

查看技能