57 lines
3.6 KiB
Markdown
57 lines
3.6 KiB
Markdown
---
|
||
title: "Autonomous Educational Game Development Pipeline"
|
||
type: source
|
||
tags: []
|
||
date: 2026-04-23
|
||
---
|
||
|
||
## Source File
|
||
- [[raw/Agent/usecases/autonomous-game-dev-pipeline.md]]
|
||
|
||
## Summary(用中文描述)
|
||
- 核心主题:AI Agent 全自动管理教育游戏的完整开发生命周期
|
||
- 问题域:单人开发者如何在无团队情况下快速生产 40+ 款儿童教育游戏
|
||
- 方法/机制:
|
||
- "Bugs First" 优先策略:Agent 必须先修复 bugs 文件夹中的第一个 bug,再处理新游戏
|
||
- Round Robin 轮询策略:从队列中按年龄组均衡选取下一款游戏
|
||
- 完整 Git 工作流:feature branch → conventional commits → PR → merge
|
||
- 技术栈:纯 HTML5/CSS3/JS,无框架,移动优先,支持离线
|
||
- 结论/价值:**每 7 分钟产出 1 款游戏或 1 个 bugfix**,单人可维护 41+ 款游戏的知识库
|
||
|
||
## Key Claims(用中文描述)
|
||
- Agent 在检测到 bugs/ 文件夹有内容时,必须优先修复字母序第一个 bug,不能同时处理多个 bug
|
||
- Pipeline 效率达到每 7 分钟完成 1 个新游戏或 1 个 bugfix
|
||
- 游戏需注册到 `games-list.json` 才能在首页显示,这是关键集成步骤
|
||
- 使用 conventional commits 规范(feat: add [game-id])确保提交历史可读
|
||
- 系统指令使用西班牙语(es-419)编写,适配拉丁美洲儿童及其潜在贡献者
|
||
|
||
## Key Quotes
|
||
> "Act as an Expert in Web Game Development and Child UX. Your goal is to develop the next game in the production queue." — Agent 系统指令核心
|
||
> "BUGS FIRST!: If the bugs/ folder has content, your only priority is to fix the first bug in alphabetical order. Do not attempt to fix multiple bugs at once." — 关键工程纪律
|
||
> "Register the game in 'games-list.json' (CRITICAL)" — 核心集成步骤
|
||
> "CRITICAL: git fetch && git pull origin master before starting" — 同步纪律
|
||
|
||
## Key Concepts
|
||
- [[Bugs First]]:优先级策略——Agent 检测到 bug 时必须停止新功能开发,先修 bug,且一次只修一个
|
||
- [[Round Robin Strategy]]:轮询策略——按年龄组均衡分配,平衡内容多样性
|
||
- [[Conventional Commits]]:规范化提交格式(如 `feat: add game-id`),保证项目历史可读
|
||
- [[Feature Branch Workflow]]:Git feature branch → commit → PR → merge 的完整分支管理流程
|
||
- [[HTML5 Game Development]]:无框架、移动优先、离线可用的轻量游戏开发规范
|
||
|
||
## Key Entities
|
||
- [[duberblockito]]:El Bebe Games 项目作者,GitHub 仓库维护者,"LANero of the old school" 爸爸开发者
|
||
- [[El Bebe Games]]:面向拉丁美洲儿童的在线教育游戏平台,无广告、无垃圾信息,官网 elbebe.co
|
||
- [[Susana & Julieta]]:开发者女儿(3岁和即将出生),项目的灵感来源和目标用户
|
||
- [[OpenClaw]]:(关联)本 pipeline 与 OpenClaw 的 autonomous agent 能力相关,是该技术的实际应用场景
|
||
|
||
## Connections
|
||
- [[Multi-Agent Content Factory]] ← related_to ← [[autonomous-game-dev-pipeline]]
|
||
- 两者均涉及 Agent 自动化生产内容,但前者侧重多 Agent 协作链(Research → Writing → Design),后者侧重单人 Agent 的独立流水线
|
||
- [[Goal-Driven Autonomous Tasks]] ← extends ← [[autonomous-game-dev-pipeline]]
|
||
- Overnight Mini-App Builder 同样采用 Agent 自主执行 + Git 状态追踪的工程纪律,是本 pipeline 方法论的延伸
|
||
- [[Project State Management]] ← related_to ← [[autonomous-game-dev-pipeline]]
|
||
- 两者都使用 append-only 日志模式(CHANGELOG.md / master-game-plan.md)作为状态管理机制
|
||
|
||
## Contradictions
|
||
- 无明显内容冲突
|