@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.
- package/LICENSE +22 -0
- package/README.md +102 -0
- package/dist/index.cjs +2430 -0
- package/dist/index.d.cts +17 -0
- package/dist/index.d.ts +17 -0
- package/dist/index.js +2474 -0
- package/package.json +42 -0
package/dist/index.d.cts
ADDED
|
@@ -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 };
|
package/dist/index.d.ts
ADDED
|
@@ -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 };
|