Top AI Repos — open-source AI, indexed and scored
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
An AI-powered IDE for long-form fiction writing, combining software engineering workflows, modern storytelling methodologies, and multi-agent systems.
| Date | Stars |
|---|---|
| 2026-07-31 | 370 |
| 2026-08-05 | 443 |
| 2026-08-06 | 443 |
Today
— stars today
This week
— stars this week
This month
— stars this month
Momentum
60.0
growth rate 0.00%/day
<div align="center"> # NeuroBook **用工程的方法,写完你的长篇** > 设定不吃书 · 伏笔有账本 · 文字没 AI 味 · AI 听指挥 [下载 Windows 免安装包](https://github.com/notnotype/neuro-book/releases) · [文档](https://blog.notnotype.com/neuro-book/) · [Discord](https://discord.gg/bSQB7mNpHB) · QQ 群 287447372 [](https://github.com/notnotype/neuro-book/releases) [](https://github.com/notnotype/neuro-book/pkgs/container/neuro-book) [](https://bun.sh/) [](LICENSE) [](https://discord.gg/bSQB7mNpHB)  **简体中文** · [English](README.en.md) <img src="./docs/images/主页-dark.jpg" width="100%" alt="NeuroBook 主界面:左侧世界书文件树,中间正文编辑器,右侧 AI 写作助手" /> </div> 每个人心里都有一部长篇,但绝大多数死在半路——不是死于没天赋,是死于没有工程。NeuroBook 把软件工程三十年的实践和创意写作一百年的方法论,做成你和 AI 共用的同一套工具:世界状态由引擎推算而不是靠模型记忆,伏笔像技术债一样记账追踪,成稿用 360 条规则做 lint。你的作品是本地的 Markdown 文件和 SQLite,随时带走。 ## 为什么是 NeuroBook AI 能写好一段文字,但写不好一部长篇: - **写长了就吃书**:设定靠模型的对话记忆,越写越漂移——上一卷断掉的手臂,这一卷自己长回来了。 - **挖的坑忘了填**:第 3 章埋的伏笔第 200 章还没收;AI 的思路一关对话就蒸发,作者的便签三个月就找不到。 - **一股 AI 味**:填充词、机械过渡、公式化排比,读者一眼识破。 - **工具是散的**:如果用 Word 写正文、Obsidian 管设定、网页聊天框讨论剧情。三个工具,三份数据,互相不认识。NeuroBook 把他们整合到了一起 NeuroBook 把这些当作工程问题来解决——设定、剧情、正文、世界状态都是 workspace 里可见的文件,作者和 Agent 在明确权限内共同维护。 | 能力 | AI 聊天框 | 角色扮演工具 | 静态设定库型 | 挂机量产型 | NeuroBook | | ---------------------- | ---------- | ------------ | ------------ | ---------- | ------------------------ | | 长篇设定管理 | 靠对话记忆 | 静态词条 | 静态卡片 | 摘要链 | ✅ 随时间演化的世界状态 | | 任意时刻状态推算 | ❌ | ❌ | ❌ | ❌ | ✅ 切面推算,可审计 | | 伏笔登记 / 推进 / 兑现 | ❌ | ❌ | 手工表格 | 部分 | ✅ 承诺账本 | | AI 味检查 | ❌ | ❌ | ❌ | ❌ | ✅ llmlint | | 创作主导权 | 人 | 人 | 人 | 机器 | ✅ 人类主导 + Agent 执行 | ## 快速开始 **Windows**:从 [Releases](https://github.com/notnotype/neuro-book/releases) 下载文件名准确为 `neuro-book-windows-x64.zip` 的压缩包(不要下 Source 或 Product overlay),解压后运行 `Start Neuro Book.cmd`。包内自带运行时和预构建产物,不装依赖、不在你的机器上编译,首次启动默认免密码直接用。 想要多实例、Docker 或从源码构建,改用 NeuroBook Manager: ```powershell irm https://raw.githubusercontent.com/notnotype/neuro-book/master/scripts/install/install.ps1 | iex ``` **Linux / macOS**: ```bash curl -fsSL https://raw.githubusercontent.com/notnotype/neuro-book/master/scripts/install/install.sh | sh ``` **已经装了 Bun(任意平台)**: ```bash bunx --bun @notnotype/neuro-book-manager@canary ``` 安装器会引导你选择目录、端口、更新通道和鉴权方式,确认前统一做一次环境检查。多实例管理、Docker 部署、从源码构建等六种方式,以及引导脚本的 SHA256 审计方法,见[部署文档](docs/deployment.md)。想让别的 AI Agent 帮你部署或排障,把 [docs/operator-bridge.md](docs/operator-bridge.md) 发给它即可。 ## 四大核心能力 ### 🌍 World Engine:不吃书的世界状态引擎 长篇最大的敌人是设定漂移。World Engine 用「时间线 + 切面」做事件溯源:每个重要时间点记录一次状态变更,任意时刻的世界状态都由之前的切面推算得出——角色三个月前受的伤、王国十年前的国库存量,随时可查、不会漂移。补设定就是在合适的时间点插入一个切面,倒叙和回忆天然支持。 - 世界结构自己定义:人物、门派、王国、大陆都可以是有状态的主体(subject)。 - 可以获取任何时间点上任何主体的状态。 - 历法自定义:现实公历、简化纪年或完全架空的历法都支持,公元前也能算。 - 每次变更都是带时间戳的可审计记录:他什么时候获得了这把剑,完全可以查出来。 - Agent 读写分权:leader 可写、writer 只读,写正文时不会误改世界。 <img src="./docs/images/World%20Engine%20Workbench.jpg" width="100%" alt="World Engine 工作台:左侧主体列表,中间世界切片时间线,右侧状态快照与 subject 轨迹" /> ### 🧵 Plot Workbench:剧情工坊——伏笔有账本,决策有存档 结构归结构,因果归因果:**承载树**管故事在哪讲(卷 → 章),**因果树**管故事为什么发生(剧情线 → 场景)。倒叙、插叙、多线随便排,因果链永远清晰。 - **承诺系统**:每个伏笔都是对读者的承诺——埋下、推进、兑现全程记账,节拍挂在场景上随剧情自动更新,写到目标章自动进入写作指令。契诃夫说挂在墙上的枪必须响,NeuroBook 负责提醒你它还没响。不止伏笔——感情线想每隔几章发一次糖?也记上,它会提醒你已经三十章没发糖了。 - **创作决策记录**:三个月前为什么让主角黑化?翻回去只有结果、没有理由,想改又不敢改——Decision 记得:决策当场记档,风险必填,推
Excerpt of 9,150 characters
Read on GitHubWould you bet a product on this? Bounded 0–100 and slow moving.
matched fp:c2da297e3adc467b, llm:Repository description: 'An AI-powered IDE for long-form fiction writing, combining software engineering workflows, modern storytelling methodologies, and multi-agent systems.' Topics include agent, ide, writing, multi-agent signals.
matched fp:c2da297e3adc467b, llm:Repository description: 'An AI-powered IDE for long-form fiction writing, combining software engineering workflows, modern storytelling methodologies, and multi-agent systems.' Topics include agent, ide, writing, multi-agent signals.
matched fp:c2da297e3adc467b, llm:Repository description: 'An AI-powered IDE for long-form fiction writing, combining software engineering workflows, modern storytelling methodologies, and multi-agent systems.' Topics include agent, ide, writing, multi-agent signals.
matched fp:c2da297e3adc467b, llm:Repository description: 'An AI-powered IDE for long-form fiction writing, combining software engineering workflows, modern storytelling methodologies, and multi-agent systems.' Topics include agent, ide, writing, multi-agent signals.