daedalus-cli 1.71.2 → 1.72.0
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/CHANGELOG.md +12 -0
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# [1.72.0](https://github.com/bgill55/daedalus/compare/v1.71.2...v1.72.0) (2026-07-26)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **discord:** add error handling, exit codes, and npm script for post-infographic ([591be23](https://github.com/bgill55/daedalus/commit/591be234b420b204333de01dabbc84a4d7c6c308))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **issue-8:** [Daedalus Spec] Chat‑History Branching – “What‑if” sessions | Snapshot a chat, branch it, try a different approach, then merge the winning edits back. Perfect for brainstorming multiple implementations. | daedalus /session branch <name> ([3fc857d](https://github.com/bgill55/daedalus/commit/3fc857dfda04037c2474d9cae2ca7cb946ac663e))
|
|
12
|
+
|
|
1
13
|
## [1.71.2](https://github.com/bgill55/daedalus/compare/v1.71.1...v1.71.2) (2026-07-25)
|
|
2
14
|
|
|
3
15
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "daedalus-cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.72.0",
|
|
4
4
|
"description": "Local-first AI coding CLI with embedded model router, multi-agent orchestration, and codebase indexing",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -26,6 +26,7 @@
|
|
|
26
26
|
"test": "vitest run",
|
|
27
27
|
"lint": "eslint src --ext .ts",
|
|
28
28
|
"sync-docs": "tsx scripts/sync-docs.ts",
|
|
29
|
+
"post-infographic": "node scripts/post-infographic.js",
|
|
29
30
|
"postinstall": "node scripts/postinstall.js"
|
|
30
31
|
},
|
|
31
32
|
"engines": {
|