novel-weaver 0.1.0

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,16 @@
1
+ import { PluginModule, Plugin } from '@opencode-ai/plugin';
2
+
3
+ /**
4
+ * Novel Weaver Plugin — Entry Point
5
+ *
6
+ * Exports a valid `PluginModule` that registers:
7
+ * - `config` hook — merges user config with defaults, calls `registerAgents`
8
+ * - `tool` hook — exposes tools for world, character, review, and init
9
+ *
10
+ * @packageDocumentation
11
+ */
12
+
13
+ declare const novelWeaverPlugin: Plugin;
14
+ declare const pluginModule: PluginModule;
15
+
16
+ export { pluginModule as default, novelWeaverPlugin as server };
@@ -0,0 +1,16 @@
1
+ import { PluginModule, Plugin } from '@opencode-ai/plugin';
2
+
3
+ /**
4
+ * Novel Weaver Plugin — Entry Point
5
+ *
6
+ * Exports a valid `PluginModule` that registers:
7
+ * - `config` hook — merges user config with defaults, calls `registerAgents`
8
+ * - `tool` hook — exposes tools for world, character, review, and init
9
+ *
10
+ * @packageDocumentation
11
+ */
12
+
13
+ declare const novelWeaverPlugin: Plugin;
14
+ declare const pluginModule: PluginModule;
15
+
16
+ export { pluginModule as default, novelWeaverPlugin as server };