@klitchevo/code-council 0.0.4 → 0.0.7

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 (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +1 -2
package/dist/index.js CHANGED
@@ -1,7 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
 
3
3
  // src/index.ts
4
- import "dotenv/config";
5
4
  import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
6
5
  import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
7
6
 
@@ -14,6 +13,7 @@ var LLM_CONFIG = {
14
13
  };
15
14
  var DEFAULT_MODELS = [
16
15
  "minimax/minimax-m2.1",
16
+ "z-ai/glm-4.7",
17
17
  "x-ai/grok-code-fast-1"
18
18
  ];
19
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@klitchevo/code-council",
3
- "version": "0.0.4",
3
+ "version": "0.0.7",
4
4
  "description": "Multi-model AI code review server using OpenRouter - get diverse perspectives from multiple LLMs in parallel",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -64,7 +64,6 @@
64
64
  "dependencies": {
65
65
  "@modelcontextprotocol/sdk": "1.25.1",
66
66
  "@openrouter/sdk": "0.3.10",
67
- "dotenv": "17.2.3",
68
67
  "zod": "4.2.1"
69
68
  },
70
69
  "devDependencies": {