opencode-manifold 0.4.9 → 0.4.11

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/package.json CHANGED
@@ -1,11 +1,21 @@
1
1
  {
2
2
  "name": "opencode-manifold",
3
- "version": "0.4.9",
3
+ "version": "0.4.11",
4
4
  "description": "Multi-agent development system for opencode with persistent knowledge",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
7
+ "exports": {
8
+ ".": {
9
+ "import": "./dist/index.js",
10
+ "default": "./dist/index.js"
11
+ },
12
+ "./tui": {
13
+ "import": "./dist/tui.js",
14
+ "default": "./dist/tui.js"
15
+ }
16
+ },
7
17
  "scripts": {
8
- "build": "bun build src/index.ts --outdir dist --target node --external \"@opencode-ai/*\" --external \"zod\" --external \"better-sqlite3\"",
18
+ "build": "bun build src/index.ts src/tui.ts --outdir dist --target node --external \"@opencode-ai/*\" --external \"zod\" --external \"better-sqlite3\"",
9
19
  "dev": "bun run build --watch"
10
20
  },
11
21
  "files": [
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  description: Orchestrates development by reading plans and dispatching tasks
3
3
  mode: primary
4
- color: #6024bf
4
+ color: "#6024bf"
5
5
  permission:
6
6
  skill:
7
7
  manifold-workflow: allow
@@ -1,4 +1,3 @@
1
1
  ---
2
2
  description: Set the model for a Manifold sub-agent (clerk, senior-dev, junior-dev, debug)
3
3
  ---
4
- The /manifold-models command is handled by the plugin. It will prompt you to select a sub-agent and then a model.
@@ -1,4 +1,3 @@
1
1
  ---
2
2
  description: Clear opencode-manifold plugin cache and prompt for restart
3
3
  ---
4
- The /manifold-update command is handled by the plugin. It clears cached versions and prompts you to restart opencode.