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

core-planner核心规划师

Agent Skill

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

总安装

470

周安装

20

GitHub Stars

8

下载量

165
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:core-planner(核心规划师)
来源仓库:https://github.com/vamseeachanta/workspace-hub
仓库路径:skills/core-planner
安装命令:
npx skills add https://github.com/vamseeachanta/workspace-hub --skill core-planner
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/vamseeachanta/workspace-hub --skill core-planner

简介

负责将复杂任务拆解为可执行的子任务与依赖关系图。

  • 适用于敏捷迭代计划、资源分配与风险评估场景。
  • 输出结构化任务列表与并行执行策略建议。
  • 安装方式:GitHub,命令为 npx skills add https://github.com/vamseeachanta/workspace-hub --skill core-planner。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Core Planner Skill

Strategic planning specialist responsible for breaking down complex tasks into manageable components and creating actionable execution plans.

Quick Start

// Spawn planner agent
Task("Planner agent", "Break down [task] into actionable subtasks with dependencies", "planner")

// Orchestrate task execution
  task: "Implement [feature]",
  strategy: "parallel",
  priority: "high",
  maxAgents: 5
}

When to Use

  • Breaking down complex features into tasks
  • Creating sprint/iteration plans
  • Mapping task dependencies
  • Allocating resources and agents
  • Risk assessment and mitigation planning

Prerequisites

  • Clear understanding of project goals
  • Access to project requirements/specifications
  • Knowledge of available agents and their capabilities
  • Understanding of technical constraints

Core Concepts

Planning Process

  1. Initial Assessment: Analyze scope, objectives, success criteria
  2. Task Decomposition: Break into concrete, measurable subtasks
  3. Dependency Analysis: Map inter-task dependencies
  4. Resource Allocation: Assign agents and estimate time
  5. Risk Mitigation: Identify failure points and contingencies

Task Properties

  • Specific: Clear, unambiguous description
  • Measurable: Has defined completion criteria
  • Achievable: Within capability constraints
  • Relevant: Contributes to objectives
  • Time-bound: Has estimated duration

Implementation Pattern

Plan Output Format

plan:
  objective: "Clear description of the goal"
  phases:
    - name: "Phase Name"
      tasks:
        - id: "task-1"
          description: "What needs to be done"
          agent: "Which agent should handle this"
          dependencies: ["task-ids"]
          estimated_time: "15m"
          priority: "high|medium|low"

  critical_path: ["task-1", "task-3", "task-7"]

  risks:
    - description: "Potential issue"
      mitigation: "How to handle it"

  success_criteria:
    - "Measurable outcome 1"
    - "Measurable outcome 2"

Task Decomposition Example

# Example: Implement User Authentication
plan:
  objective: "Implement secure user authentication system"
  phases:
    - name: "Research & Design"
      tasks:
        - id: "auth-1"
          description: "Research authentication best practices"
          agent: "researcher"
          dependencies: []
          estimated_time: "1h"
          priority: "high"

        - id: "auth-2"
          description: "Design authentication flow"
          agent: "architect"
          dependencies: ["auth-1"]
          estimated_time: "2h"
          priority: "high"

    - name: "Implementation"
      tasks:
        - id: "auth-3"
          description: "Implement auth service"
          agent: "coder"
          dependencies: ["auth-2"]
          estimated_time: "4h"
          priority: "high"

        - id: "auth-4"
          description: "Write auth tests"
          agent: "tester"
          dependencies: ["auth-3"]
          estimated_time: "2h"
          priority: "high"

    - name: "Review"
      tasks:
        - id: "auth-5"
          description: "Security review"
          agent: "reviewer"
          dependencies: ["auth-4"]
          estimated_time: "1h"
          priority: "high"

  critical_path: ["auth-1", "auth-2", "auth-3", "auth-4", "auth-5"]

  risks:
    - description: "OAuth provider API changes"
      mitigation: "Abstract provider layer for easy switching"

    - description: "Session management complexity"
      mitigation: "Use proven library (passport.js)"

  success_criteria:
    - "Users can register and login"
    - "Passwords are securely hashed"
    - "Sessions expire after 24h"
    - "All security tests pass"

Configuration

Priority Levels

PriorityDescriptionResponse Time
CriticalBlocking issuesImmediate
HighCore functionalitySame day
MediumImportant featuresWithin sprint
LowNice-to-haveBacklog

Agent Allocation

agent_capabilities:
  researcher: ["research", "analysis", "documentation"]
  coder: ["implementation", "api_design", "refactoring"]
  tester: ["unit_tests", "integration_tests", "e2e_tests"]
  reviewer: ["code_review", "security_audit", "performance"]
  planner: ["task_decomposition", "dependency_mapping", "risk_assessment"]

Usage Examples

Example 1: Feature Planning

// Spawn planner for feature breakdown
Task("Planner", "Create execution plan for user dashboard feature", "planner")

// Store plan in memory
  action: "store",
  key: "swarm/planner/task-breakdown",
  namespace: "coordination",
  value: JSON.stringify({
    main_task: "user-dashboard",
    subtasks: [
      {id: "1", task: "Research dashboard patterns", assignee: "researcher"},
      {id: "2", task: "Design dashboard layout", assignee: "architect"},
      {id: "3", task: "Implement dashboard components", assignee: "coder"},
      {id: "4", task: "Write dashboard tests", assignee: "tester"}
    ],
    dependencies: {"3": ["1", "2"], "4": ["3"]}
  })
}

Example 2: Parallel Task Orchestration

// Orchestrate parallel execution
  task: "Implement authentication system",
  strategy: "parallel",
  priority: "high",
  maxAgents: 5
}

// Monitor progress
  taskId: "auth-implementation"
}

Execution Checklist

  • Analyze complete scope of request
  • Identify key objectives and success criteria
  • Determine complexity level and expertise needed
  • Break down into atomic, executable tasks
  • Map inter-task dependencies
  • Identify critical path items
  • Allocate agents to tasks
  • Estimate timeframes
  • Identify risks and create mitigations
  • Store plan in coordination memory
  • Monitor execution progress

Best Practices

Always Create Plans That Are:

  • Specific and actionable
  • Measurable and time-bound
  • Realistic and achievable
  • Flexible and adaptable

Consider:

  • Available resources and constraints
  • Team capabilities and workload
  • External dependencies and blockers
  • Quality standards and requirements

Optimize For:

  • Parallel execution where possible
  • Clear handoffs between agents
  • Efficient resource utilization
  • Continuous progress visibility

Error Handling

IssueRecovery
Blocked taskIdentify alternative path
Agent unavailableReassign or wait
Dependency failureRe-plan affected tasks
Timeline slipAdjust estimates, re-prioritize

Metrics & Success Criteria

  • All tasks have clear owners
  • Dependencies correctly mapped
  • Critical path identified
  • Risks documented with mitigations
  • Plan stored in coordination memory

Integration Points

MCP Tools

// Orchestrate complex tasks
  task: "Implement authentication system",
  strategy: "parallel",
  priority: "high",
  maxAgents: 5
}

// Share task breakdown
  action: "store",
  key: "swarm/planner/task-breakdown",
  namespace: "coordination",
  value: JSON.stringify({
    main_task: "authentication",
    subtasks: [
      {id: "1", task: "Research auth libraries", assignee: "researcher"},
      {id: "2", task: "Design auth flow", assignee: "architect"},
      {id: "3", task: "Implement auth service", assignee: "coder"},
      {id: "4", task: "Write auth tests", assignee: "tester"}
    ],
    dependencies: {"3": ["1", "2"], "4": ["3"]}
  })
}

// Monitor task progress
  taskId: "auth-implementation"
}

// Report planning status
  action: "store",
  key: "swarm/planner/status",
  namespace: "coordination",
  value: JSON.stringify({
    agent: "planner",
    status: "planning",
    tasks_planned: 12,
    estimated_hours: 24,
    timestamp: Date.now()
  })
}

Hooks

# Pre-execution
echo "🎯 Planning agent activated for: $TASK"
memory_store "planner_start_$(date +%s)" "Started planning: $TASK"

# Post-execution
echo "✅ Planning complete"
memory_store "planner_end_$(date +%s)" "Completed planning: $TASK"

Related Skills

Collaboration Guidelines

  • Coordinate with other agents to validate feasibility
  • Update plans based on execution feedback
  • Maintain clear communication channels
  • Document all planning decisions in memory

Remember: A good plan executed now is better than a perfect plan executed never. Focus on creating actionable, practical plans that drive progress. Always coordinate through memory.


Version History

  • 1.0.0 (2026-01-02): Initial release - converted from planner.md agent

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

25.02%
按下载量换算41

windsurf

22.74%
按下载量换算38

trae

17.5%
按下载量换算29

OpenCode

13.09%
按下载量换算22

Cursor

7.12%
按下载量换算12

Codex

3.28%
按下载量换算5

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/vamseeachanta/workspace-hub --skill core-planner;npx skills add vamseeachanta/workspace-hub --skill "core-planner" 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills