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.
- package/README.md +148 -0
- package/dist/index.cjs +28499 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +16 -0
- package/dist/index.d.ts +16 -0
- package/dist/index.js +28467 -0
- package/dist/index.js.map +1 -0
- package/package.json +83 -0
package/dist/index.d.cts
ADDED
|
@@ -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 };
|
package/dist/index.d.ts
ADDED
|
@@ -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 };
|