daedalus-cli 1.82.0 → 1.83.1
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 +7 -0
- package/README.md +9 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.83.1](https://github.com/bgill55/daedalus/compare/v1.83.0...v1.83.1) (2026-07-27)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Reverts
|
|
5
|
+
|
|
6
|
+
* Revert "chore(release): 1.83.0" ([f88c6dc](https://github.com/bgill55/daedalus/commit/f88c6dcd41b47971cd6c9c164ce0d9be8029074d))
|
|
7
|
+
|
|
1
8
|
# [1.82.0](https://github.com/bgill55/daedalus/compare/v1.81.0...v1.82.0) (2026-07-27)
|
|
2
9
|
|
|
3
10
|
|
package/README.md
CHANGED
|
@@ -109,6 +109,10 @@ AI assistance without:
|
|
|
109
109
|
- **Web** — DuckDuckGo search and URL fetching (no API key needed)
|
|
110
110
|
- **Image Generation** — local Stable Diffusion WebUI integration with automatic zero-config Pollinations AI fallback (`/image` command & `generate_image` tool) for generating UI assets, logos, and graphics without requiring an API key
|
|
111
111
|
- **Codebase** — index, find, definitions, references
|
|
112
|
+
- **Logger** — unified `src/tools/logger.ts` with `ConsoleLogger` and `SilentLogger` for configurable output
|
|
113
|
+
- **REPL** — persistent context REPL (`src/tools/repl.ts`) for interactive experimentation
|
|
114
|
+
- **Telemetry** — lightweight performance timing utilities (`src/tools/telemetry.ts`)
|
|
115
|
+
- **Dependency fallback** — `src/tools/deps.ts` to verify required commands and provide helpful install guidance
|
|
112
116
|
|
|
113
117
|
### Commands
|
|
114
118
|
|
|
@@ -246,9 +250,11 @@ For in-depth explanations, configuration options, and hardware optimization tips
|
|
|
246
250
|
```bash
|
|
247
251
|
npm run dev # hot-reload
|
|
248
252
|
npm run build # compile TypeScript
|
|
249
|
-
npm test # vitest (
|
|
253
|
+
npm test # vitest (470+ tests)
|
|
250
254
|
npm run lint # eslint (flat config)
|
|
251
255
|
npx tsc --noEmit # type check
|
|
256
|
+
npm run audit # full CI pipeline (lint + build + test + config validation)
|
|
257
|
+
npm run docs # generate Typedoc HTML documentation
|
|
252
258
|
```
|
|
253
259
|
|
|
254
260
|
### Architecture
|
|
@@ -260,11 +266,11 @@ npx tsc --noEmit # type check
|
|
|
260
266
|
```
|
|
261
267
|
src/
|
|
262
268
|
├── index.ts CLI entry, REPL, command dispatch
|
|
263
|
-
├── config/ Zod-schema validated config
|
|
269
|
+
├── config/ Zod-schema validated config (+ validate.ts)
|
|
264
270
|
├── router/ Model routing, health checks, rate limiter
|
|
265
271
|
├── session/ SQLite sessions, project memory, JSONL export
|
|
266
272
|
├── agents/ Multi-agent orchestration (planner, coder, et al.)
|
|
267
|
-
├── tools/
|
|
273
|
+
├── tools/ Logger, REPL, telemetry, deps fallback, spinner
|
|
268
274
|
├── indexing/ FTS5 codebase indexing
|
|
269
275
|
└── onboarding/ Setup wizard
|
|
270
276
|
```
|