Token导航 LogoToken导航TokenDH.com
研究检索只读clawhub未标认证来源可访问clear审计通过

project-planner项目策划师

Agent Skill

project-planner 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

48,376

周安装

2,078

GitHub Stars

1

下载量

16,956
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:project-planner(项目策划师)
来源仓库:https://github.com/chriscox/project-planner
安装命令:
openclaw skills install project-planner
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install project-planner

简介

将模糊想法分类为提案文档、功能问题或错误报告的标准格式条目。

  • 感知仓库结构自动匹配模板,加速 Issue 创建与项目管理流程标准化。
  • 提升团队沟通效率,减少重复提问与需求误解概率发生。
  • 内置常见模板库可扩展自定义字段满足特定项目治理需求。
  • 分类准确性依赖关键词识别能力,复杂需求建议附加人工审核环节。

SKILL.md

name
project-planner
description
>

Project Planner

Prerequisites

  • git
  • gh (GitHub CLI, authenticated via gh auth login)

Triage user input into the right project artifact: a proposal (big idea with phases), a feature issue (small enhancement), or a bug report (something's broken).

Repo Discovery

Before doing anything, discover the current repo's configuration:

  1. Run git rev-parse --show-toplevel to find the repo root
  2. Check for .project-planner.yml at the repo root — if it exists, read it and

use its values for all paths, labels, and conventions

  1. If no config file, fall back to auto-discovery:

- Proposal template: look for docs/proposals/TEMPLATE.md - Issue templates: look in .github/ISSUE_TEMPLATE/ - Docs directory: look for docs/, mkdocs.yml - If nothing found, use the fallback formats bundled with the skill

  1. If the repo has CLAUDE.md or CONTRIBUTING.md, read for conventions
  2. Run gh repo view --json name,owner to confirm the repo for issue creation

Config File: .project-planner.yml

Optional config file at repo root. All fields are optional — auto-discovery fills gaps. See project-planner.yml in the skill directory for a copy-paste starter.

project: MyProject                    # project name (for issue titles)
repo: owner/repo                      # GitHub repo (usually auto-detected)

proposals:
  dir: docs/proposals                 # where proposal docs live
  template: docs/proposals/TEMPLATE.md # proposal template to follow
  index: docs/proposals/index.md      # index file to update with new proposals
  mkdocs_nav: true                    # update mkdocs.yml nav when creating proposals

issues:
  labels:
    feature: enhancement              # label for feature issues
    bug: bug                          # label for bug issues
  # branch_prefix: feature/           # branch naming prefix

# conventions:
#   docs: docs                        # where project docs live

Triage Rules

Determine the type by asking: does this need design work or multiple phases?

  • Needs design decisions, multiple phases, or architectural thought → Proposal
  • Single, obvious change — no design needed → Feature issue
  • Something is broken or behaving wrong → Bug report

If unclear, ask the user: "Is this a quick fix or does it need a design doc?"

Workflow: Proposal

For big ideas that need phases and design.

  1. Discover proposal template (see Repo Discovery above)
  2. Research the codebase and any docs/ directory for relevant context
  3. Think through the design — motivation, approach, trade-offs
  4. Break into shippable phases (each phase delivers user value)
  5. Write acceptance criteria at both levels (overall + per-phase)
  6. Create the proposal doc at docs/proposals/<name>.md
  7. If mkdocs.yml exists, add the proposal to the nav under Proposals
  8. If docs/proposals/index.md exists, add to the Active Proposals list
  9. Create a GitHub issue for each phase using gh issue create:

- Title: <Proposal name>: Phase N — <phase name> - Body: phase goal, acceptance criteria, tasks as checklist, link to proposal - Label: enhancement

  1. Update the proposal doc with issue links for each phase
  2. Commit to a new branch and push

Proposal Quality Checklist

Before committing, verify:

  • [ ] Summary is one clear paragraph
  • [ ] Motivation explains why now
  • [ ] Design covers user experience AND technical approach
  • [ ] Every phase is independently shippable
  • [ ] Acceptance criteria are testable (not vague)
  • [ ] Open questions section exists (even if empty)
  • [ ] Related section links to relevant docs, issues, or design docs
  • [ ] Status is set to "Ready" (if issues created) or "Draft" (if not)

Workflow: Feature Issue

For small, self-contained enhancements.

  1. Discover feature template (see Repo Discovery above)
  2. Create a GitHub issue using gh issue create:

- Title: clear, action-oriented - Body: summary, acceptance criteria as checklist, doc references if relevant - Follow the repo's template format if one exists - Label: enhancement

  1. Report the issue number and URL to the user

Workflow: Bug Report

For problems and broken behavior.

  1. Discover bug template (see Repo Discovery above)
  2. Try to identify the relevant code by searching the codebase
  3. Create a GitHub issue using gh issue create:

- Title: Bug: <concise description> - Body: description, steps to reproduce (if known), expected vs actual, relevant code files/lines, related docs - Follow the repo's template format if one exists - Label: bug

  1. Report the issue number and URL to the user

Important Rules

  • Always use gh issue create — it's repo-aware, handles auth
  • Always link back — issues reference proposals, proposals reference issues
  • Proposals stay forever — status changes, docs never move or get deleted
  • One proposal per feature — don't cram multiple ideas into one doc
  • Phases must be shippable — each delivers user value, not just "backend work"
  • Commit to a branch — never push directly to main
  • Respect repo conventions — if the repo has CLAUDE.md or CONTRIBUTING.md, read

and follow its branch naming, commit message, and PR conventions

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

71.48%
按下载量换算12,120

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills