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

nini-workspace-planning妮妮工作空间规划

Agent Skill

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

总安装

11,925

周安装

507

GitHub Stars

公开资料未说明

下载量

4,178
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install nini-workspace-planning

简介

项目进度管理工具,跟踪 YAML 格式的模块与里程碑。

  • 适用于复杂项目的阶段划分和交付物管理。nini-workspace-planning 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 支持模块状态更新、时间线调整和风险提示。
  • 数据以 YAML 文件形式存储,需手动维护结构一致性。
  • 输出为进度摘要,不替代项目管理系统的完整功能。

SKILL.md

name
workspace-planning
metadata
{"openclaw":{"emoji":"📅"}}
description
>-

Workspace Planning

Workspace-level project schedule management. Operates on planning/schedules/*.yaml files that track modules, milestones, and delivery phases.

Each schedule YAML is organized around functional modules (not tasks or tickets), bridging the gap between Yunxiao work items and OpenSpec code changes.

Prerequisites

DependencyTypeRequiredNotes
Schedule YAMLdataYesplanning/schedules/<project>.yaml in workspace root
yunxiao skillskillFor sync onlyMust be installed before using planning sync-yunxiao
Do NOT verify prerequisites on skill load. If a command fails due to a missing dependency, guide the user through setup step by step.

When to Use

  • User asks about project progress, timeline, or delivery status
  • User wants to check what's planned for a specific week
  • User mentions milestones, deadlines, or "how much is left"
  • User wants to update a module's status or mark something done
  • User wants to connect an OpenSpec change to a schedule module
  • User needs to create a new project schedule
  • User wants to push schedule data to Yunxiao

Module Status State Machine

planned --> in_progress --> done (terminal)
   |
   +--> deferred --> planned / in_progress

Allowed: planned -> in_progress, in_progress -> done, planned -> deferred, deferred -> planned, deferred -> in_progress.

Forbidden: any transition out of done.

Module Types

TypeDescriptionKey fields
featureHas UI frames, frontend/backend coordinationframes, design, figma, backend, frontend, priority
infrastructureBackend-only, no UIdescription

For the complete YAML schema and field reference, read references/yaml-schema.md.

Script

Deterministic operations are handled by scripts/planning.py:

python3 <skill-dir>/scripts/planning.py review                      # Show progress
python3 <skill-dir>/scripts/planning.py update <id> --status done   # Update status
python3 <skill-dir>/scripts/planning.py link <id> --change <name>   # Link change
python3 <skill-dir>/scripts/planning.py week W3                     # Show week modules

All commands output JSON for the LLM to format. Use --file to specify a schedule YAML if multiple exist. Always point --file at the main schedule file (e.g. sylsmart.yaml), not the month files — the script resolves module_files references automatically.

Requires: pip install pyyaml

Split vs Inline Modules

Schedules support two layouts:

  • Inline: modules: list directly in the main YAML (simple projects)
  • Split: module_files: list of relative paths, each containing a modules: list (large projects)

When using split layout, all read commands (review, week) merge modules from all referenced files. Write commands (update, link) save back to the correct source file.

Commands

planning init <project-name>

Bootstrap a new schedule YAML for a project. This is interactive (handled by the LLM, not the script).

Steps:

  1. Ask the user for basic project info:

- Project title (display name) - Timeline start and end dates - Team capacity (optional)

  1. Ask about milestones (at least one required) — for each: id, title, date, type, deliverable
  2. Ask about phases (optional) — or suggest a default monthly split based on timeline
  3. Create planning/schedules/<project-name>.yaml with the provided structure and an empty modules: []
  4. Suggest next step: "Add modules manually or describe your feature list and I'll help structure them"

planning review

Show overall schedule progress grouped by phase.

Steps:

  1. Run python3 <skill-dir>/scripts/planning.py review (use --file if needed)
  2. Format the JSON output for the user
  3. Display by phase:
## sylsmart schedule (current: W3)

### month-1: Framework (2/6 done, 33%)
  V core-extraction         infrastructure  done
  V auth                    feature 14f     done
  * project-list            feature 12f     in_progress
  o project-overview        feature 10f     planned
  o common-dialogs          feature 18f     planned
  o core-regression         infrastructure  planned

Legend: V done, * in_progress, o planned, - deferred

  1. After the module list, add a brief Risks & Bottlenecks section (2-4 bullets):

- Highlight modules with design: partial or pending - Flag weeks where backend capacity is overloaded (many ready_week targets in same week) - Note any milestone within 14 days with low completion rate - Call out frontend modules that depend on not-yet-ready backend APIs

Flags:

  • --week <W> — Show modules relevant to that week. A module is "relevant" if ANY of these apply: (1) weeks contains that week, (2) backend.ready_week equals that week, (3) frontend.mock_from equals that week. Split output into Backend and Frontend sections with dependency status.
  • --milestones — Show milestone progress with countdown warnings (highlight if <= 14 days away)

planning update <module-id> --status <status>

Update a module's status.

Step 1 — Validate with the script (does NOT write to files):

python3 <skill-dir>/scripts/planning.py update <module-id> --status <status>

The script validates the state machine transition and returns JSON including source_file (the YAML file containing the module). If invalid, it exits with an error.

Step 2 — Apply with the Edit tool: use the source_file from the JSON output to locate the module and change its status: field. This preserves YAML comments and formatting.

planning link <module-id> --change <change-name>

Associate an OpenSpec change with a module.

Step 1 — Validate with the script (does NOT write to files):

python3 <skill-dir>/scripts/planning.py link <module-id> --change <change-name>

The script verifies the change exists and returns JSON with the updated changes list, source_file, and whether an auto-transition from planned to in_progress should apply.

Step 2 — Apply with the Edit tool: add the change name to the module's changes: list (or create the field). If auto_transition is true, also update status: in_progress.

planning sync-yunxiao

Push unlinked modules to Yunxiao as work items.

Prerequisite: yunxiao skill must be installed and configured.

Steps:

  1. Read YAML, find modules where yunxiao_id is null or missing
  2. List modules to be created, wait for user confirmation
  3. Use yunxiao skill to create a work item for each module
  4. Write returned work item IDs back to yunxiao_id field in YAML
  5. Report results; modules with existing yunxiao_id are skipped

Common Mistakes

ErrorCauseFix
Module not foundTypo in module idRun planning review to see all ids
Invalid status transitionState machine violationCheck allowed transitions above
Change not foundName mismatchVerify change exists in openspec/changes/
No schedule filesMissing YAMLRun planning init to create one
Yunxiao sync failsyunxiao skill not installedInstall yunxiao skill first

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

76.75%
按下载量换算3,207

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install nini-workspace-planning 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills