opencode-swarm 1.0.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/LICENSE +21 -0
- package/README.md +162 -0
- package/dist/agents/architect.d.ts +7 -0
- package/dist/agents/auditor.d.ts +2 -0
- package/dist/agents/coder.d.ts +2 -0
- package/dist/agents/index.d.ts +19 -0
- package/dist/agents/security-reviewer.d.ts +2 -0
- package/dist/agents/sme/active-directory.d.ts +2 -0
- package/dist/agents/sme/azure.d.ts +2 -0
- package/dist/agents/sme/base.d.ts +13 -0
- package/dist/agents/sme/index.d.ts +20 -0
- package/dist/agents/sme/linux.d.ts +2 -0
- package/dist/agents/sme/network.d.ts +2 -0
- package/dist/agents/sme/oracle.d.ts +2 -0
- package/dist/agents/sme/powershell.d.ts +2 -0
- package/dist/agents/sme/python.d.ts +2 -0
- package/dist/agents/sme/security.d.ts +2 -0
- package/dist/agents/sme/ui-ux.d.ts +2 -0
- package/dist/agents/sme/vmware.d.ts +2 -0
- package/dist/agents/sme/windows.d.ts +2 -0
- package/dist/agents/test-engineer.d.ts +2 -0
- package/dist/cli/index.d.ts +2 -0
- package/dist/cli/index.js +148 -0
- package/dist/config/constants.d.ts +20 -0
- package/dist/config/index.d.ts +5 -0
- package/dist/config/loader.d.ts +23 -0
- package/dist/config/schema.d.ts +46 -0
- package/dist/hooks/index.d.ts +1 -0
- package/dist/hooks/pipeline-tracker.d.ts +34 -0
- package/dist/index.d.ts +15 -0
- package/dist/index.js +27412 -0
- package/dist/tools/domain-detector.d.ts +6 -0
- package/dist/tools/file-extractor.d.ts +5 -0
- package/dist/tools/index.d.ts +2 -0
- package/dist/utils/index.d.ts +1 -0
- package/dist/utils/logger.d.ts +3 -0
- package/package.json +47 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { log, warn, error } from './logger';
|
package/package.json
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "opencode-swarm",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Architect-centric agentic swarm plugin for OpenCode - hub-and-spoke orchestration with SME consultation, code generation, and QA review",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"bin": {
|
|
8
|
+
"opencode-swarm": "./dist/cli/index.js"
|
|
9
|
+
},
|
|
10
|
+
"type": "module",
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"keywords": [
|
|
13
|
+
"opencode",
|
|
14
|
+
"opencode-plugin",
|
|
15
|
+
"ai",
|
|
16
|
+
"agents",
|
|
17
|
+
"orchestration",
|
|
18
|
+
"swarm",
|
|
19
|
+
"multi-agent",
|
|
20
|
+
"llm"
|
|
21
|
+
],
|
|
22
|
+
"files": [
|
|
23
|
+
"dist",
|
|
24
|
+
"README.md",
|
|
25
|
+
"LICENSE"
|
|
26
|
+
],
|
|
27
|
+
"scripts": {
|
|
28
|
+
"build": "bun build src/index.ts --outdir dist --target bun --format esm && bun build src/cli/index.ts --outdir dist/cli --target bun --format esm && tsc --emitDeclarationOnly",
|
|
29
|
+
"typecheck": "tsc --noEmit",
|
|
30
|
+
"test": "bun test",
|
|
31
|
+
"lint": "biome lint .",
|
|
32
|
+
"format": "biome format . --write",
|
|
33
|
+
"check": "biome check --write .",
|
|
34
|
+
"dev": "bun run build && opencode",
|
|
35
|
+
"prepublishOnly": "bun run build"
|
|
36
|
+
},
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"@opencode-ai/plugin": "^1.1.19",
|
|
39
|
+
"@opencode-ai/sdk": "^1.1.19",
|
|
40
|
+
"zod": "^4.1.8"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@biomejs/biome": "2.3.11",
|
|
44
|
+
"bun-types": "latest",
|
|
45
|
+
"typescript": "^5.7.3"
|
|
46
|
+
}
|
|
47
|
+
}
|