codeep 1.2.21 → 1.2.23

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.
@@ -26,14 +26,16 @@ export interface InitializeParams {
26
26
  }[];
27
27
  }
28
28
  export interface InitializeResult {
29
- capabilities: {
29
+ protocolVersion: number;
30
+ agentCapabilities: {
30
31
  streaming?: boolean;
31
32
  fileEditing?: boolean;
32
33
  };
33
- serverInfo: {
34
+ agentInfo: {
34
35
  name: string;
35
36
  version: string;
36
37
  };
38
+ authMethods: unknown[];
37
39
  }
38
40
  export interface AgentRunParams {
39
41
  prompt: string;
@@ -26,14 +26,16 @@ export function startAcpServer() {
26
26
  function handleInitialize(msg) {
27
27
  const _params = msg.params;
28
28
  const result = {
29
- capabilities: {
29
+ protocolVersion: 1,
30
+ agentCapabilities: {
30
31
  streaming: true,
31
32
  fileEditing: true,
32
33
  },
33
- serverInfo: {
34
+ agentInfo: {
34
35
  name: 'codeep',
35
36
  version: '1.0.0',
36
37
  },
38
+ authMethods: [],
37
39
  };
38
40
  transport.respond(msg.id, result);
39
41
  }
@@ -335,6 +335,7 @@ Commands (in chat):
335
335
  }
336
336
  // ACP server mode — started by Zed via Agent Client Protocol
337
337
  if (args[0] === 'acp') {
338
+ await loadAllApiKeys();
338
339
  const { startAcpServer } = await import('../acp/server.js');
339
340
  await startAcpServer();
340
341
  return;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeep",
3
- "version": "1.2.21",
3
+ "version": "1.2.23",
4
4
  "description": "AI-powered coding assistant built for the terminal. Multiple LLM providers, project-aware context, and a seamless development workflow.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",