synapsexcoder 6.0.1 → 6.0.2

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.
@@ -0,0 +1,17 @@
1
+ /**
2
+ * SynapseXcoder — OpenCode TUI Plugin Entry Point
3
+ *
4
+ * Minimal TUI plugin module. SynapseXcoder provides agent-level functionality
5
+ * (13+ specialized agents, tool routing, shell environment) and does not
6
+ * define custom TUI routes, slots, keybindings, or UI elements.
7
+ *
8
+ * This module exists so OpenCode's plugin resolver can find a `./tui` export
9
+ * target. Without it, loading the package as a plugin produces:
10
+ * "plugin has no target tui"
11
+ *
12
+ * @see https://opencode.ai/docs/plugins
13
+ */
14
+ import type { TuiPluginModule } from "@opencode-ai/plugin/tui";
15
+ declare const tuiPlugin: TuiPluginModule;
16
+ export default tuiPlugin;
17
+ //# sourceMappingURL=tui-plugin.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tui-plugin.d.ts","sourceRoot":"","sources":["../../src/plugin/tui-plugin.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AACH,OAAO,KAAK,EAAa,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAQ1E,QAAA,MAAM,SAAS,EAAE,eAGhB,CAAC;AAEF,eAAe,SAAS,CAAC"}
@@ -0,0 +1,11 @@
1
+ const plugin = async (_api, _options, _meta) => {
2
+ // SynapseXcoder provides no custom TUI elements.
3
+ // All functionality is delivered through agent prompts (opencode-agents/*.md),
4
+ // native tool definitions (native-tools.ts), and shell environment hooks.
5
+ };
6
+ const tuiPlugin = {
7
+ id: "synapsexcoder",
8
+ tui: plugin,
9
+ };
10
+ export default tuiPlugin;
11
+ //# sourceMappingURL=tui-plugin.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tui-plugin.js","sourceRoot":"","sources":["../../src/plugin/tui-plugin.ts"],"names":[],"mappings":"AAeA,MAAM,MAAM,GAAc,KAAK,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,EAAE;IACxD,iDAAiD;IACjD,+EAA+E;IAC/E,0EAA0E;AAC5E,CAAC,CAAC;AAEF,MAAM,SAAS,GAAoB;IACjC,EAAE,EAAE,eAAe;IACnB,GAAG,EAAE,MAAM;CACZ,CAAC;AAEF,eAAe,SAAS,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "synapsexcoder",
3
- "version": "6.0.1",
3
+ "version": "6.0.2",
4
4
  "description": "SynapseXcoder V6.0 - Multi-Agent OpenCode Plugin Framework with 13+ Specialized Agents & Knowledge Vault",
5
5
  "type": "module",
6
6
  "main": "dist/types/index.js",
@@ -8,6 +8,7 @@
8
8
  "exports": {
9
9
  ".": "./dist/types/index.js",
10
10
  "./opencode-plugin": "./dist/plugin/opencode-plugin.js",
11
+ "./tui": "./dist/plugin/tui-plugin.js",
11
12
  "./cli": "./dist/cli/index.js"
12
13
  },
13
14
  "bin": {
@@ -55,6 +56,7 @@
55
56
  "files": [
56
57
  "dist",
57
58
  "src/plugin/opencode-plugin.ts",
59
+ "src/plugin/tui-plugin.ts",
58
60
  "opencode-agents",
59
61
  ".opencode/opencode.jsonc"
60
62
  ],
@@ -0,0 +1,27 @@
1
+ /**
2
+ * SynapseXcoder — OpenCode TUI Plugin Entry Point
3
+ *
4
+ * Minimal TUI plugin module. SynapseXcoder provides agent-level functionality
5
+ * (13+ specialized agents, tool routing, shell environment) and does not
6
+ * define custom TUI routes, slots, keybindings, or UI elements.
7
+ *
8
+ * This module exists so OpenCode's plugin resolver can find a `./tui` export
9
+ * target. Without it, loading the package as a plugin produces:
10
+ * "plugin has no target tui"
11
+ *
12
+ * @see https://opencode.ai/docs/plugins
13
+ */
14
+ import type { TuiPlugin, TuiPluginModule } from "@opencode-ai/plugin/tui";
15
+
16
+ const plugin: TuiPlugin = async (_api, _options, _meta) => {
17
+ // SynapseXcoder provides no custom TUI elements.
18
+ // All functionality is delivered through agent prompts (opencode-agents/*.md),
19
+ // native tool definitions (native-tools.ts), and shell environment hooks.
20
+ };
21
+
22
+ const tuiPlugin: TuiPluginModule = {
23
+ id: "synapsexcoder",
24
+ tui: plugin,
25
+ };
26
+
27
+ export default tuiPlugin;