devchain-cli 0.10.2 → 0.10.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/server/modules/storage/local/local-storage.service.js +2 -2
- package/dist/server/modules/storage/local/local-storage.service.js.map +1 -1
- package/dist/server/templates/3-agents-dev.json +70 -70
- package/dist/server/templates/5-agents-dev.json +98 -98
- package/dist/server/tsconfig.tsbuildinfo +1 -1
- package/dist/templates/3-agents-dev.json +70 -70
- package/dist/templates/5-agents-dev.json +98 -98
- package/package.json +8 -1
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
[](https://www.npmjs.com/package/devchain-cli)
|
|
6
6
|
[](LICENSE)
|
|
7
7
|
|
|
8
|
-
**[Homepage](https://devchain.twitechlab.com/)** · **[What's New in v0.10.0](https://devchain.twitechlab.com/releases/0.10.0/)**
|
|
8
|
+
**[Homepage](https://devchain.twitechlab.com/)** · **[Quick Start Guide (PDF)](https://devchain.twitechlab.com/docs/devchain-quick-start-guide.pdf)** · **[What's New in v0.10.0](https://devchain.twitechlab.com/releases/0.10.0/)**
|
|
9
9
|
|
|
10
10
|
Devchain runs your AI coding agents as a coordinated team — each with their own terminal session, task queue, and chat. Assign epics, track progress on a visual board, and let agents collaborate through a structured workflow. Supports Claude Code, Codex, and Gemini CLI out of the box.
|
|
11
11
|
|
|
@@ -364,7 +364,7 @@ let LocalStorageService = class LocalStorageService {
|
|
|
364
364
|
id: randomUUID(),
|
|
365
365
|
projectId: project.id,
|
|
366
366
|
sourceName,
|
|
367
|
-
enabled:
|
|
367
|
+
enabled: true,
|
|
368
368
|
createdAt: now,
|
|
369
369
|
})));
|
|
370
370
|
}
|
|
@@ -426,7 +426,7 @@ let LocalStorageService = class LocalStorageService {
|
|
|
426
426
|
id: randomUUID(),
|
|
427
427
|
projectId: project.id,
|
|
428
428
|
sourceName,
|
|
429
|
-
enabled:
|
|
429
|
+
enabled: true,
|
|
430
430
|
createdAt: now,
|
|
431
431
|
})));
|
|
432
432
|
}
|