goatcode-sh 0.0.1
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 +19 -0
- package/index.js +3 -0
- package/package.json +24 -0
package/README.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# goatcode
|
|
2
|
+
|
|
3
|
+
Enterprise-grade OpenCode plugin with micro-plugin architecture and multi-agent orchestration.
|
|
4
|
+
|
|
5
|
+
> **This package is under active development.** This is a name reservation. Full implementation coming soon.
|
|
6
|
+
|
|
7
|
+
## What is goatcode?
|
|
8
|
+
|
|
9
|
+
goatcode is a professionally-engineered OpenCode plugin that provides:
|
|
10
|
+
|
|
11
|
+
- Multi-agent orchestration with 11 specialized agents
|
|
12
|
+
- Micro-plugin architecture where every feature is independently composable
|
|
13
|
+
- TypeScript-native configuration (`goatcode.config.ts`)
|
|
14
|
+
- Zero built-in external service connections (enterprise-secure by default)
|
|
15
|
+
- Background agent parallelism with concurrency management
|
|
16
|
+
|
|
17
|
+
## Links
|
|
18
|
+
|
|
19
|
+
- [GitHub](https://github.com/ryanskidmore/goatcode)
|
package/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "goatcode-sh",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Enterprise-grade OpenCode plugin with micro-plugin architecture and multi-agent orchestration",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"opencode",
|
|
9
|
+
"plugin",
|
|
10
|
+
"agents",
|
|
11
|
+
"orchestration",
|
|
12
|
+
"ai"
|
|
13
|
+
],
|
|
14
|
+
"author": "ryanskidmore",
|
|
15
|
+
"license": "MIT",
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "git+https://github.com/ryanskidmore/goatcode.git"
|
|
19
|
+
},
|
|
20
|
+
"homepage": "https://github.com/ryanskidmore/goatcode#readme",
|
|
21
|
+
"bugs": {
|
|
22
|
+
"url": "https://github.com/ryanskidmore/goatcode/issues"
|
|
23
|
+
}
|
|
24
|
+
}
|