@inkeep/agents-cli 0.0.0-dev-20251023130026 → 0.0.0-dev-20251023144626

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 +7 -7
  2. package/package.json +4 -4
package/dist/index.js CHANGED
@@ -235837,8 +235837,8 @@ REQUIREMENTS:
235837
235837
  2. CRITICAL: Always include serverUrl property (required by SDK) extracted from config.mcp.server.url
235838
235838
  3. CRITICAL: Use individual properties supported by mcpTool - do NOT use nested config object
235839
235839
  4. Extract configuration properties and map them to mcpTool's expected properties (serverUrl, transport, etc.)
235840
- 5. CRITICAL: If credentialReferenceId exists in tool data, add it as a credential property using envSettings.getEnvironmentSetting()
235841
- 6. Convert credentialReferenceId to credential key format by replacing hyphens with underscores for the getEnvironmentSetting() call (e.g., 'inkeep-api-credential' becomes 'inkeep_api_credential')
235840
+ 5. CRITICAL: If credentialReferenceId exists in tool data, add it as a credential property using envSettings.getEnvironmentCredential()
235841
+ 6. Convert credentialReferenceId to credential key format by replacing hyphens with underscores for the getEnvironmentCredential() call (e.g., 'inkeep-api-credential' becomes 'inkeep_api_credential')
235842
235842
  7. TRANSPORT CONFIG: If config.mcp.transport exists, extract it as a transport property (not nested in config)
235843
235843
  8. NO CONFIG OBJECT: mcpTool does not accept a 'config' property - use individual properties only
235844
235844
 
@@ -235850,7 +235850,7 @@ export const inkeepFacts = mcpTool({
235850
235850
  id: 'inkeep_facts',
235851
235851
  name: 'inkeep_facts',
235852
235852
  serverUrl: 'https://mcp.inkeep.com/inkeep/mcp',
235853
- credential: envSettings.getEnvironmentSetting('inkeep_api_credential')
235853
+ credential: envSettings.getEnvironmentCredential('inkeep_api_credential')
235854
235854
  });
235855
235855
 
235856
235856
  EXAMPLE WITH TRANSPORT CONFIG:
@@ -236417,8 +236417,8 @@ REQUIREMENTS FOR TOOL FILE:
236417
236417
  2. CRITICAL: Always include serverUrl property (required by SDK) extracted from config.mcp.server.url
236418
236418
  3. CRITICAL: Use individual properties supported by mcpTool - do NOT use nested config object
236419
236419
  4. Extract configuration properties and map them to mcpTool's expected properties (serverUrl, transport, etc.)
236420
- 5. CRITICAL: If credentialReferenceId exists in tool data, add it as a credential property using envSettings.getEnvironmentSetting()
236421
- 6. Convert credentialReferenceId to credential key format by replacing hyphens with underscores for the getEnvironmentSetting() call (e.g., 'inkeep-api-credential' becomes 'inkeep_api_credential')
236420
+ 5. CRITICAL: If credentialReferenceId exists in tool data, add it as a credential property using envSettings.getEnvironmentCredential()
236421
+ 6. Convert credentialReferenceId to credential key format by replacing hyphens with underscores for the getEnvironmentCredential() call (e.g., 'inkeep-api-credential' becomes 'inkeep_api_credential')
236422
236422
  7. TRANSPORT CONFIG: If config.mcp.transport exists, extract it as a transport property (not nested in config)
236423
236423
  8. NO CONFIG OBJECT: mcpTool does not accept a 'config' property - use individual properties only
236424
236424
  `;
@@ -236429,8 +236429,8 @@ REQUIREMENTS FOR EXTERNAL AGENT FILE:
236429
236429
  1. Import externalAgent from '@inkeep/agents-sdk'
236430
236430
  2. Create the external agent using externalAgent()
236431
236431
  3. Export following naming convention rules (camelCase version of ID)
236432
- 5. CRITICAL: If credentialReferenceId exists in external agent data, add it as a credential property using envSettings.getEnvironmentSetting()
236433
- 6. Convert credentialReferenceId to credential key format by replacing hyphens with underscores for the getEnvironmentSetting() call (e.g., 'inkeep-api-credential' becomes 'inkeep_api_credential')
236432
+ 5. CRITICAL: If credentialReferenceId exists in external agent data, add it as a credential property using envSettings.getEnvironmentCredential()
236433
+ 6. Convert credentialReferenceId to credential key format by replacing hyphens with underscores for the getEnvironmentCredential() call (e.g., 'inkeep-api-credential' becomes 'inkeep_api_credential')
236434
236434
  `;
236435
236435
  break;
236436
236436
  case "data_component":
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inkeep/agents-cli",
3
- "version": "0.0.0-dev-20251023130026",
3
+ "version": "0.0.0-dev-20251023144626",
4
4
  "description": "Inkeep CLI tool",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -48,8 +48,8 @@
48
48
  "recast": "^0.23.0",
49
49
  "ts-morph": "^26.0.0",
50
50
  "tsx": "^4.20.5",
51
- "@inkeep/agents-core": "^0.0.0-dev-20251023130026",
52
- "@inkeep/agents-sdk": "^0.0.0-dev-20251023130026"
51
+ "@inkeep/agents-core": "^0.0.0-dev-20251023144626",
52
+ "@inkeep/agents-sdk": "^0.0.0-dev-20251023144626"
53
53
  },
54
54
  "devDependencies": {
55
55
  "@types/degit": "^2.8.6",
@@ -62,7 +62,7 @@
62
62
  "vitest": "^3.2.4"
63
63
  },
64
64
  "peerDependencies": {
65
- "@inkeep/agents-manage-ui": "0.0.0-dev-20251023130026",
65
+ "@inkeep/agents-manage-ui": "0.0.0-dev-20251023144626",
66
66
  "zod": "^4.1.11"
67
67
  },
68
68
  "engines": {