opencode-supertask 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 +224 -0
- package/dist/cli/index.d.ts +2 -0
- package/dist/cli/index.js +22969 -0
- package/dist/cli/index.js.map +1 -0
- package/dist/gateway/index.d.ts +3 -0
- package/dist/gateway/index.js +15459 -0
- package/dist/gateway/index.js.map +1 -0
- package/dist/plugin/supertask.d.ts +13 -0
- package/dist/plugin/supertask.js +27564 -0
- package/dist/plugin/supertask.js.map +1 -0
- package/dist/web/index.d.ts +8 -0
- package/dist/web/index.js +17582 -0
- package/dist/web/index.js.map +1 -0
- package/dist/worker/index.d.ts +44 -0
- package/dist/worker/index.js +5737 -0
- package/dist/worker/index.js.map +1 -0
- package/drizzle/0000_steep_micromax.sql +19 -0
- package/drizzle/0001_tranquil_baron_strucker.sql +1 -0
- package/drizzle/0002_round_william_stryker.sql +11 -0
- package/drizzle/0003_giant_polaris.sql +33 -0
- package/drizzle/meta/0000_snapshot.json +154 -0
- package/drizzle/meta/0001_snapshot.json +161 -0
- package/drizzle/meta/0002_snapshot.json +242 -0
- package/drizzle/meta/0003_snapshot.json +470 -0
- package/drizzle/meta/_journal.json +34 -0
- package/package.json +82 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Plugin } from '@opencode-ai/plugin';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* OpenCode SuperTask 任务管理插件
|
|
5
|
+
*
|
|
6
|
+
* [输入]: 任务配置(名称、Agent、提示词等)
|
|
7
|
+
* [输出]: 任务状态、执行结果
|
|
8
|
+
* [定位]: 通过 supertask_* 工具管理 AI Agent 任务队列
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
declare const SuperTaskPlugin: Plugin;
|
|
12
|
+
|
|
13
|
+
export { SuperTaskPlugin };
|