@rrr2010/opencode-roundtable 0.2.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 +198 -0
- package/dist/index.js +1032 -0
- package/dist/index.js.map +15 -0
- package/docs/SPEC.md +979 -0
- package/docs/roundtable.schema.json +42 -0
- package/package.json +53 -0
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"title": "RoundtablePluginConfig",
|
|
4
|
+
"description": "Configuration schema for the Roundtable OpenCode plugin.",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"properties": {
|
|
7
|
+
"$schema": {
|
|
8
|
+
"type": "string",
|
|
9
|
+
"description": "JSON Schema reference for IDE validation."
|
|
10
|
+
},
|
|
11
|
+
"defaultTimeoutMs": {
|
|
12
|
+
"type": "integer",
|
|
13
|
+
"description": "Per-agent timeout in milliseconds",
|
|
14
|
+
"default": 300000,
|
|
15
|
+
"minimum": 30000
|
|
16
|
+
},
|
|
17
|
+
"loopSimilarityThreshold": {
|
|
18
|
+
"type": "number",
|
|
19
|
+
"description": "Jaccard bigram similarity threshold for loop detection (0.0 - 1.0)",
|
|
20
|
+
"default": 0.85,
|
|
21
|
+
"minimum": 0.0,
|
|
22
|
+
"maximum": 1.0
|
|
23
|
+
},
|
|
24
|
+
"toolOutputPreviewMax": {
|
|
25
|
+
"type": "integer",
|
|
26
|
+
"description": "Maximum characters of tool output to include in preview",
|
|
27
|
+
"default": 500,
|
|
28
|
+
"minimum": 100
|
|
29
|
+
},
|
|
30
|
+
"defaultObserverPrompt": {
|
|
31
|
+
"type": "string",
|
|
32
|
+
"description": "Overrides the built-in observer prompt template"
|
|
33
|
+
},
|
|
34
|
+
"maxRounds": {
|
|
35
|
+
"type": "integer",
|
|
36
|
+
"description": "Maximum rounds allowed (safety limit)",
|
|
37
|
+
"default": 10,
|
|
38
|
+
"minimum": 1
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
"additionalProperties": false
|
|
42
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@rrr2010/opencode-roundtable",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "Multi-agent round-robin debate plugin for OpenCode",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"module": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"import": "./dist/index.js",
|
|
12
|
+
"require": "./dist/index.js",
|
|
13
|
+
"types": "./dist/index.d.ts"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist",
|
|
18
|
+
"README.md",
|
|
19
|
+
"docs/SPEC.md",
|
|
20
|
+
"docs/roundtable.schema.json",
|
|
21
|
+
"LICENSE"
|
|
22
|
+
],
|
|
23
|
+
"scripts": {
|
|
24
|
+
"build": "bun build index.ts --outdir dist --target node --format esm --sourcemap --external @opencode-ai/plugin --external @opencode-ai/sdk",
|
|
25
|
+
"typecheck": "tsc --noEmit",
|
|
26
|
+
"prepublishOnly": "bun run build",
|
|
27
|
+
"dev:copy": "cp src/roundtable.ts ~/.config/opencode/plugins/roundtable.ts"
|
|
28
|
+
},
|
|
29
|
+
"keywords": [
|
|
30
|
+
"opencode",
|
|
31
|
+
"plugin",
|
|
32
|
+
"multi-agent",
|
|
33
|
+
"debate",
|
|
34
|
+
"roundtable"
|
|
35
|
+
],
|
|
36
|
+
"license": "MIT",
|
|
37
|
+
"repository": {
|
|
38
|
+
"type": "git",
|
|
39
|
+
"url": "git+https://github.com/opencode-ai/roundtable.git"
|
|
40
|
+
},
|
|
41
|
+
"homepage": "https://github.com/opencode-ai/roundtable#readme",
|
|
42
|
+
"bugs": {
|
|
43
|
+
"url": "https://github.com/opencode-ai/roundtable/issues"
|
|
44
|
+
},
|
|
45
|
+
"peerDependencies": {
|
|
46
|
+
"@opencode-ai/plugin": "latest"
|
|
47
|
+
},
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"@opencode-ai/plugin": "latest",
|
|
50
|
+
"@types/bun": "^1.3.0",
|
|
51
|
+
"typescript": "^5.7.0"
|
|
52
|
+
}
|
|
53
|
+
}
|