Ask HN:你们如何使用个人 AI 助手与本地编码代理?
1 分•作者: everfly•5 个月前
Hi HN,
我一直在尝试一种工作流程,让个人 AI 助手处理任务接收,而编码代理处理实现。
在我的设置中,我使用 OpenClaw 作为个人助手层:我可以向它发送语音或文本笔记,它会将这些笔记转换为我仓库中的结构化 Markdown 任务卡。然后,我构建的开源本地 CLI 工具 VibeDeck 会拾取这些任务卡,将编码代理分派到隔离的 Git 工作树中,并让我以 PR 的形式审查结果。
主要思想是将任务捕获、执行和审查分开:
* OpenClaw 处理想法捕获 / 任务起草
* VibeDeck 处理本地编排
* 编码代理在隔离的 git 工作树 --orphan 沙盒中工作
* 主分支永远不会被直接修改
仓库:https://github.com/quentinzhang/vibedeck
好奇这里其他人是如何处理本地 AI 编码代理的任务隔离、上下文传递和分支安全的。
乐于回答技术问题。
查看原文
Hi HN,<p>I’ve been trying a workflow where a personal AI assistant handles task intake, and coding agents handle implementation.<p>In my setup, I use OpenClaw as the personal assistant layer: I can send it a voice or text note, and it turns that into a structured Markdown task card in my repo. Then VibeDeck, an open source local CLI I built, picks up those task cards, dispatches coding agents into isolated Git worktrees, and lets me review the results as PRs.<p>The main idea is to keep task capture, execution, and review separate:<p>- OpenClaw handles idea capture / task drafting
- VibeDeck handles local orchestration
- coding agents work inside isolated git worktree --orphan sandboxes
- the main branch is never modified directly<p>Repo: https://github.com/quentinzhang/vibedeck<p>Curious how others here are handling task isolation, context handoff, and branch safety for local AI coding agents.<p>Happy to answer technical questions.