@llm-dev-ops/agentics-cli 1.2.0 → 1.2.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
@@ -261,7 +261,7 @@ agentics quantify "$SIM_REF" --report-type executive-summary
261
261
  ## Platform
262
262
 
263
263
  For API key management and interactive workflows, visit:
264
- **https://platform.agentics.org**
264
+ **https://platform.agentics.dev**
265
265
 
266
266
  ## Requirements
267
267
 
package/dist/cli/index.js CHANGED
@@ -314,9 +314,9 @@ ENVIRONMENT VARIABLES:
314
314
 
315
315
  PLATFORM UI:
316
316
  For API key management and interactive workflows, visit:
317
- https://platform.agentics.org
317
+ https://platform.agentics.dev
318
318
 
319
- For more information, visit: https://docs.agentics.org/cli
319
+ For more information, visit: https://docs.agentics.dev/cli
320
320
  `);
321
321
  }
322
322
  // ============================================================================
@@ -23,7 +23,7 @@ import { createInterface } from 'node:readline';
23
23
  // ============================================================================
24
24
  // Configuration
25
25
  // ============================================================================
26
- const APP_URL = process.env['AGENTICS_APP_URL'] ?? 'https://app.agentics.org';
26
+ const APP_URL = process.env['AGENTICS_APP_URL'] ?? 'https://app.agentics.dev';
27
27
  const CLI_AUTH_PATH = '/cli/auth';
28
28
  // ============================================================================
29
29
  // Login Command Implementation
@@ -14,42 +14,42 @@
14
14
  // ============================================================================
15
15
  export const DEFAULT_ENDPOINTS = {
16
16
  'agentics-org-manifests': {
17
- baseUrl: process.env['AGENTICS_MANIFESTS_URL'] ?? 'https://manifests.agentics.org',
17
+ baseUrl: process.env['AGENTICS_MANIFESTS_URL'] ?? 'https://manifests.agentics.dev',
18
18
  version: 'v1',
19
19
  timeout: 30000,
20
20
  },
21
21
  'agentics-simulation-planner': {
22
- baseUrl: process.env['AGENTICS_PLANNER_URL'] ?? 'https://planner.agentics.org',
22
+ baseUrl: process.env['AGENTICS_PLANNER_URL'] ?? 'https://planner.agentics.dev',
23
23
  version: 'v1',
24
24
  timeout: 60000,
25
25
  },
26
26
  'agentics-simulation-runner': {
27
- baseUrl: process.env['AGENTICS_RUNNER_URL'] ?? 'https://runner.agentics.org',
27
+ baseUrl: process.env['AGENTICS_RUNNER_URL'] ?? 'https://runner.agentics.dev',
28
28
  version: 'v1',
29
29
  timeout: 300000, // 5 minutes for simulations
30
30
  },
31
31
  'agentics-simulation-engine': {
32
- baseUrl: process.env['AGENTICS_SIMULATION_ENGINE_URL'] ?? 'https://simulation-engine.agentics.org',
32
+ baseUrl: process.env['AGENTICS_SIMULATION_ENGINE_URL'] ?? 'https://simulation-engine.agentics.dev',
33
33
  version: 'v1',
34
34
  timeout: 120000, // 2 minutes for artifact retrieval
35
35
  },
36
36
  'enterprise-roi-engine': {
37
- baseUrl: process.env['ENTERPRISE_ROI_ENGINE_URL'] ?? 'https://roi-engine.agentics.org',
37
+ baseUrl: process.env['ENTERPRISE_ROI_ENGINE_URL'] ?? 'https://roi-engine.agentics.dev',
38
38
  version: 'v1',
39
39
  timeout: 180000, // 3 minutes for ROI calculations
40
40
  },
41
41
  'agentics-deployment-intent': {
42
- baseUrl: process.env['AGENTICS_INTENT_URL'] ?? 'https://intent.agentics.org',
42
+ baseUrl: process.env['AGENTICS_INTENT_URL'] ?? 'https://intent.agentics.dev',
43
43
  version: 'v1',
44
44
  timeout: 60000,
45
45
  },
46
46
  'agentics-deployment-exporters': {
47
- baseUrl: process.env['AGENTICS_EXPORTERS_URL'] ?? 'https://exporters.agentics.org',
47
+ baseUrl: process.env['AGENTICS_EXPORTERS_URL'] ?? 'https://exporters.agentics.dev',
48
48
  version: 'v1',
49
49
  timeout: 120000,
50
50
  },
51
51
  'diligence-artifacts': {
52
- baseUrl: process.env['DILIGENCE_URL'] ?? 'https://diligence.agentics.org',
52
+ baseUrl: process.env['DILIGENCE_URL'] ?? 'https://diligence.agentics.dev',
53
53
  version: 'v1',
54
54
  timeout: 180000,
55
55
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@llm-dev-ops/agentics-cli",
3
- "version": "1.2.0",
3
+ "version": "1.2.2",
4
4
  "description": "Agentics CLI - Pure orchestration layer for agentics platform services",
5
5
  "type": "module",
6
6
  "main": "./dist/cli/index.js",