@inkeep/agents-cli 0.0.0-dev-20251117225338 → 0.0.0-dev-20251118035936

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/dist/config.d.ts CHANGED
@@ -1,5 +1,11 @@
1
1
  interface ApiConfig {
2
+ /**
3
+ * API endpoint URL
4
+ */
2
5
  url: string;
6
+ /**
7
+ * API key
8
+ */
3
9
  apiKey?: string;
4
10
  }
5
11
  interface FlatInkeepConfig {
@@ -16,10 +22,28 @@ interface FlatInkeepConfig {
16
22
  outputDirectory?: string;
17
23
  }
18
24
  interface NestedInkeepConfig {
25
+ /**
26
+ * Tenant identifier
27
+ */
19
28
  tenantId: string;
29
+ /**
30
+ * Management API configuration
31
+ * @default http://localhost:3002
32
+ */
20
33
  agentsManageApi: ApiConfig;
34
+ /**
35
+ * Runtime API configuration
36
+ * @default http://localhost:3002
37
+ */
21
38
  agentsRunApi: ApiConfig;
39
+ /**
40
+ * Management UI URL
41
+ * @default http://localhost:3000
42
+ */
22
43
  manageUiUrl?: string;
44
+ /**
45
+ * Output directory for generated files
46
+ */
23
47
  outputDirectory?: string;
24
48
  }
25
49
  type InkeepConfig = FlatInkeepConfig | NestedInkeepConfig;
package/dist/index.js CHANGED
@@ -1694,7 +1694,7 @@ var init_schema = __esm({
1694
1694
  ...agentScoped,
1695
1695
  ...uiProperties,
1696
1696
  prompt: text("prompt").notNull(),
1697
- conversationHistoryConfig: jsonb("conversation_history_config").$type().notNull().default({
1697
+ conversationHistoryConfig: jsonb("conversation_history_config").$type().default({
1698
1698
  mode: "full",
1699
1699
  limit: 50,
1700
1700
  maxOutputTokens: 4e3,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inkeep/agents-cli",
3
- "version": "0.0.0-dev-20251117225338",
3
+ "version": "0.0.0-dev-20251118035936",
4
4
  "description": "Inkeep CLI tool",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -49,8 +49,8 @@
49
49
  "ts-morph": "^26.0.0",
50
50
  "tsx": "^4.20.5",
51
51
  "open": "^10.2.0",
52
- "@inkeep/agents-core": "^0.0.0-dev-20251117225338",
53
- "@inkeep/agents-sdk": "^0.0.0-dev-20251117225338"
52
+ "@inkeep/agents-core": "^0.0.0-dev-20251118035936",
53
+ "@inkeep/agents-sdk": "^0.0.0-dev-20251118035936"
54
54
  },
55
55
  "devDependencies": {
56
56
  "@types/degit": "^2.8.6",
@@ -63,7 +63,7 @@
63
63
  "vitest": "^3.2.4"
64
64
  },
65
65
  "peerDependencies": {
66
- "@inkeep/agents-manage-ui": "0.0.0-dev-20251117225338",
66
+ "@inkeep/agents-manage-ui": "0.0.0-dev-20251118035936",
67
67
  "zod": "^4.1.11"
68
68
  },
69
69
  "engines": {