opencode-subagent-magazine 1.2.0 → 1.2.1

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.
@@ -1 +1 @@
1
- export declare const PLUGIN_VERSION = "1.2.0";
1
+ export declare const PLUGIN_VERSION = "1.2.1";
package/dist/_version.js CHANGED
@@ -1,2 +1,2 @@
1
1
  // auto-generated
2
- export const PLUGIN_VERSION = "1.2.0";
2
+ export const PLUGIN_VERSION = "1.2.1";
@@ -0,0 +1,3 @@
1
+ import type { PluginModule } from "@opencode-ai/plugin";
2
+ declare const mod: PluginModule;
3
+ export default mod;
package/dist/server.js ADDED
@@ -0,0 +1,6 @@
1
+ const server = async () => ({});
2
+ const mod = {
3
+ id: "opencode-subagent-magazine",
4
+ server,
5
+ };
6
+ export default mod;
package/dist/tui.js CHANGED
@@ -11,7 +11,7 @@ import { createElement as _$createElement } from "@opentui/solid";
11
11
  import { createMemo, createSignal, createEffect, onMount, onCleanup, untrack, Show, For } from "solid-js";
12
12
 
13
13
  // src/_version.ts
14
- var PLUGIN_VERSION = "1.2.0";
14
+ var PLUGIN_VERSION = "1.2.1";
15
15
 
16
16
  // src/index.tsx
17
17
  var SUBAGENT_TOOLS = /* @__PURE__ */ new Set(["task", "delegate", "call_omo_agent"]);
package/package.json CHANGED
@@ -1,14 +1,13 @@
1
1
  {
2
2
  "name": "opencode-subagent-magazine",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "OpenCode TUI plugin monitoring sub-agent invocation status in real time",
5
5
  "type": "module",
6
- "main": "dist/index.js",
7
6
  "types": "dist/index.d.ts",
8
7
  "exports": {
9
- ".": {
10
- "import": "./dist/index.js",
11
- "types": "./dist/index.d.ts"
8
+ "./server": {
9
+ "import": "./dist/server.js",
10
+ "types": "./dist/server.d.ts"
12
11
  },
13
12
  "./tui": {
14
13
  "import": "./dist/tui.js",
package/src/_version.ts CHANGED
@@ -1,2 +1,2 @@
1
1
  // auto-generated
2
- export const PLUGIN_VERSION="1.2.0";
2
+ export const PLUGIN_VERSION="1.2.1";
package/src/server.ts ADDED
@@ -0,0 +1,10 @@
1
+ import type { Plugin, PluginModule } from "@opencode-ai/plugin"
2
+
3
+ const server: Plugin = async () => ({})
4
+
5
+ const mod: PluginModule = {
6
+ id: "opencode-subagent-magazine",
7
+ server,
8
+ }
9
+
10
+ export default mod