squadfoundry 1.0.0 → 1.0.4

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 (1) hide show
  1. package/package.json +118 -112
package/package.json CHANGED
@@ -1,112 +1,118 @@
1
- {
2
- "name": "squadfoundry",
3
- "version": "1.0.0",
4
- "description": "Local extensible multi-agent squad orchestration platform — model-agnostic, host-agnostic, domain-agnostic",
5
- "type": "module",
6
- "main": "./dist/orchestrator/index.js",
7
- "types": "./dist/orchestrator/index.d.ts",
8
- "exports": {
9
- ".": {
10
- "import": "./dist/orchestrator/index.js",
11
- "types": "./dist/orchestrator/index.d.ts"
12
- },
13
- "./adapters/host/ide": {
14
- "import": "./dist/orchestrator/adapters/host/ide.adapter.js",
15
- "types": "./dist/orchestrator/adapters/host/ide.adapter.d.ts"
16
- },
17
- "./adapters/host/claude-code": {
18
- "import": "./dist/orchestrator/adapters/host/claude-code.adapter.js",
19
- "types": "./dist/orchestrator/adapters/host/claude-code.adapter.d.ts"
20
- },
21
- "./adapters/host/opencode": {
22
- "import": "./dist/orchestrator/adapters/host/opencode.adapter.js",
23
- "types": "./dist/orchestrator/adapters/host/opencode.adapter.d.ts"
24
- },
25
- "./adapters/host/anthropic": {
26
- "import": "./dist/orchestrator/adapters/host/anthropic.adapter.js",
27
- "types": "./dist/orchestrator/adapters/host/anthropic.adapter.d.ts"
28
- },
29
- "./adapters/host/openai": {
30
- "import": "./dist/orchestrator/adapters/host/openai.adapter.js",
31
- "types": "./dist/orchestrator/adapters/host/openai.adapter.d.ts"
32
- },
33
- "./adapters/host/local": {
34
- "import": "./dist/orchestrator/adapters/host/local.adapter.js",
35
- "types": "./dist/orchestrator/adapters/host/local.adapter.d.ts"
36
- }
37
- },
38
- "bin": {
39
- "squadfoundry": "./dist/orchestrator/cli/index.js"
40
- },
41
- "files": [
42
- "dist/",
43
- "squads/",
44
- "templates/",
45
- "docs/",
46
- "README.md",
47
- "PROJECT.md",
48
- "AGENTS.md"
49
- ],
50
- "scripts": {
51
- "build": "tsc",
52
- "dev": "tsc --watch",
53
- "test": "vitest run",
54
- "test:watch": "vitest",
55
- "test:unit": "vitest run tests/unit",
56
- "test:integration": "vitest run tests/integration",
57
- "test:coverage": "vitest run --coverage",
58
- "typecheck": "tsc --noEmit",
59
- "cli": "node dist/orchestrator/cli/index.js",
60
- "dev:cli": "tsx orchestrator/cli/index.ts",
61
- "release": "semantic-release",
62
- "prepublishOnly": "npm run build && npm test"
63
- },
64
- "dependencies": {
65
- "@anthropic-ai/sdk": "^0.82.0",
66
- "commander": "^12.1.0",
67
- "glob": "^11.0.0",
68
- "zod": "^3.23.8"
69
- },
70
- "devDependencies": {
71
- "@modelcontextprotocol/sdk": "^1.29.0",
72
- "@semantic-release/changelog": "^6.0.3",
73
- "@semantic-release/commit-analyzer": "^13.0.1",
74
- "@semantic-release/git": "^10.0.1",
75
- "@semantic-release/github": "^11.0.6",
76
- "@semantic-release/npm": "^12.0.2",
77
- "@semantic-release/release-notes-generator": "^14.1.0",
78
- "@types/node": "^22.0.0",
79
- "@vitest/coverage-v8": "^4.1.2",
80
- "semantic-release": "^25.0.3",
81
- "tsx": "^4.21.0",
82
- "typescript": "^5.5.0",
83
- "vitest": "^4.1.2"
84
- },
85
- "engines": {
86
- "node": ">=20.0.0"
87
- },
88
- "keywords": [
89
- "agents",
90
- "multi-agent",
91
- "orchestration",
92
- "squad",
93
- "ai",
94
- "automation",
95
- "workflow",
96
- "claude-code",
97
- "opencode",
98
- "cursor",
99
- "codex",
100
- "ai-native"
101
- ],
102
- "repository": {
103
- "type": "git",
104
- "url": "https://github.com/cubocompany/squadfoundry"
105
- },
106
- "homepage": "https://github.com/cubocompany/squadfoundry",
107
- "bugs": {
108
- "url": "https://github.com/cubocompany/squadfoundry/issues"
109
- },
110
- "license": "MIT",
111
- "packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319"
112
- }
1
+ {
2
+ "name": "squadfoundry",
3
+ "version": "1.0.4",
4
+ "description": "Local extensible multi-agent squad orchestration platform — model-agnostic, host-agnostic, domain-agnostic",
5
+ "type": "module",
6
+ "main": "./dist/orchestrator/index.js",
7
+ "types": "./dist/orchestrator/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "import": "./dist/orchestrator/index.js",
11
+ "types": "./dist/orchestrator/index.d.ts"
12
+ },
13
+ "./adapters/host/ide": {
14
+ "import": "./dist/orchestrator/adapters/host/ide.adapter.js",
15
+ "types": "./dist/orchestrator/adapters/host/ide.adapter.d.ts"
16
+ },
17
+ "./adapters/host/claude-code": {
18
+ "import": "./dist/orchestrator/adapters/host/claude-code.adapter.js",
19
+ "types": "./dist/orchestrator/adapters/host/claude-code.adapter.d.ts"
20
+ },
21
+ "./adapters/host/opencode": {
22
+ "import": "./dist/orchestrator/adapters/host/opencode.adapter.js",
23
+ "types": "./dist/orchestrator/adapters/host/opencode.adapter.d.ts"
24
+ },
25
+ "./adapters/host/anthropic": {
26
+ "import": "./dist/orchestrator/adapters/host/anthropic.adapter.js",
27
+ "types": "./dist/orchestrator/adapters/host/anthropic.adapter.d.ts"
28
+ },
29
+ "./adapters/host/openai": {
30
+ "import": "./dist/orchestrator/adapters/host/openai.adapter.js",
31
+ "types": "./dist/orchestrator/adapters/host/openai.adapter.d.ts"
32
+ },
33
+ "./adapters/host/local": {
34
+ "import": "./dist/orchestrator/adapters/host/local.adapter.js",
35
+ "types": "./dist/orchestrator/adapters/host/local.adapter.d.ts"
36
+ }
37
+ },
38
+ "bin": {
39
+ "squadfoundry": "./dist/orchestrator/cli/index.js"
40
+ },
41
+ "files": [
42
+ "dist/",
43
+ "squads/",
44
+ "templates/",
45
+ "docs/",
46
+ "README.md",
47
+ "PROJECT.md",
48
+ "AGENTS.md"
49
+ ],
50
+ "scripts": {
51
+ "build": "tsc",
52
+ "dev": "tsc --watch",
53
+ "test": "vitest run",
54
+ "test:watch": "vitest",
55
+ "test:unit": "vitest run tests/unit",
56
+ "test:integration": "vitest run tests/integration",
57
+ "test:coverage": "vitest run --coverage",
58
+ "typecheck": "tsc --noEmit",
59
+ "cli": "node dist/orchestrator/cli/index.js",
60
+ "dev:cli": "tsx orchestrator/cli/index.ts",
61
+ "release": "semantic-release",
62
+ "prepublishOnly": "npm run build && npm test"
63
+ },
64
+ "dependencies": {
65
+ "@anthropic-ai/sdk": "^0.82.0",
66
+ "commander": "^12.1.0",
67
+ "glob": "^11.0.0",
68
+ "zod": "^3.23.8"
69
+ },
70
+ "devDependencies": {
71
+ "@modelcontextprotocol/sdk": "^1.29.0",
72
+ "@semantic-release/changelog": "^6.0.3",
73
+ "@semantic-release/commit-analyzer": "^13.0.1",
74
+ "@semantic-release/git": "^10.0.1",
75
+ "@semantic-release/github": "^11.0.6",
76
+ "@semantic-release/npm": "^12.0.2",
77
+ "@semantic-release/release-notes-generator": "^14.1.0",
78
+ "@types/node": "^22.0.0",
79
+ "@vitest/coverage-v8": "^4.1.2",
80
+ "semantic-release": "^25.0.3",
81
+ "tsx": "^4.21.0",
82
+ "typescript": "^5.5.0",
83
+ "vitest": "^4.1.2"
84
+ },
85
+ "engines": {
86
+ "node": ">=20.0.0"
87
+ },
88
+ "keywords": [
89
+ "agents",
90
+ "multi-agent",
91
+ "orchestration",
92
+ "squad",
93
+ "ai",
94
+ "automation",
95
+ "workflow",
96
+ "claude-code",
97
+ "opencode",
98
+ "cursor",
99
+ "codex",
100
+ "ai-native"
101
+ ],
102
+ "repository": {
103
+ "type": "git",
104
+ "url": "git+https://github.com/cubocompany/squadfoundry.git"
105
+ },
106
+ "publishConfig": {
107
+ "access": "public",
108
+ "provenance": true,
109
+ "registry": "https://registry.npmjs.org/",
110
+ "tag": "latest"
111
+ },
112
+ "homepage": "https://github.com/cubocompany/squadfoundry",
113
+ "bugs": {
114
+ "url": "https://github.com/cubocompany/squadfoundry/issues"
115
+ },
116
+ "license": "MIT",
117
+ "packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319"
118
+ }