开源AI工作流工具 是 AI Skill Hub 本期精选AI工具之一。综合评分 7.5 分,整体质量较高。我们推荐使用将其纳入你的 AI 工具库,帮助提升工作效率。
hone-ai是一款开源的AI工作流工具,提供了AI编码代理的orchestration层,持续学习和改进。适合于开发者、数据科学家和AI工程师。
开源AI工作流工具 是一款基于 Python 开发的开源工具,专注于 workflow、ai-agents、claude 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。
hone-ai是一款开源的AI工作流工具,提供了AI编码代理的orchestration层,持续学习和改进。适合于开发者、数据科学家和AI工程师。
开源AI工作流工具 是一款基于 Python 开发的开源工具,专注于 workflow、ai-agents、claude 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。
# 克隆仓库 git clone https://github.com/oskarhane/hone-ai cd hone-ai # 查看安装说明 cat README.md # 按 README 完成环境依赖安装后即可使用
# 查看帮助 hone-ai --help # 基本运行 hone-ai [options] <input> # 详细使用说明请查阅文档 # https://github.com/oskarhane/hone-ai
# hone-ai 配置说明 # 查看配置选项 hone-ai --config-example > config.yml # 常见配置项 # output_dir: ./output # log_level: info # workers: 4 # 环境变量(覆盖配置文件) export HONE_AI_CONFIG="/path/to/config.yml"
AI Coding Agent Orchestrator — Automatically implement features from requirements using AI agents.
Transform feature ideas into working code through autonomous development with human oversight.

/hone:run .plans/tasks-<feature>.yml -i 10
/hone:review
A feature has three files:
prd-<feature>.md - Feature description, goals, non-goals, and acceptance criteria.tasks-<feature>.yml - A task breakdown of the prd. Description, status, dependencies, and most important, acceptance criteria for each task.progress-<feature>.txt - A continuously updated progress report on description of what has been done, choices made for each task etc.To create a feature, use /hone:prd "<description or link or file>". To break down a PRD into tasks, use /hone:prd-to-tasks .plans/prd-<feature>.md.
Use /hone:prune to archive completed PRDs and their associated files:
/hone:prune # Archive completed PRDs to .plans/archive/
/hone:prune --dry-run # Preview what would be archived without moving files
What gets archived:
The prune command moves completed PRD triplets to .plans/archive/:
prd-<feature>.md - PRD documenttasks-<feature>.yml - Task breakdownprogress-<feature>.txt - Development logPRDs are eligible for archiving when all tasks have status completed or cancelled.
/hone:extend-prd .plans/prd-<feature>.md "Add two-factor authentication"
If your project doesn't already have an AGENTS.md, generate one before running the workflow above. This is a one-time thing per project.
/hone:agents-md
Install hone as a native Claude Code plugin:
/plugin marketplace add oskarhane/hone-ai
/plugin install hone@hone-ai
To update:
/plugin marketplace update hone-ai
That's it! You're ready to use hone.
/hone:prune ```
hone will implement the feature, run tests, and commit changes automatically when the project is version-controlled (git by default; other VCS like jj/hg/sl are detected and used in their place). If .plans/ is ignored by VCS, hone skips committing those files but still commits code changes.
When creating PRDs, you can reference files and URLs directly in your feature description:
Local files:
./docs/api-spec.md - Read project documentationsrc/components/Button.tsx - Analyze existing components./database/schema.sql - Review database structureURLs:
https://docs.stripe.com/api - External API documentationhttps://www.figma.com/design/123/App - Design specificationsThe AI agent automatically reads files and fetches web content to generate more accurate PRDs.
```
| Skill | Description | Example |
|---|---|---|
/hone:agents-md | Generate AGENTS.md project docs | /hone:agents-md --overwrite |
/hone:prd | Generate PRD from feature description | /hone:prd "Add user authentication" |
/hone:prd-to-tasks | Generate task YAML from PRD | /hone:prd-to-tasks .plans/prd-user-auth.md |
/hone:extend-prd | Add requirements to existing PRD | /hone:extend-prd .plans/prd-user-auth.md "Add OAuth" |
/hone:run | Execute implement/review/finalize loop | /hone:run .plans/tasks-user-auth.yml -i 5 |
/hone:review | Strict end-of-feature audit of the branch | /hone:review |
/hone:fix | Turn supplied issues (or "the above" from a prior review) into tasks and run them | /hone:fix .plans/tasks-user-auth.yml the above blocking issues |
Task fails
.plans/progress-<feature>.txt for error detailshone-ai 是一款专为开发者设计的 AI Coding Agent Orchestrator(AI 编程智能体编排器)。它能够根据用户提供的需求文档,通过自主运行的 AI agents 自动实现功能。该工具旨在将功能构思转化为实际可运行的代码,并在整个自主开发过程中保留人工监督机制,实现从需求到代码的高效转化。
hone-ai 支持深度集成于 Claude Code 的工作流中。用户可以通过进入 Claude Code 的 plan mode 来描述需求,并利用自动化指令驱动开发。系统支持通过编辑 .plans 目录下的文件来精细化管理开发计划,并能自动执行任务、运行测试以及提交代码,实现从需求定义到代码落地的全流程自动化。
在使用 hone-ai 之前,请确保您的项目环境已准备就绪。对于新项目,必须先通过 `/hone:agents-md` 指令生成 `AGENTS.md` 文件,这是实现智能体感知项目上下文的关键。此外,项目应处于版本控制系统(如 git, jj 或 hg)的管理之下,以便 hone-ai 在完成功能开发后能够自动进行代码提交。
hone-ai 作为 Claude Code 的原生插件进行安装。您可以通过 Claude Code 的插件市场指令进行一键部署:首先使用 `/plugin marketplace add oskarhane/hone-ai` 添加插件,随后执行 `/plugin install hone@hone-ai` 完成安装。如果需要更新版本,只需运行 `/plugin marketplace update hone-ai` 即可保持最新状态。
快速上手流程如下:首先在 Claude Code 中通过 shift+tab 进入 plan mode 并描述您的功能需求;接着根据需要编辑 `.plans/prd-<feature>.md` 文件以完善需求描述;若需扩展需求,可使用 `/hone:extend-prd` 指令;最后,通过 `/hone:run` 指令启动自动化开发任务,hone-ai 将自动完成实现、测试与提交。
hone-ai 的配置主要围绕项目上下文管理展开。通过 `/hone:agents-md` 指令,您可以为项目生成必要的 `AGENTS.md` 文档,确保 AI 能够理解项目结构。在执行任务时,可以通过参数控制重试次数(如 `-i 10`)。此外,系统支持自动识别 git 等版本控制工具,并根据 `.plans/` 目录是否被 VCS 忽略来决定是否提交计划文件。
在编写 PRD(需求文档)时,hone-ai 支持强大的上下文引用能力。您可以在描述中直接引用本地文件(如 `./docs/api-spec.md` 或 `src/components/Button.tsx`)供 AI 分析项目文档、现有组件或数据库结构;同时,您也可以直接引用外部 URL,使 AI 能够结合在线文档进行开发,极大提升了开发精度。
hone-ai 提供了一套标准化的自动化工作流。通过内置的技能指令(如 `/hone:agents-md`),开发者可以快速生成项目文档。整个流程涵盖了从需求输入、计划生成、自动化执行到最终代码提交的完整闭环,通过模块化的指令集,让 AI Agent 能够像人类开发者一样理解并执行复杂的编程任务。
如果任务执行失败,请不要担心,失败的任务会保持 pending 状态,并在下次运行时自动重试。您可以随时查看 `.plans/progress-<feature>.txt` 文件来获取详细的错误日志和进度说明,以便快速定位问题并进行人工干预或调整需求。
hone-ai是一款有潜力的开源AI工作流工具,提供了AI编码代理的orchestration层和持续学习的功能。虽然还有一些bug和不足,但总体来说是一款值得关注的工具。
该工具未明确声明开源协议,商业使用前请联系原作者确认授权范围,避免侵权风险。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
经综合评估,开源AI工作流工具 在AI工具赛道中表现稳健,质量良好。如果你已有明确的使用需求,可以直接上手体验;如果还在评估阶段,建议对比同类工具后再做决策。
| 原始名称 | hone-ai |
| 原始描述 | 开源AI工作流:AI Coding Agent Orchestrator with continuous learning. Orchestration layer on to。⭐19 |
| Topics | workflowai-agentsclaudeclaude-code |
| GitHub | https://github.com/oskarhane/hone-ai |
收录时间:2026-05-26 · 更新时间:2026-05-30 · License:未公布 · AI Skill Hub 不对第三方内容的准确性作法律背书。