← Back to Skills Marketplace
sixtysixsone

auto-complex-task-planner

by sixtysixsone · GitHub ↗ · v2.0.0 · MIT-0
cross-platform ⚠ suspicious
609
Downloads
0
Stars
6
Active Installs
1
Versions
Install in OpenClaw
/install auto-complex-task-planner
Description
自动复杂任务规划器。智能判断任务复杂度,自动创建子 agent 执行,支持优先级队列、任务模板、进度追踪、增强质量审核。 使用场景: - "帮我调研 XXX"(复杂调研任务) - "开发一个 XXX 功能"(开发任务) - "批量处理 XXX"(批量操作) - "生成 XXX 报告/文档"(文档生成) - "紧急...
README (SKILL.md)

自动复杂任务规划技能

版本: v2.0.0(已实现所有改进建议)
作者: Johnny Liu
创建时间: 2026-03-08


🚀 核心功能

1. 智能任务分析

  • ✅ 自动判断任务复杂度(长度、步骤、关键词)
  • ✅ 自动识别任务类型(调研/开发/文档/批量)
  • 新增 自动检测优先级(高/普通/低)
  • ✅ 估算执行时间

2. 并行子 agent 执行

  • ✅ 自动生成任务描述
  • 新增 使用任务模板系统
  • ✅ 并行执行独立任务(效率提升 60-80%)
  • 新增 支持优先级队列

3. 增强质量审核

  • 新增 交付物存在性检查
  • 新增 内容质量评估
  • 新增 幻觉检测
  • ✅ 多维度质量打分

4. 任务生命周期管理

  • 新增 JSON 格式任务记录
  • 新增 任务进度追踪
  • 新增 每日统计报表
  • ✅ 自动清理已完成

5. 任务模板系统

  • 新增 调研任务模板
  • 新增 开发任务模板
  • 新增 文档生成模板
  • 新增 批量处理模板

📋 快速开始

安装

npx clawhub install auto-complex-task-planner

使用示例

用户:紧急!帮我调研北京新发地农产品市场

AI: 检测到高优先级调研任务,将优先执行...
    ✓ 任务 ID: a1b2c3d4
    ✓ 优先级:高
    ✓ 创建 3 个子 agent(并行执行)
    ✓ 预计完成时间:10-15 分钟

🎯 任务分类

自动使用子 agent

类型 关键词 示例
调研 调研、搜集、分析、研究 "调研 XXX 市场"
开发 开发、编写、创建、实现 "开发 XXX 功能"
批量 批量、全部、所有、删除 "批量删除 XXX"
文档 报告、文档、方案、总结 "生成 XXX 报告"

优先级识别

优先级 关键词 处理
紧急、优先、马上 优先执行
普通 正常执行
有空、不急 空闲时执行

📊 效率提升

方式 耗时 效率
主 session 串行 45-60 分钟 100%
本技能并行 10-15 分钟 提升 75-83%

⚙️ 配置

# 环境变量
export SUBAGENT_TIMEOUT=600
export MAX_RETRIES=3
export QUALITY_THRESHOLD=0.7
export MAX_CONCURRENT=5

📁 文件说明

  • SKILL.md - 技能文档
  • README.md - 英文指南
  • README_CN.md - 中文指南
  • scheduler.py - 执行脚本
  • package.json - 配置

📜 版本历史

v2.0.0 (2026-03-09)

  • 新增优先级队列系统
  • 新增任务模板系统
  • 新增 JSON 任务记录
  • 新增进度追踪
  • 增强质量审核

v1.0.0 (2026-03-08)

  • 初始版本

作者: Johnny Liu
许可: MIT

Usage Guidance
Before installing, review the complete scheduler.py (the packaged file shown here is truncated) to ensure it contains no network exfiltration, subprocess execution, or reading of unexpected system files. Ask the author why package.json is referenced but missing from the manifest and why SKILL.md lists env vars that metadata does not declare. If you proceed, run the skill in a restricted sandbox or container, and audit file writes under /home/admin/.openclaw and any outgoing network activity; limit its filesystem permissions and do not run it on a machine containing sensitive logs or credentials until you confirm the code is safe.
Capability Analysis
Type: OpenClaw Skill Name: auto-complex-task-planner Version: 2.0.0 The skill is a task management and orchestration utility designed to decompose complex user requests into sub-tasks for parallel execution. The logic in `scheduler.py` uses keyword analysis and predefined templates to categorize tasks (e.g., research, development) and manages their lifecycle via local JSON and Markdown logs in the `/home/admin/.openclaw/workspace/` directory. No evidence of data exfiltration, unauthorized shell execution, or malicious prompt injection was found; the code relies entirely on standard libraries and follows its stated purpose.
Capability Assessment
Purpose & Capability
Name/description describe an agent-based task scheduler and the included scheduler.py and templates implement scheduling, templates, priority queue and file-based task records — this is coherent. However SKILL.md and README refer to a package.json and additional env vars that are not declared in the metadata/manifest (manifest lists 4 files; package.json is referenced but not present), which is an inconsistency worth questioning.
Instruction Scope
SKILL.md instructs or implies reading/writing files under /home/admin/.openclaw (logs, workspace, temp), running/inspecting subagents (e.g., 'subagents list'), and saving outputs to absolute paths. Those file and log accesses are plausible for a scheduler but broaden the skill's scope to filesystem access and potential sensitive log reading; the instructions also reference environment variables and system commands not declared in metadata. The provided scheduler.py (truncated in the package listing presented here) contains hardcoded paths into /home/admin/.openclaw which means the skill will read/write host files — the full source must be reviewed for any network calls, subprocess execution, or credentials access.
Install Mechanism
There is no install spec (instruction-only install via npx clawhub is documented), and no external download URLs or extract operations in the package metadata. This is lower risk than a remote binary download. The skill does include a Python script shipped with the package which will be executed by the agent runtime — review of that script is necessary.
Credentials
The skill metadata declares no required env vars or credentials, but SKILL.md and READMEs list several environment variables (SUBAGENT_TIMEOUT, MAX_RETRIES, QUALITY_THRESHOLD, ENABLE_PARALLEL, ENABLE_PRIORITY, MAX_CONCURRENT). This mismatch (no env requirements declared vs. docs showing env vars) is an inconsistency. The skill does not request cloud/API credentials, which is proportionate to its purpose, but the documented env vars and hardcoded filesystem paths increase its ability to affect or read local host state.
Persistence & Privilege
The skill does not request always:true, does not declare system-wide config modifications, and appears to operate within the user's OpenClaw workspace (/home/admin/.openclaw). That scope is expected for a scheduler; there is no evidence it attempts to persist beyond its own workspace. Still, hardcoded absolute paths mean it will create/read files under that home path.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install auto-complex-task-planner
  3. After installation, invoke the skill by name or use /auto-complex-task-planner
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v2.0.0
### 1. Intelligent Task Analysis - ✅ Automatically judge task complexity - ✅ Identify task type (research/development/documentation/batch) - ✅ **NEW** Auto-detect priority (high/normal/low) - ✅ Estimate execution time ### 2. Parallel Sub-Agent Execution - ✅ Auto-generate task descriptions - ✅ **NEW** Use task template system - ✅ Execute independent tasks in parallel (60-80% efficiency boost) - ✅ **NEW** Support priority queue ### 3. Enhanced Quality Review - ✅ **NEW** Deliverable existence check - ✅ **NEW** Content quality assessment - ✅ **NEW** Hallucination detection - ✅ Multi-dimensional quality scoring ### 4. Task Lifecycle Management - ✅ **NEW** JSON format task recording - ✅ **NEW** Task progress tracking - ✅ **NEW** Daily statistics report - ✅ Auto-cleanup completed tasks ### 5. Task Template System - ✅ **NEW** Research task template - ✅ **NEW** Development task template - ✅ **NEW** Documentation template - ✅ **NEW** Batch processing template
Metadata
Slug auto-complex-task-planner
Version 2.0.0
License MIT-0
All-time Installs 6
Active Installs 6
Total Versions 1
Frequently Asked Questions

What is auto-complex-task-planner?

自动复杂任务规划器。智能判断任务复杂度,自动创建子 agent 执行,支持优先级队列、任务模板、进度追踪、增强质量审核。 使用场景: - "帮我调研 XXX"(复杂调研任务) - "开发一个 XXX 功能"(开发任务) - "批量处理 XXX"(批量操作) - "生成 XXX 报告/文档"(文档生成) - "紧急... It is an AI Agent Skill for Claude Code / OpenClaw, with 609 downloads so far.

How do I install auto-complex-task-planner?

Run "/install auto-complex-task-planner" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is auto-complex-task-planner free?

Yes, auto-complex-task-planner is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does auto-complex-task-planner support?

auto-complex-task-planner is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created auto-complex-task-planner?

It is built and maintained by sixtysixsone (@sixtysixsone); the current version is v2.0.0.

💬 Comments