@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 +1 -1
- package/dist/cli/index.js +2 -2
- package/dist/commands/login.js +1 -1
- package/dist/config/endpoints.js +8 -8
- package/package.json +1 -1
package/README.md
CHANGED
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.
|
|
317
|
+
https://platform.agentics.dev
|
|
318
318
|
|
|
319
|
-
For more information, visit: https://docs.agentics.
|
|
319
|
+
For more information, visit: https://docs.agentics.dev/cli
|
|
320
320
|
`);
|
|
321
321
|
}
|
|
322
322
|
// ============================================================================
|
package/dist/commands/login.js
CHANGED
|
@@ -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.
|
|
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
|
package/dist/config/endpoints.js
CHANGED
|
@@ -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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
52
|
+
baseUrl: process.env['DILIGENCE_URL'] ?? 'https://diligence.agentics.dev',
|
|
53
53
|
version: 'v1',
|
|
54
54
|
timeout: 180000,
|
|
55
55
|
},
|