-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "opencode-goalpower",
"version": "2.0.0",
"description": "OpenCode Goalpower V2 — the autonomous goal mode plugin for OpenCode. Multi-round skeptic verification, anti-fabrication honesty anchor, infinite loop with compaction preservation. The /goal plugin for OpenCode you've been looking for.",
"keywords": [
"opencode",
"opencode-plugin",
"opencode-goal",
"opencode-goal-mode",
"opencode-goalpower",
"goal",
"goal-mode",
"goal-plugin",
"skeptic",
"autonomous",
"autonomous-agents",
"long-running",
"ai-agent",
"verifiable",
"anti-fabrication",
"llm",
"ai-coding-agent"
],
"license": "MIT",
"author": {
"name": "emco1234",
"email": "info@contentplanning.ai",
"url": "https://github.com/emco1234"
},
"homepage": "https://github.com/emco1234/opencode-goalpower",
"repository": {
"type": "git",
"url": "git+https://github.com/emco1234/opencode-goalpower.git"
},
"bugs": {
"url": "https://github.com/emco1234/opencode-goalpower/issues"
},
"type": "module",
"exports": {
"./server": {
"import": "./src/server.ts"
}
},
"files": [
"src/server.ts",
"src/tui.tsx",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"opencode": {
"type": "plugin",
"server": "./src/server.ts",
"tui": "./src/tui.tsx"
},
"scripts": {
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "bun test"
},
"dependencies": {
"@opencode-ai/plugin": "^1.17.1",
"zod": "^4.1.8"
},
"devDependencies": {
"@types/bun": "latest",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"typescript": "^5.5.0",
"typescript-eslint": "^8.0.0"
},
"engines": {
"opencode": ">=1.17.1"
}
}