hellowind777/helloagents · Archived

hello-subagent

使用子代理执行任务、并行开发、分派工作时使用。确保子代理有?

First seen Apr 21, 2026

Installation

$ npx skills add hellowind777/helloagents --skill hello-subagent

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from hellowind777/helloagents · top by installs.

npx skills add hellowind777/helloagents

Browse all from hellowind777/helloagents

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 702
License LICENSE.md
Default branch main
Open issues 19
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,483 B
  • docs SUMMARY.md 145 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 6 installs

SKILL.md

子代理编排必须遵循以下规范。 .helloagents/ 在本 skill 中统一按项目级存储路径理解:状态文件只使用 statepath;会话证据使用当前 statepath 所在目录下的 artifacts/*.json;若 projectstoremode=repo-shared,方案包、verify.yamlDESIGN.md 按当前上下文中已注入的项目知识/方案目录解析。

派遣前

先确定任务是否适合子代理(独立性高、边界清晰、可验证)。

派遣规范

  • 每个子代理获得:tasks.md 中的对应任务 + 方案包中的相关约束(~plan: requirements.md + plan.md;~prd: prd/ 中的相关维度文件 + decisions.md)+ 验证命令;涉及 UI 时,再附 .helloagents/DESIGN.md(按当前项目存储模式解析)或其中相关片段
  • 新鲜上下文:不继承主会话历史,避免上下文污染
  • 明确这是局部委派任务:当前输出会交回上级代理继续汇总、决策或复述,而不是直接交付给最终用户;因此只返回结果、证据或阻塞项,不包装 HelloAGENTS 外层格式,也不写 turn-state
  • 单一职责:一个子代理只做一件事
  • 只提取子代理需要的上下文,不把整个方案包全部塞给子代理

协调规范

  • 使用子代理时,主代理作为控制器跟踪进度
  • 主代理只有在当前对话的最终回复中才可使用 HelloAGENTS 外层输出格式。
  • 团队协作中的进度与状态汇报都属于中间输出,不得包装 HelloAGENTS 外层输出格式。
  • 子代理不得调用 helloagents-turn-state write 代替主代理写完成态或等待态;需要运行时状态信号时只由主代理写入
  • 子代理完成后执行双阶段审查:

1. 需求符合性审查:变更是否符合方案包需求和 tasks.md 的要求?有无多做或少做? 2. 代码质量审查:运行验证命令,审查代码质量

  • 两阶段都通过后才继续下一个任务
  • 子代理报告 BLOCKED:评估阻塞原因,提供更多上下文后重试,或升级到更强模型,或拆分任务,不强制同一方式重试
  • 并行派遣时注意文件冲突(不同子代理不改同一文件)

交付检查

  • 每个子代理有明确的任务边界和验收标准
  • 子代理输出已审查
  • 所有变更已通过验证