dsh-codebase-chat 0.24.0 → 0.25.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/README.md +1 -0
- package/dist/cli.js +823 -7
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +41 -2
- package/dist/index.js +897 -6
- package/dist/index.js.map +1 -1
- package/lib/index.js +45 -275
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -142,6 +142,7 @@ npx dsh-codebase-chat --project C:\my-app --ask "how is auth handled?"
|
|
|
142
142
|
npx dsh-codebase-chat --project C:\my-app --health # offline, no LLM
|
|
143
143
|
npx dsh-codebase-chat --project C:\my-app --health --diff main # only what changed
|
|
144
144
|
npx dsh-codebase-chat --project C:\my-app --watch # index stays hot while you code
|
|
145
|
+
npx dsh-codebase-chat --project C:\my-app --prompt intelligence # same banner brief the IDE gets — pipe to any LLM
|
|
145
146
|
```
|
|
146
147
|
|
|
147
148
|
**From source**
|