opencode-agentic-engine 0.1.1 → 0.1.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/README.md +26 -4
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +284 -12697
- package/dist/index.js.map +4 -4
- package/dist/memory/persistence.d.ts.map +1 -1
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -45,15 +45,37 @@ Berdasarkan konsep dari paper **"The End of Software Engineering"** (arXiv:2606.
|
|
|
45
45
|
|
|
46
46
|
## Quick Start
|
|
47
47
|
|
|
48
|
-
###
|
|
48
|
+
### Via OpenCode CLI (Rekomendasi)
|
|
49
|
+
|
|
50
|
+
```bash
|
|
51
|
+
# Install global (tersedia di semua project):
|
|
52
|
+
opencode plugin opencode-agentic-engine@latest --global
|
|
53
|
+
|
|
54
|
+
# Atau install lokal (hanya untuk project ini):
|
|
55
|
+
opencode plugin opencode-agentic-engine@latest
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
Perintah ini otomatis:
|
|
59
|
+
1. Mengunduh package dari npm
|
|
60
|
+
2. Mendaftarkan plugin di config OpenCode (`~/.config/opencode/opencode.jsonc` untuk global, atau `opencode.json` lokal)
|
|
61
|
+
3. Plugin siap dipakai saat OpenCode di-restart
|
|
62
|
+
|
|
63
|
+
### Via Config (`opencode.json`)
|
|
64
|
+
|
|
65
|
+
```json
|
|
66
|
+
{
|
|
67
|
+
"plugin": ["opencode-agentic-engine"]
|
|
68
|
+
}
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
OpenCode akan auto-install dari npm saat startup berikutnya.
|
|
72
|
+
|
|
73
|
+
### Drop-in (tanpa npm)
|
|
49
74
|
|
|
50
75
|
```bash
|
|
51
76
|
# Cukup copy satu file ke project OpenCode:
|
|
52
77
|
curl -L https://github.com/rahadiana/opencode-agentic-engine/releases/latest/download/index.js \
|
|
53
78
|
-o .opencode/plugins/agentic-engine.js
|
|
54
|
-
|
|
55
|
-
# Pastikan .opencode/package.json:
|
|
56
|
-
{"name":"project","type":"module"}
|
|
57
79
|
```
|
|
58
80
|
|
|
59
81
|
OpenCode auto-load plugin dari folder `.opencode/plugins/` — tidak perlu konfigurasi tambahan.
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAA;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAA;AAq5F/D,eAAO,MAAM,aAAa,EAAE,MAAqB,CAAA;AAEjD,QAAA,MAAM,YAAY,EAAE,YAGnB,CAAA;AACD,eAAe,YAAY,CAAA;AAG3B,OAAO,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAA;AACxD,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAA;AACxD,OAAO,EAAE,WAAW,EAAE,MAAM,0BAA0B,CAAA;AACtD,OAAO,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAA;AAC7C,OAAO,EAAE,mBAAmB,EAAE,MAAM,qCAAqC,CAAA;AACzE,OAAO,EAAE,WAAW,EAAE,MAAM,6BAA6B,CAAA;AACzD,OAAO,EAAE,gBAAgB,EAAE,MAAM,yBAAyB,CAAA;AAC1D,OAAO,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAA;AAC7C,OAAO,EAAE,gBAAgB,EAAE,MAAM,8BAA8B,CAAA;AAC/D,OAAO,EAAE,sBAAsB,EAAE,oBAAoB,EAAE,iBAAiB,EAAE,sBAAsB,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAA;AAC5J,OAAO,EAAE,aAAa,EAAE,MAAM,gCAAgC,CAAA"}
|