New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@llm-dev-ops/agentics-cli

Package Overview
Dependencies
Maintainers
1
Versions
159
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@llm-dev-ops/agentics-cli

Agentics CLI - Pure orchestration layer for agentics platform services

latest
Source
npmnpm
Version
1.6.0
Version published
Maintainers
1
Created
Source

Agentics CLI

┌─────────────────────────────────────────────────────────────────┐
│                                                                 │
│      █████╗  ██████╗ ███████╗███╗   ██╗████████╗██╗ ██████╗    │
│     ██╔══██╗██╔════╝ ██╔════╝████╗  ██║╚══██╔══╝██║██╔════╝    │
│     ███████║██║  ███╗█████╗  ██╔██╗ ██║   ██║   ██║██║         │
│     ██╔══██║██║   ██║██╔══╝  ██║╚██╗██║   ██║   ██║██║         │
│     ██║  ██║╚██████╔╝███████╗██║ ╚████║   ██║   ██║╚██████╗   │
│     ╚═╝  ╚═╝ ╚═════╝ ╚══════╝╚═╝  ╚═══╝   ╚═╝   ╚═╝ ╚═════╝   │
│                                                                 │
│          Enterprise AI Agent Orchestration Platform              │
│                                                                 │
└─────────────────────────────────────────────────────────────────┘

npm version Node.js TypeScript License Build Status Platform

Overview

Agentics CLI is an enterprise-grade AI agent orchestration platform that enables organizations to plan, simulate, deploy, and govern AI agent infrastructure at scale. It provides a unified command-line interface for managing the full lifecycle of AI agent deployments -- from initial simulation planning through compliance packaging and infrastructure export.

The platform orchestrates 27 deployed agent domains comprising 109 specialized agents that cover security, cost optimization, observability, governance, ERP integration, and more. Agents are dispatched in parallel through 33 auto-dispatched multi-agent combinations, enabling complex enterprise workflows to be resolved through a single natural language command.

Agentics CLI integrates directly with enterprise ERP systems including SAP S/4HANA, Oracle ERP Cloud, and Microsoft Dynamics 365, and exports production-ready infrastructure-as-code for Terraform, Kubernetes, CloudFormation, Pulumi, and Ansible. All operations produce auditable artifacts suitable for SOC2, HIPAA, GDPR, and PCI-DSS compliance reviews.

Key Features

  • 6-Phase Enterprise Pipeline -- Structured workflow from simulation through deployment with full traceability
  • 27 Agent Domains, 109 Agents -- Specialized agents for security, cost analysis, observability, governance, and more
  • Multi-Agent Orchestration -- 33 pre-configured agent combinations dispatched in parallel via agentics ask
  • Natural Language Interface -- Describe tasks in plain English; the CLI classifies intent and routes automatically
  • 10 ERP System Integrations -- Native connectors for SAP, Oracle, NetSuite, Dynamics 365, and more
  • Infrastructure-as-Code Export -- Generate Terraform, Kubernetes, CloudFormation, Pulumi, and Ansible artifacts
  • Compliance Packaging -- Automated SOC2, HIPAA, GDPR, and PCI-DSS artifact generation
  • CFO-Grade Financial Analysis -- ROI quantification with executive-summary and detailed reporting
  • MCP Server Integration -- Operates as a Model Context Protocol server for AI-native toolchains
  • Deterministic Simulation -- Reproducible simulation runs with configurable iteration counts and parallelism

Architecture

6-Phase Enterprise Pipeline

┌───────────┐    ┌───────────┐    ┌───────────┐    ┌───────────┐    ┌───────────┐    ┌───────────┐
│           │    │           │    │           │    │           │    │           │    │           │
│   PLAN    │───>│ SIMULATE  │───>│  INSPECT  │───>│ QUANTIFY  │───>│  DEPLOY   │───>│  EXPORT   │
│           │    │           │    │           │    │           │    │           │    │           │
└───────────┘    └───────────┘    └───────────┘    └───────────┘    └───────────┘    └───────────┘
      │                │                │                │                │                │
      v                v                v                v                v                v
  Simulation       Iteration        Metrics &        Financial       Deployment       IaC Artifacts
   Planner          Runner           Outputs        ROI Engine         Intent         & Compliance

Agent Routing

  agentics ask "<query>"
        │
        ├── Combo Dispatch (33 multi-agent sets, parallel)
        ├── Single Agent Match (95 keyword rules)
        └── Direct Invoke (agentics agents invoke <domain> <agent>)
        │
        v
  27 Agent Domains ── 109 Specialized Agents

Quick Start

Installation

npm install -g @llm-dev-ops/agentics-cli

Or run directly without installation:

npx @llm-dev-ops/agentics-cli help

Authentication

agentics login

First Command

agentics ask "What is the cost breakdown for our AI agent infrastructure?"

Note: All workflow commands accept natural language input in quotes. Structured JSON references are also supported for programmatic use.

Core Workflow

The CLI follows a structured 6-phase pipeline for AI agent deployment. Each phase produces artifacts that feed into the next.

PhaseCommandDescriptionUpstream Service
1agentics planCreate a simulation plan from an organization manifestagentics-simulation-planner
2agentics simulateExecute simulation iterations against the planagentics-simulation-runner
3agentics inspectRetrieve deterministic outputs and metricsagentics-simulation-engine
4agentics quantifyGenerate CFO-grade ROI and financial analysisenterprise-roi-engine
5agentics deployResolve deployment intent from simulation resultsagentics-deployment-intent
6agentics exportGenerate infrastructure-as-code artifactsagentics-deployment-exporters

An additional diligence command packages compliance artifacts across all phases.

Example: End-to-End Workflow

# 1. Create a deployment plan
agentics plan "prod-cluster-v2" --params '{"region":"us-east-1"}'

# 2. Run 10 simulation iterations
agentics simulate '{"id":"plan-abc123"}' --iterations 10 --config '{"parallelism":4}'

# 3. Retrieve simulation metrics
agentics inspect '{"id":"sim-xyz789"}' --output-type metrics --format table

# 4. Generate financial analysis
agentics quantify '{"id":"sim-xyz789"}' --report-type cfo-grade \
  --params '{"currency":"USD","timeframe":"annual"}'

# 5. Deploy to staging
agentics deploy '{"id":"sim-xyz789"}' --environment staging

# 6. Export Terraform configurations
agentics export '{"id":"intent-456"}' --export-format terraform --output ./infrastructure/

# 7. Package compliance documentation
agentics diligence '[{"id":"sim-xyz789"},{"id":"intent-456"}]' --frameworks SOC2,HIPAA

Commands Reference

Workflow Commands

agentics plan

Create a simulation plan from an organization manifest.

agentics plan <manifest-query> [--params <json>]

agentics simulate

Execute a simulation from a plan reference or natural language description.

agentics simulate <plan-ref|description> [--config <json>] [--iterations <n>]

agentics inspect

Retrieve deterministic outputs from a simulation.

agentics inspect <sim-ref|description> [--output-type <type>]

Output types: metrics, logs, state, events, summary, full

agentics quantify

Generate financial impact and ROI analysis.

agentics quantify <sim-ref|description> [--report-type <type>] [--params <json>]

Report types: executive-summary, detailed-analysis, cfo-grade, custom

agentics deploy

Resolve deployment intent from simulation results.

agentics deploy <sim-ref|description> [--spec <json>] [--environment <env>]

agentics export

Generate infrastructure-as-code deployment artifacts.

agentics export <intent-ref|description> [--export-format <format>] [--output <path>]

Export formats: terraform, kubernetes, cloudformation, pulumi, ansible, custom

agentics diligence

Package compliance and audit artifacts.

agentics diligence <refs|description> [--frameworks <list>] [--requirements <json>]

Frameworks: SOC2, HIPAA, GDPR, PCI-DSS, custom

Agent Commands

agentics ask

Route a natural language query to the appropriate agent(s). Automatically dispatches multi-agent combinations when applicable.

agentics ask "<natural language query>"

agentics agents list

List all available agents across all domains.

agentics agents list

agentics agents invoke

Invoke a specific agent directly by domain and agent name.

agentics agents invoke <domain> <agent> '{"text":"<prompt>"}'

ERP Integration Commands

CommandDescription
agentics erp listList all supported ERP systems and connection status
agentics erp surface <system>Surface available modules and data structures
agentics erp map <system> [--modules <list>]Map ERP fields to the Agentics data model
agentics erp inspect <system>Inspect connection details and data availability
agentics erp export <system> [--format <fmt>]Export data mappings for infrastructure generation

Governance Commands

CommandDescription
agentics policy create <name> [--rules <json>]Create a governance policy
agentics policy listList all policies
agentics policy inspect <id>View policy details
agentics policy enable <id>Enable a policy
agentics policy disable <id>Disable a policy
agentics policy delete <id>Delete a policy
agentics audit [--from <date>] [--to <date>]Generate audit trails

Observability Commands

CommandDescription
agentics inspect run <run-id>Inspect a specific simulation or deployment run
agentics inspect artifacts <run-id>List artifacts produced by a run
agentics inspect query [--status <s>]Query across runs with filters
agentics usage [--period <period>]View usage statistics and quota information

Account Commands

CommandDescription
agentics loginAuthenticate with the Agentics platform
agentics logoutClear stored credentials
agentics whoamiDisplay current authenticated identity
agentics versionDisplay CLI and platform version

Global Options

OptionDescription
--timeout <ms>Request timeout in milliseconds
--trace-id <id>Correlation ID for distributed tracing
--format <fmt>Output format: json, yaml, table, text, csv
--verbose, -vEnable verbose output
--prettyPretty-print output
--versionShow CLI version
--helpDisplay command help

Multi-Agent Orchestration

The Agentics platform organizes 109 specialized agents across 27 domains. The agentics ask command automatically classifies user intent and dispatches the optimal set of agents in parallel.

Agent Domains

DomainAgent CountCapability
shield9Security scanning, PII detection, content safety, credential exposure
test-bench14Benchmarking, regression testing, red-teaming, bias and hallucination detection
costops5Cost attribution, forecasting, budgeting, ROI analysis
observatory7Telemetry, usage patterns, health checks, SLO monitoring
orchestrator7Workflow scheduling, dependency management, parallel execution
sentinel5Anomaly detection, drift monitoring, root cause analysis
copilot7Task planning, intent classification, decomposition
memory-graph6Conversation history, decision lineage, knowledge graphs
connector-hub5ERP integration, database queries, webhooks, SSO/OAuth
auto-optimizer3Token optimization, model selection, self-optimization
edge5Circuit breakers, failover, execution guards, caching
forge4SDK generation, CLI tooling, API translation
platform4Executive summaries, decision memos, risk scoring
governance-dashboard3Audit trails, impact analysis, oversight
policy-engine3Policy enforcement, constraints, approval workflows
incident-manager3Escalation, post-mortems, human-in-the-loop
data-vault2Access control, data anonymization
simulator2What-if analysis, scenario simulation
latency-lens2Latency profiling, cold-start analysis
research-lab2Hypothesis testing, metrics analysis
analytics-hub2Consensus building, recommendation reports
registry3Agent indexing, reputation scoring, bootstrapping
marketplace2Agent packaging, deprecation management
config-manager1Configuration validation
schema-registry1Schema validation
benchmark-exchange1Benchmark publishing
inference-gateway1Inference routing and load balancing

Multi-Agent Combinations

When a query matches a known pattern, agentics ask dispatches multiple agents in parallel. Selected examples:

CombinationTrigger PatternsAgents Dispatched
cost-analysis"cost analysis", "spending report"costops/attribution + forecast + roi
security-scan"security scan", "safety scan"shield/prompt-injection + pii + secrets + toxicity + credential-exposure
model-evaluation"evaluate model", "model quality"test-bench/benchmark + quality + hallucination + faithfulness
incident-response"service down", "outage"incident-manager/escalation + post-mortem + sentinel/rca + observatory/failures
executive-brief"executive summary", "board report"platform/executive-summary + costops/attribution + observatory/slo + research-lab/metrics
compliance-review"compliance check", "GDPR", "HIPAA"governance-dashboard/audit + oversight + policy-engine/enforce + data-vault/access-control
decision-package"go/no-go", "decision package"platform/decision + decision-memo + risk-score + costops/roi
latency-debug"why is it slow", "latency issue"latency-lens/latency + cold-start + sentinel/anomaly + rca
resilience-check"handle failures", "make resilient"edge/circuit-breaker + failover + execution-guard + orchestrator/retry
enterprise-data"query SAP", "ERP data"connector-hub/database-query + erp-surface + auth-identity

Note: 33 multi-agent combinations are available in total. Run agentics agents list for the complete catalog.

ERP Integration

The platform provides native connectors for 10 enterprise ERP systems through the connector-hub agent domain.

ERP SystemAPI TypeKey Modules
SAP S/4HANAOData / RFCFinance, Materials Management, Sales, HR, Plant Maintenance
Oracle ERP CloudRESTGeneral Ledger, Procurement, Project Management, Fixed Assets
NetSuiteSuiteTalk / RESTFinancial Management, CRM, Inventory, E-commerce
Microsoft Dynamics 365Dataverse / ODataFinance, Supply Chain, Commerce, Human Resources
Infor CloudSuiteION APIManufacturing, Distribution, Finance, HCM
Epicor KineticRESTManufacturing, Distribution, Financial Management
Sage X3REST / SOAPFinance, Distribution, Manufacturing
IFS CloudRESTAsset Management, Field Service, Manufacturing, Projects
WorkdayREST / SOAPHCM, Financial Management, Planning, Payroll
PeopleSoftComponent InterfaceHCM, Finance, Supply Chain, Campus Solutions
# List available ERP systems
agentics erp list

# Surface modules from SAP
agentics erp surface sap-s4hana

# Map ERP fields to Agentics data model
agentics erp map dynamics-365 --modules finance,supply-chain

# Export mappings as Terraform
agentics erp export oracle-erp-cloud --format terraform

Compliance and Governance

Agentics CLI supports automated compliance artifact generation for major regulatory frameworks.

FrameworkCoverage
SOC2Trust Services Criteria (Security, Availability, Processing Integrity, Confidentiality, Privacy)
HIPAAAdministrative, Physical, and Technical Safeguards; Breach Notification
GDPRData Processing Records, DPIA, Data Subject Rights, Cross-Border Transfer
PCI-DSSCardholder Data Protection, Access Control, Network Security, Monitoring
# Generate compliance package
agentics diligence "package compliance artifacts for SOC2 and HIPAA audit"

# Run governance audit
agentics audit --from 2025-01-01 --to 2025-12-31 --format json

# Create and enforce policies
agentics policy create data-retention --rules '{"max_days":90,"pii_handling":"encrypt"}'
agentics policy enable data-retention

Important: Compliance artifacts are generated based on platform telemetry and simulation data. They should be reviewed by qualified compliance personnel before submission to auditors.

Infrastructure Export

The export command generates production-ready infrastructure-as-code from deployment intents.

FormatOutputUse Case
Terraform.tf files with provider configurationsMulti-cloud infrastructure provisioning
KubernetesYAML manifests (Deployments, Services, ConfigMaps)Container orchestration
CloudFormationJSON/YAML templatesAWS-native infrastructure
PulumiTypeScript/Python programsProgrammatic infrastructure
AnsiblePlaybooks and role definitionsConfiguration management
# Export Terraform for a deployment intent
agentics export '{"id":"intent-456"}' --export-format terraform --output ./infra/terraform/

# Export Kubernetes manifests
agentics export "generate kubernetes manifests for the production cluster" --output ./infra/k8s/

# Export CloudFormation template
agentics export '{"id":"intent-456"}' --export-format cloudformation --output ./infra/cfn/

Natural Language Interface

All workflow commands accept natural language descriptions in place of structured JSON references. The CLI automatically detects input type and routes accordingly.

# Simulation planning
agentics plan "production deployment for the payments microservice"

# Simulation execution
agentics simulate "run an enterprise ERP cost optimization simulation"

# Results inspection
agentics inspect "show me the results from the last production test"

# Financial analysis
agentics quantify "calculate ROI for the Q4 infrastructure upgrade"

# Deployment
agentics deploy "deploy the microservices update to staging"

# IaC generation
agentics export "generate terraform for the new kubernetes cluster"

# Compliance packaging
agentics diligence "package compliance docs for the SOC2 audit"

# Multi-agent queries
agentics ask "what is the cost vs quality tradeoff for switching to a smaller model?"

Input Detection Rules:

  • Input beginning with { or [ is parsed as structured JSON
  • All other input is treated as a natural language description
  • Malformed JSON is treated as natural language

Environment Variables

VariableDescriptionDefault
AGENTICS_API_KEYPlatform API key for authentication--
AGENTICS_PLATFORM_URLBase URL for the Agentics platformhttps://platform.agentics.dev
AGENTICS_MANIFESTS_URLOrganization manifests service endpointPlatform default
AGENTICS_PLANNER_URLSimulation planner service endpointPlatform default
AGENTICS_RUNNER_URLSimulation runner service endpointPlatform default
AGENTICS_SIMULATION_ENGINE_URLSimulation engine service endpointPlatform default
ENTERPRISE_ROI_ENGINE_URLROI engine service endpointPlatform default
AGENTICS_INTENT_URLDeployment intent service endpointPlatform default
AGENTICS_EXPORTERS_URLDeployment exporters service endpointPlatform default
DILIGENCE_URLDiligence artifacts service endpointPlatform default
ANTHROPIC_API_KEYAnthropic API key (for NL classification)--
OPENAI_API_KEYOpenAI API key (alternative NL provider)--

Exit Codes

CodeNameDescription
0SuccessCommand completed successfully
1General ErrorUnspecified error
64Usage ErrorInvalid command syntax or arguments
65Data Format ErrorInvalid input data format
69Service UnavailableUpstream service is unreachable
70Internal ErrorUnexpected internal error
100Validation ErrorArgument or schema validation failed
120Network ErrorNetwork connectivity failure
130Authentication ErrorInvalid or expired credentials
140Service ErrorUpstream service returned an error

API Reference

Complete API documentation is available on the Agentics platform:

The CLI also operates as a Model Context Protocol (MCP) server, enabling integration with AI-native development environments and agent toolchains.

Security

The Agentics CLI implements the following security measures:

  • Authentication -- API key and token-based authentication with the platform
  • Transport Security -- All communications use TLS 1.2+
  • Credential Storage -- Credentials are stored in the user's OS keychain or local configuration with restricted file permissions
  • Input Validation -- All inputs are validated using Zod schemas before processing
  • Audit Logging -- All agent invocations and data access operations are logged for audit
  • Policy Enforcement -- Configurable policies govern agent execution boundaries and data access

To report security vulnerabilities, contact security@globalbusinessadvisors.com.

Contributing

Contributions are welcome. To contribute:

  • Fork the repository at https://github.com/llm-dev-ops/agentics-cli
  • Create a feature branch from main
  • Ensure all tests pass: npm test
  • Ensure type checking passes: npm run typecheck
  • Ensure linting passes: npm run lint
  • Submit a pull request with a clear description of the changes

Development Setup

git clone https://github.com/llm-dev-ops/agentics-cli.git
cd agentics-cli
npm install
npm run build
npm test

Support

ChannelLink
Platformhttps://platform.agentics.dev
GitHub Issueshttps://github.com/llm-dev-ops/agentics-cli/issues
Repositoryhttps://github.com/llm-dev-ops/agentics-cli
npmhttps://www.npmjs.com/package/@llm-dev-ops/agentics-cli

Requirements

  • Node.js >= 18.0.0
  • npm >= 9.0.0 (included with Node.js 18+)
  • Operating Systems: macOS, Linux, Windows (WSL2 recommended)

License

This software requires a paid usage license from Global Business Advisors. All rights reserved. Unauthorized use, reproduction, or distribution is prohibited.

For licensing inquiries, contact Global Business Advisors.

Copyright (c) 2025 Global Business Advisors. All rights reserved.

Keywords

agentics

FAQs

Package last updated on 01 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts