@sorenllm/opencode-forge 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.
Files changed (4) hide show
  1. package/README.md +128 -0
  2. package/SKILL.md +91 -0
  3. package/dist/index.js +13036 -0
  4. package/package.json +59 -0
package/package.json ADDED
@@ -0,0 +1,59 @@
1
+ {
2
+ "name": "@sorenllm/opencode-forge",
3
+ "version": "0.1.0",
4
+ "description": "Single general-purpose forge agent with a plan harness for opencode: file-backed plans in .opencode/plan/, tool-enforced plan structure, hard write-ban while planning (permission layer), ask-pinned approve/close gates the user confirms, and tick-as-you-go task tracking.",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "exports": {
8
+ ".": {
9
+ "import": "./dist/index.js"
10
+ },
11
+ "./server": {
12
+ "import": "./dist/index.js"
13
+ }
14
+ },
15
+ "files": [
16
+ "dist",
17
+ "SKILL.md",
18
+ "README.md"
19
+ ],
20
+ "scripts": {
21
+ "bundle": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\" && bun build ./plugin.ts --outfile ./dist/index.js --target node --format esm",
22
+ "test": "node --test tests/*.test.mjs",
23
+ "typecheck": "tsc --noEmit"
24
+ },
25
+ "keywords": [
26
+ "opencode",
27
+ "opencode-plugin",
28
+ "plan",
29
+ "planning",
30
+ "workflow",
31
+ "single-agent",
32
+ "skill"
33
+ ],
34
+ "license": "MIT",
35
+ "author": "chengsongren",
36
+ "homepage": "https://github.com/ChengZiiii/opencode-forge#readme",
37
+ "repository": {
38
+ "type": "git",
39
+ "url": "git+https://github.com/ChengZiiii/opencode-forge.git"
40
+ },
41
+ "bugs": {
42
+ "url": "https://github.com/ChengZiiii/opencode-forge/issues"
43
+ },
44
+ "peerDependencies": {
45
+ "@opencode-ai/plugin": "^1.18.0"
46
+ },
47
+ "devDependencies": {
48
+ "@opencode-ai/plugin": "^1.18.0",
49
+ "@types/node": "^22.13.9",
50
+ "typescript": "^5.8.2"
51
+ },
52
+ "engines": {
53
+ "opencode": "^1.18.0"
54
+ },
55
+ "publishConfig": {
56
+ "access": "public",
57
+ "registry": "https://registry.npmjs.org/"
58
+ }
59
+ }