@howaboua/opencode-chat 0.1.6 → 0.1.7
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
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
1
2
|
/**
|
|
2
3
|
* Download embedding model for semantic search.
|
|
3
|
-
* Usage:
|
|
4
|
+
* Usage: npx @howaboua/opencode-chat opencode-chat-download-model
|
|
4
5
|
* Automatically finds repo root by walking up to .opencode/
|
|
5
6
|
*/
|
|
6
7
|
import * as path from "path";
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
1
2
|
/**
|
|
2
3
|
* Manual semantic indexer.
|
|
3
|
-
* Usage:
|
|
4
|
+
* Usage: npx @howaboua/opencode-chat opencode-chat-semantic-index --mode changed|full
|
|
4
5
|
* Automatically finds repo root by walking up to .opencode/
|
|
5
6
|
*/
|
|
6
7
|
import * as path from "path";
|