EO Ability: Plan

v1.0.0

项目规划能力,调用Planner专家生成WBS任务分解、里程碑计划、团队组成

0· 102·1 current·1 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for 467718584/eo-ability-plan.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "EO Ability: Plan" (467718584/eo-ability-plan) from ClawHub.
Skill page: https://clawhub.ai/467718584/eo-ability-plan
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install eo-ability-plan

ClawHub CLI

Package manager switcher

npx clawhub@latest install eo-ability-plan
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
medium confidence
Purpose & Capability
Name and description describe project planning (WBS, milestones, team composition). The skill is instruction-only and requires no binaries, env vars, or installs — which is proportionate for an LLM-based planning helper.
Instruction Scope
SKILL.md contains only planning instructions, example commands, input/output interfaces, and integration notes. It does not instruct reading local files, environment variables, secrets, or external endpoints beyond normal agent use.
Install Mechanism
No install spec and no code files are present; nothing is written to disk or fetched at install time, minimizing install-time risk.
Credentials
No environment variables, credentials, or config paths are required. The declared inputs/outputs are purely about planning data and are proportionate to the described functionality.
Persistence & Privilege
always is false and the skill is user-invocable; it does not request permanent presence or elevated privileges and contains no instructions to modify agent/system configuration.
Assessment
This skill appears internally consistent and low-risk: it is an instruction-only planner that asks for no credentials or installs. However, provenance is unknown (no source or homepage listed) — if you will rely on it in production or share sensitive project data, prefer skills from known authors or repositories, inspect the SKILL.md yourself, and test outputs on non-sensitive examples before using in real projects.

Like a lobster shell, security has layers — review code before you run it.

latestvk977fxvf7bz69bvvt1pa6ecrnh84czfs
102downloads
0stars
1versions
Updated 3w ago
v1.0.0
MIT-0

eo-ability-plan

项目规划能力 - 调用 Planner 专家生成 WBS、里程碑、团队组成

一句话介绍

调用Planner专家进行项目规划,自动生成WBS任务分解、里程碑、团队组成,是多专家协作的起点。

核心功能

  • WBS任务分解: 将复杂任务分解为可执行的小任务
  • 里程碑计划: 设定关键时间节点和交付物
  • 团队组成: 根据任务类型推荐专家组合
  • 时间估算: 估算项目总工期和阶段工期

使用方法

# 标准用法
/plan "开发博客系统 --type web --milestones true"

/plan "学术论文撰写流水线"

// 使用参数
使用 eo-ability-plan 规划一个[项目类型]项目

与EO插件的协同

  • 被所有 eo-workflow-* 调用(是工作流的起点)
  • 输出结果自动传递给 eo-ability-architect 进行架构设计

独立运行模式(有EO vs 无EO)

模式能力
有EO插件141专家库(27位Planner专家)、真实项目经验、WBS优化
无插件(基础)LLM生成WBS、通用任务分解模板

示例

📋 项目规划报告

## WBS 任务分解
1. 需求分析
   1.1 用户调研
   1.2 竞品分析
   1.3 需求文档
2. 架构设计
   2.1 技术选型
   2.2 系统架构
   2.3 数据库设计
3. 开发实施
   ...

Interface

Input

interface PlanInput {
  task: string              // 任务描述
  type?: 'web' | 'mobile' | 'paper' | 'marketing' | 'security'
  milestones?: boolean      // 是否生成里程碑
  teamComposition?: boolean // 是否生成团队组成
  estimatedTime?: boolean   // 是否估算时间
}

Output

interface PlanOutput {
  wbs: TaskNode[]           // WBS 任务分解
  milestones: Milestone[]    // 里程碑列表
  teamComposition: Expert[] // 团队组成
  estimatedTime: string     // 预计时间
}

🦞⚙️ 钢铁龙虾军团

Comments

Loading comments...