@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
@@ -41,7 +41,7 @@ OpenCode automatically installs the plugin on next launch.
41
41
 
42
42
  ```json
43
43
  {
44
- "plugin": ["@howaboua/opencode-chat@0.1.6"]
44
+ "plugin": ["@howaboua/opencode-chat@0.1.7"]
45
45
  }
46
46
  ```
47
47
 
@@ -1,2 +1,3 @@
1
+ #!/usr/bin/env node
1
2
  export {};
2
3
  //# sourceMappingURL=download-model.d.ts.map
@@ -1,6 +1,7 @@
1
+ #!/usr/bin/env node
1
2
  /**
2
3
  * Download embedding model for semantic search.
3
- * Usage: bun script/download-model.ts
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,2 +1,3 @@
1
+ #!/usr/bin/env node
1
2
  export {};
2
3
  //# sourceMappingURL=semantic-index.d.ts.map
@@ -1,6 +1,7 @@
1
+ #!/usr/bin/env node
1
2
  /**
2
3
  * Manual semantic indexer.
3
- * Usage: bun script/semantic-index.ts --mode changed|full
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";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@howaboua/opencode-chat",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "description": "Chatifier plugin for OpenCode - Adds chat-optimized tools and semantic search",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",