daedalus-cli 1.68.0 → 1.69.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 +7 -0
- package/README.md +0 -70
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [1.69.0](https://github.com/bgill55/daedalus/compare/v1.68.0...v1.69.0) (2026-07-25)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **bot:** add dynamic commands knowledge base and creator recognition banter for bgill55 ([2fc4207](https://github.com/bgill55/daedalus/commit/2fc42077164d6856b24ddfc5a8b8b8ffe1328225))
|
|
7
|
+
|
|
1
8
|
# [1.68.0](https://github.com/bgill55/daedalus/compare/v1.67.0...v1.68.0) (2026-07-25)
|
|
2
9
|
|
|
3
10
|
|
package/README.md
CHANGED
|
@@ -159,76 +159,6 @@ AI assistance without:
|
|
|
159
159
|
| `exit` / `/exit` / `/quit` / `quit` | Save session and exit |
|
|
160
160
|
<!-- END_COMMANDS_TABLE -->
|
|
161
161
|
|
|
162
|
-
### `/health` — Router Health Diagnostics
|
|
163
|
-
|
|
164
|
-
The `/health` command provides a real-time health summary of all configured LLM providers, including latency, availability status, and API key configuration. It is useful for diagnosing connectivity issues or verifying that your provider chain is functioning correctly.
|
|
165
|
-
|
|
166
|
-
**Syntax:**
|
|
167
|
-
|
|
168
|
-
```
|
|
169
|
-
/health [--json | -j] [--samples <N>] [--timeout <ms>]
|
|
170
|
-
```
|
|
171
|
-
|
|
172
|
-
**Options:**
|
|
173
|
-
|
|
174
|
-
| Option | Default | Description |
|
|
175
|
-
|--------|---------|-------------|
|
|
176
|
-
| `--json`, `-j` | `false` | Output raw JSON instead of the formatted table |
|
|
177
|
-
| `--samples <N>` | `5` | Number of latency samples to average per provider |
|
|
178
|
-
| `--timeout <ms>` | `2000` | Maximum time (in ms) to wait for a health probe per provider |
|
|
179
|
-
|
|
180
|
-
**Plain-text output example:**
|
|
181
|
-
|
|
182
|
-
```text
|
|
183
|
-
┌─────────────────┬───────┬───────────────┬─────────────────────┐
|
|
184
|
-
│ Provider │ Status│ Avg Latency │ API-Key │
|
|
185
|
-
├─────────────────┼───────┼───────────────┼─────────────────────┤
|
|
186
|
-
│ OpenAI │ UP │ 112 ms │ SET (sk-…4a2f) │
|
|
187
|
-
│ Anthropic │ DOWN │ — │ MISSING │
|
|
188
|
-
│ Ollama │ UP │ 28 ms │ SET (sk-…9b3c) │
|
|
189
|
-
│ Groq │ UNKNOWN│ — │ SET (sk-…e7d1) │
|
|
190
|
-
├─────────────────┼───────┼───────────────┼─────────────────────┤
|
|
191
|
-
│ Router Strategy │ round-robin │
|
|
192
|
-
└─────────────────┴───────┴───────────────┴─────────────────────┘
|
|
193
|
-
```
|
|
194
|
-
|
|
195
|
-
**JSON output example (`/health --json`):**
|
|
196
|
-
|
|
197
|
-
```json
|
|
198
|
-
{
|
|
199
|
-
"routerStrategy": "round-robin",
|
|
200
|
-
"providers": {
|
|
201
|
-
"openai": {
|
|
202
|
-
"status": "UP",
|
|
203
|
-
"avgLatencyMs": 112,
|
|
204
|
-
"apiKey": "SET (sk-…4a2f)"
|
|
205
|
-
},
|
|
206
|
-
"anthropic": {
|
|
207
|
-
"status": "DOWN",
|
|
208
|
-
"avgLatencyMs": null,
|
|
209
|
-
"apiKey": "MISSING"
|
|
210
|
-
},
|
|
211
|
-
"ollama": {
|
|
212
|
-
"status": "UP",
|
|
213
|
-
"avgLatencyMs": 28,
|
|
214
|
-
"apiKey": "SET (sk-…9b3c)"
|
|
215
|
-
},
|
|
216
|
-
"groq": {
|
|
217
|
-
"status": "UNKNOWN",
|
|
218
|
-
"avgLatencyMs": null,
|
|
219
|
-
"apiKey": "SET (sk-…e7d1)"
|
|
220
|
-
}
|
|
221
|
-
}
|
|
222
|
-
}
|
|
223
|
-
```
|
|
224
|
-
|
|
225
|
-
**Notes:**
|
|
226
|
-
|
|
227
|
-
- API keys are **never** displayed in full. Only the first 3 and last 4 characters are shown.
|
|
228
|
-
- A provider marked `DOWN` failed its health probe; `UNKNOWN` indicates a network error or timeout.
|
|
229
|
-
- The command completes within `3 × timeout` even if some providers are unreachable.
|
|
230
|
-
- Use `/help health` inside the CLI for interactive help with examples.
|
|
231
|
-
|
|
232
162
|
Tab completion works on all commands. You can get detailed manuals, parameter lists, and subcommand options for any command directly inside the CLI by running `/help <command>` (for example, `/help config` or `/help mcp`).
|
|
233
163
|
|
|
234
164
|
---
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"daedalus-cli","version":"1.
|
|
1
|
+
{"name":"daedalus-cli","version":"1.69.0","description":"Local-first AI coding CLI with embedded model router, multi-agent orchestration, and codebase indexing","type":"module","bin":{"daedalus":"dist/index.js"},"files":["dist/","Daedalus.bat","README.md","CHANGELOG.md","CONTRIBUTING.md","CODE_OF_CONDUCT.md","SECURITY.md","AGENTS.md","scripts/postinstall.js"],"scripts":{"start":"tsx src/index.ts","bot":"tsx src/bot.ts","dev":"tsx watch src/index.ts","build":"tsc","prepublishOnly":"npm run build","test":"vitest run","lint":"eslint src --ext .ts","sync-docs":"tsx scripts/sync-docs.ts","postinstall":"node scripts/postinstall.js"},"engines":{"node":">=20.0.0"},"repository":{"type":"git","url":"git+https://github.com/bgill55/daedalus.git"},"homepage":"https://github.com/bgill55/daedalus#readme","bugs":{"url":"https://github.com/bgill55/daedalus/issues"},"keywords":["cli","ai","coding","assistant","local","llm","lm-studio","ollama","mcp","developer-tools"],"license":"MIT","dependencies":{"better-sqlite3":"^12.10.0","cli-highlight":"^2.1.11","diff":"^7.0.0","discord.js":"^14.27.0","dotenv":"^17.4.2","neo-blessed":"^0.2.0","openai":"^4.85.4","pdf-parse":"^2.4.5","picocolors":"^1.1.1","puppeteer-core":"^25.1.0","zod":"^3.23.8"},"devDependencies":{"@eslint/js":"^10.0.1","@semantic-release/changelog":"^6.0.3","@semantic-release/git":"^10.0.1","@semantic-release/github":"^11.0.6","@semantic-release/npm":"^12.0.2","@types/better-sqlite3":"^7.6.13","@types/blessed":"^0.1.27","@types/diff":"^6.0.0","@types/node":"^22.15.3","conventional-changelog-conventionalcommits":"^8.0.0","esbuild":"^0.24.0","eslint":"^10.5.0","globals":"^16.5.0","semantic-release":"^25.0.5","tsx":"^4.19.4","typescript":"^5.8.3","typescript-eslint":"^8.61.1","vitest":"^2.1.8"}}
|