daedalus-cli 1.82.0 → 1.83.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 CHANGED
@@ -1,3 +1,10 @@
1
+ # [1.83.0](https://github.com/bgill55/daedalus/compare/v1.82.0...v1.83.0) (2026-07-27)
2
+
3
+
4
+ ### Features
5
+
6
+ * complete three development sprints ([ac39f32](https://github.com/bgill55/daedalus/commit/ac39f32808f62c75b73df1c63b7f377db26f3875))
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 (270+ tests)
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/ 16 built-in tools + MCP transport
273
+ ├── tools/ Logger, REPL, telemetry, deps fallback, spinner
268
274
  ├── indexing/ FTS5 codebase indexing
269
275
  └── onboarding/ Setup wizard
270
276
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "daedalus-cli",
3
- "version": "1.82.0",
3
+ "version": "1.83.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": {