Sync: add productivity workflow notes
This commit is contained in:
@@ -1,52 +1,56 @@
|
||||
---
|
||||
title: "Goal-Driven Autonomous Tasks"
|
||||
type: source
|
||||
tags: ["OpenClaw", "Autonomous Agent", "Task Management", "AI Productivity"]
|
||||
date: 2026-04-17
|
||||
---
|
||||
|
||||
## Source File
|
||||
- [[Agent/usecases/overnight-mini-app-builder]]
|
||||
|
||||
## Summary(用中文描述)
|
||||
- 核心主题:AI Agent 从被动执行者转变为主动规划者的目标驱动型自主任务系统
|
||||
- 问题域:人们有大目标但难以分解为每日可执行步骤,且执行本身消耗所有时间
|
||||
- 方法/机制:OpenClaw 记忆系统 + 每日自主任务生成 + Kanban 看板追踪 + 过夜 MVP 构建
|
||||
- 结论/价值:将"规划"和"执行"都外包给 AI Agent,用户只需定义目的地,Agent 自动分解并执行每日步骤
|
||||
|
||||
## Key Claims(用中文描述)
|
||||
- OpenClaw + 每日任务生成 → 将 AI Agent 从被动工具转变为主动员工
|
||||
- 每日清晨 8:00 自动生成 4-5 个任务,涵盖研究/写作/应用构建/竞品分析/内容创作
|
||||
- 过夜构建惊喜 Mini-App MVP → 每天醒来获得一个贴近目标的新产品原型
|
||||
- Kanban 看板 → 将 AI Agent 变成可追踪的员工,可实时查看进度并纠偏
|
||||
- "Brain Dump 是关键" → 给越多目标上下文,Agent 的每日任务越精准
|
||||
|
||||
## Key Quotes
|
||||
> "Every morning, the agent generates 4-5 tasks it can complete autonomously on your computer." — 每日任务自动生成机制
|
||||
> "You define the destination; the agent figures out the daily steps and walks them." — 核心价值主张
|
||||
> "The brain dump is everything. The more context you give about your goals, the better the agent's daily tasks will be." — 最重要的一步
|
||||
> "Keep AUTONOMOUS.md under ~50 lines: goals (one-liners) + open backlog only." — Token 优化原则
|
||||
> "Git never rewrites history, you only add new commits. It eliminates race conditions entirely." — 竞态条件解决思路
|
||||
|
||||
## Key Concepts
|
||||
- [[Kanban]]:看板系统,OpenClaw 自动构建 Next.js 看板追踪任务状态(To Do/In Progress/Done)
|
||||
- [[Autonomous Agent]]:自主代理,具备目标理解、任务分解、自主执行能力的 AI Agent 模式
|
||||
- [[Brain Dump]]:一次性将所有目标/使命/任务倒入 AI 记忆系统,是整个工作流最关键的第一步
|
||||
- [[Sub-Agent Race Condition]]:多子代理并发编辑共享文件导致的竞态条件,解决方案:只追加日志 + 主会话独管状态文件
|
||||
- [[Token-Light Design]]:Token 优化设计,保持 AUTONOMOUS.md 在 50 行以内避免心跳轮询时消耗过多令牌
|
||||
|
||||
## Key Entities
|
||||
- [[OpenClaw]]:多 Agent 框架,提供 sessions_spawn/sessions_send 能力支撑自主任务执行
|
||||
- [[Alex Finn]]:OpenClaw 资深用户,YouTube 频道分享 Life-changing OpenClaw Use Cases,启发了本工作流
|
||||
|
||||
## Connections
|
||||
- [[Goal-Driven Autonomous Tasks]] ← extends ← [[Second Brain]]
|
||||
- [[Goal-Driven Autonomous Tasks]] ← extends ← [[multi-channel-assistant]]
|
||||
- [[Goal-Driven Autonomous Tasks]] ← extends ← [[Dynamic Dashboard]]
|
||||
- [[Goal-Driven Autonomous Tasks]] ← extends ← [[market-research-product-factory]]
|
||||
|
||||
## Contradictions
|
||||
- 与 [[Project State Management]] 冲突:
|
||||
- 冲突点:看板 vs 事件溯源的任务管理方式
|
||||
- 当前观点:本方案使用 Next.js 构建 Kanban 看板,强调用户可视化追踪
|
||||
- 对方观点:[[Project State Management]] 使用 [[Event Sourcing]] 替代看板,强调自动追踪和完整上下文保留,避免手动拖拽和状态丢失
|
||||
---
|
||||
title: "Goal-Driven Autonomous Tasks"
|
||||
type: source
|
||||
tags: []
|
||||
date: 2026-04-27
|
||||
---
|
||||
|
||||
## Source File
|
||||
- [[Agent/usecases/overnight-mini-app-builder.md]]
|
||||
|
||||
## Summary(用中文描述)
|
||||
- 核心主题:AI Agent 从被动执行工具转变为主动的"自我导向型员工"——只需用户一次性输入目标,Agent 每天自动生成、调度并完成推动目标前进的任务,包括夜间自动构建惊喜 Mini-App MVP。
|
||||
- 问题域:大多数人虽有宏大目标,但难以将其拆解为每日可执行的步骤,且执行本身占据全部时间。
|
||||
- 方法/机制:Goal Brain Dump → 每日自主任务生成(4-5项)+ Kanban 追踪 → 可选:夜间 Mini-App 构建流水线。
|
||||
- 结论/价值:将"规划"和"执行"双重重担外包给 AI Agent,用户只需定义目的地,Agent 负责每日跋涉抵达。
|
||||
|
||||
## Key Claims(用中文描述)
|
||||
- **OpenClaw** ← 通过 **goal brain dump + 每日自主任务调度** ← 实现 **从被动工具到自我导向型员工的转变**
|
||||
- **每日任务** ← 覆盖 **研究/写作/脚本/功能构建/内容创作/竞品分析** ← 不限于 App 构建
|
||||
- **Kanban Board** ← 实时追踪 **To Do / In Progress / Done** 三列任务状态 ← 实现 **Agent 工作可视化**
|
||||
- **夜间 Mini-App 构建** ← 通过 **明确指定 MVP 简化要求** ← 实现 **每日惊喜交付**
|
||||
- **Race Condition 风险** ← 由 **主 session 与子 Agent 同时编辑共享文件** ← 导致 **edit 工具静默失败**
|
||||
- **Race Condition 解法** ← 通过 **AUTONOMOUS.md(仅主 session 可写)+ tasks-log.md(仅追加)文件分离** ← 实现 **子 Agent 安全并发**
|
||||
|
||||
## Key Quotes
|
||||
> "Brain dump is everything. The more context you give about your goals, the better the agent's daily tasks will be. Don't hold back." — 目标 Brain Dump 是整个工作流的最重要环节,信息越充分,Agent 的每日任务越精准。
|
||||
> "When done, append a ✅ line to `memory/tasks-log.md`. Never edit `AUTONOMOUS.md` directly." — 子 Agent 的黄金规则:只追加,不编辑,防止竞态条件。
|
||||
> "AUTONOMOUS.md stays small, so it costs fewer tokens every time it's loaded in a heartbeat." — 保持 AUTONOMOUS.md 轻量化,减少心跳轮询时的 Token 消耗。
|
||||
|
||||
## Key Concepts
|
||||
- [[Autonomous-Task-Execution]]:AI Agent 自主生成、调度并完成任务,无需用户逐条指令。定义:用户给出目标上下文,Agent 每日主动拆解并执行。
|
||||
- [[Race-Condition-Avoidance]]:多 Agent 并发编辑共享文件时导致的静默失败。解法:分离"可变主文件"(仅主 session 可写)与"只追加日志"(子 Agent 只能追加)。
|
||||
- [[Mini-App-MVP-Pipeline]]:夜间自动构建并交付最小可行产品的流水线。关键约束:不追求完美,明确 MVP 边界。
|
||||
- [[Kanban-Board]]:可视化任务追踪板,三列(To Do / In Progress / Done)实时更新,赋予 Agent 工作可追溯性。
|
||||
- [[Token-Cost-Optimization]]:通过文件轻量化(减少心跳轮询加载的 Token)实现 Agent 运行的隐性成本控制。
|
||||
|
||||
## Key Entities
|
||||
- [[OpenClaw]]:AI Agent 框架,提供 sessions_spawn / sessions_send 等子 Agent 调度能力,Memory System 支撑长期上下文。
|
||||
- [[Alex Finn]]:OpenClaw 资深用户,该 Goal-Driven Autonomous Tasks 工作流的提出者,发布于其 OpenClaw 生活改变用例系列视频。
|
||||
- [[Next.js]]:Kanban Board 的前端技术栈,OpenClaw 为用户构建。
|
||||
- Telegram / Discord:Agent 与用户的消息通信渠道(集成要求)。
|
||||
|
||||
## Connections
|
||||
- [[autonomous-project-management]] ← extends ← [[Autonomous-Task-Execution]]
|
||||
> 本文档侧重于个人目标驱动的日常任务执行,[[autonomous-project-management]] 侧重于项目维度的多 Agent 协调与进度追踪。
|
||||
- [[dynamic-dashboard]] ← shares_pattern ← [[Kanban-Board]]
|
||||
> 两者均通过可视化面板实现 Agent 产出的可观测性,但 Dynamic Dashboard 面向数据监控,Kanban Board 面向任务管理。
|
||||
- [[OpenClaw]] ← provides_infrastructure ← [[Autonomous-Task-Execution]]
|
||||
> OpenClaw 的 Memory System + sessions_spawn 能力是 Goal-Driven 工作流的技术基础。
|
||||
|
||||
## Contradictions
|
||||
- 与 [[autonomous-project-management]] 的子 Agent 协调机制存在设计张力:
|
||||
- 冲突点:两者均使用子 Agent 执行任务,但对共享状态管理的策略不同。
|
||||
- 当前观点(本页面):通过文件分离(AUTONOMOUS.md + tasks-log.md)解决竞态,主 session 持有写权限,子 Agent 仅追加日志。
|
||||
- 对方观点([[autonomous-project-management]]):采用事件驱动的 Project State Management,通过事件日志替代中心化文件,消除写权限争用。
|
||||
- 说明:两种方案各有取舍,文件分离简单直接但依赖子 Agent 遵守约定;事件驱动更robust但实现复杂度更高。
|
||||
|
||||
Reference in New Issue
Block a user