首页龙虾技能列表 › auto-complex-task-planner — 技能工具

auto-complex-task-planner — 技能工具

v2.0.0

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

0· 491·4 当前·4 累计
by @sixtysixsone·MIT-0
下载技能包
License
MIT-0
最后更新
2026/4/11
安全扫描
VirusTotal
无害
查看报告
OpenClaw
可疑
medium confidence
The skill mostly matches its stated purpose (a task scheduler that creates sub‑agents) but there are inconsistencies and some runtime behaviors (writing/reading absolute paths, undocumented env vars, a referenced package.json missing from the manifest, and a truncated source file) that warrant manual review before installing.
评估建议
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; lim...
详细分析 ▾
用途与能力
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.
指令范围
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.
安装机制
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.
凭证需求
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.
持久化与权限
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.
安全有层次,运行前请审查代码。

License

MIT-0

可自由使用、修改和再分发,无需署名。

运行时依赖

无特殊依赖

版本

latestv2.0.02026/3/9

### 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

● 无害

安装命令 点击复制

官方npx clawhub@latest install auto-complex-task-planner
镜像加速npx clawhub@latest install auto-complex-task-planner --registry https://cn.clawhub-mirror.com

技能文档

版本: 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

数据来源:ClawHub ↗ · 中文优化:龙虾技能库
OpenClaw 技能定制 / 插件定制 / 私有工作流定制

免费技能或插件可能存在安全风险,如需更匹配、更安全的方案,建议联系付费定制

了解定制服务