daedalus-cli 1.60.10 → 1.61.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 +13 -0
- package/dist/agents/roles.js +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
# [1.61.0](https://github.com/bgill55/daedalus/compare/v1.60.10...v1.61.0) (2026-07-25)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **discord:** resolve package name resolution and strict arg type validation flagged in PR [#3](https://github.com/bgill55/daedalus/issues/3) code review ([ce58535](https://github.com/bgill55/daedalus/commit/ce58535108bb0a57dad69d35ca51b3e34644e5e2))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **issue-2:** [Daedalus Spec] 'Add Discord webhook announcer for GitHub release updates' ([a2d4dce](https://github.com/bgill55/daedalus/commit/a2d4dce9ed3a4215b95e9b03ac73cd5e9f26d74f))
|
|
12
|
+
* **reviewer:** add strict execution context and CLI argument type checks to reviewer agent prompt ([e327e73](https://github.com/bgill55/daedalus/commit/e327e73eff2ff34211baf353e2d94a44e086110a))
|
|
13
|
+
|
|
1
14
|
## [1.60.10](https://github.com/bgill55/daedalus/compare/v1.60.9...v1.60.10) (2026-07-25)
|
|
2
15
|
|
|
3
16
|
|
package/dist/agents/roles.js
CHANGED
|
@@ -146,10 +146,10 @@ WORKFLOW:
|
|
|
146
146
|
5. Document findings as a structured review: what passed, what failed, recommendation (approve / needs_fix / stop)
|
|
147
147
|
|
|
148
148
|
REVIEW CHECKLIST (check ALL of these):
|
|
149
|
-
1. CORRECTNESS: Does the code implement what was asked? Are there logic errors?
|
|
150
|
-
2.
|
|
149
|
+
1. CORRECTNESS: Does the code implement what was asked? Are there logic errors or loose truthiness checks (e.g. \`!arg\` passing boolean \`true\` flags from custom CLI parsers)? Validate string types explicitly (\`typeof arg === 'string'\`).
|
|
150
|
+
2. EXECUTION CONTEXT & ENV: Are \`process.env\` variables (e.g. \`npm_package_name\`) assumed to be present during direct \`node\` script invocations? Require robust fallback values or explicit CLI flags.
|
|
151
151
|
3. IMPORTS: Do all imports resolve? Are there unused imports? Are relative paths correct?
|
|
152
|
-
4. TYPES: Are
|
|
152
|
+
4. TYPES: Are custom CLI parsers or data shapes returning typed structures instead of loose untyped objects? Are function return types explicit?
|
|
153
153
|
5. SECURITY: Is user input sanitized? Are secrets hardcoded? Is innerHTML used with dynamic content?
|
|
154
154
|
6. ACCESSIBILITY: Do interactive elements have ARIA labels? Do images have alt text?
|
|
155
155
|
7. PERFORMANCE: Are there unnecessary re-renders? Are large lists virtualized? Are images optimized?
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"daedalus-cli","version":"1.
|
|
1
|
+
{"name":"daedalus-cli","version":"1.61.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","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"}}
|