agents-council-mcp 0.0.0 → 0.0.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 CHANGED
@@ -214,7 +214,7 @@ AGENTS_COUNCIL_STATE_PATH=/path/to/state.json
214
214
 
215
215
  ## Development
216
216
 
217
- See `DEVELOPMENT.md` for local setup and workflow details.
217
+ See [DEVELOPMENT.md](DEVELOPMENT.md) for local setup and workflow details.
218
218
 
219
219
  ## Compatibility
220
220
 
File without changes
package/package.json CHANGED
@@ -1,30 +1,26 @@
1
1
  {
2
2
  "name": "agents-council-mcp",
3
- "version": "0.0.0",
4
- "type": "module",
3
+ "version": "0.0.2",
5
4
  "files": [
6
- "scripts/*.cjs",
5
+ "cli.js",
6
+ "resolveBinary.cjs",
7
+ "postuninstall.cjs",
8
+ "package.json",
7
9
  "README.md",
8
10
  "LICENSE"
9
11
  ],
10
12
  "bin": {
11
- "council": "scripts/cli.cjs"
13
+ "council": "cli.js"
12
14
  },
13
15
  "optionalDependencies": {
14
- "agents-council-mcp-darwin-arm64": "*",
15
- "agents-council-mcp-darwin-x64": "*",
16
- "agents-council-mcp-linux-arm64": "*",
17
- "agents-council-mcp-linux-x64": "*",
18
- "agents-council-mcp-windows-x64": "*"
16
+ "agents-council-mcp-linux-x64": "0.0.2",
17
+ "agents-council-mcp-linux-arm64": "0.0.2",
18
+ "agents-council-mcp-darwin-x64": "0.0.2",
19
+ "agents-council-mcp-darwin-arm64": "0.0.2",
20
+ "agents-council-mcp-windows-x64": "0.0.2"
19
21
  },
20
22
  "scripts": {
21
- "build": "bun build src/cli/index.ts --compile --outfile dist/council",
22
- "cli": "bun src/cli/index.ts",
23
- "lint": "biome lint .",
24
- "format": "biome format --write .",
25
- "format:check": "biome check --formatter-enabled=true --linter-enabled=false .",
26
- "typecheck": "tsc --noEmit",
27
- "prepare": "husky"
23
+ "postuninstall": "node postuninstall.cjs"
28
24
  },
29
25
  "lint-staged": {
30
26
  "package.json": [
@@ -41,17 +37,10 @@
41
37
  "@modelcontextprotocol/sdk": "1.25.1",
42
38
  "zod": "4.2.1"
43
39
  },
44
- "devDependencies": {
45
- "@biomejs/biome": "2.3.10",
46
- "@types/bun": "1.3.5",
47
- "husky": "9.1.7",
48
- "lint-staged": "16.2.7",
49
- "typescript": "5.9.3"
50
- },
51
40
  "author": "Alex Gavrilescu (https://github.com/MrLesk)",
52
41
  "repository": {
53
42
  "type": "git",
54
- "url": "git+https://github.com/MrLesk/agents-council.git"
43
+ "url": "https://github.com/MrLesk/agents-council"
55
44
  },
56
45
  "bugs": {
57
46
  "url": "https://github.com/MrLesk/agents-council/issues"