@grudanov-nikolay/agenttrace-opencode-plugin 0.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
+ import { PluginInput, Hooks } from '@opencode-ai/plugin';
2
+
3
+ /**
4
+ * Raindrop plugin for OpenCode.
5
+ *
6
+ * Automatically traces every coding session — messages, tool calls, and LLM
7
+ * completions — to your Raindrop dashboard.
8
+ *
9
+ * Setup:
10
+ * 1. Add "@raindrop-ai/opencode-plugin" to the "plugin" array in opencode.json
11
+ * 2. Set RAINDROP_WRITE_KEY in your environment
12
+ *
13
+ * Optional config file: ~/.config/opencode/raindrop.json or .opencode/raindrop.json
14
+ */
15
+ declare function plugin(input: PluginInput): Promise<Hooks>;
16
+
17
+ export { plugin as default };
@@ -0,0 +1,17 @@
1
+ import { PluginInput, Hooks } from '@opencode-ai/plugin';
2
+
3
+ /**
4
+ * Raindrop plugin for OpenCode.
5
+ *
6
+ * Automatically traces every coding session — messages, tool calls, and LLM
7
+ * completions — to your Raindrop dashboard.
8
+ *
9
+ * Setup:
10
+ * 1. Add "@raindrop-ai/opencode-plugin" to the "plugin" array in opencode.json
11
+ * 2. Set RAINDROP_WRITE_KEY in your environment
12
+ *
13
+ * Optional config file: ~/.config/opencode/raindrop.json or .opencode/raindrop.json
14
+ */
15
+ declare function plugin(input: PluginInput): Promise<Hooks>;
16
+
17
+ export { plugin as default };