Engineering Context from the Terminal
Download requirements, specifications, and traceability directly from the command line. AI-ready, automation-friendly, enterprise-proven.
Download & Install
Choose your preferred installation method for your operating system
Loading download information...
Alternative Installation Methods
Installer Script (recommended)
Automated installation with platform detection and checksum verification
curl -fsSL https://ellygent.com/cli/install.sh | shnpm
Install using npm, the Node.js package manager (requires Node.js 20+)
npm install -g @ellygent/cliDirect Download
Download standalone binary (Intel or Apple Silicon)
# Intel Macs
curl -L -o ellygent-macos-x64.tar.gz https://ellygent.com/downloads/cli/latest/ellygent-v0.1.0-macos-x64.tar.gz
tar -xzf ellygent-macos-x64.tar.gz
sudo mv ellygent-macos-x64 /usr/local/bin/ellygent
# Apple Silicon Macs
curl -L -o ellygent-macos-arm64.tar.gz https://ellygent.com/downloads/cli/latest/ellygent-v0.1.0-macos-arm64.tar.gz
tar -xzf ellygent-macos-arm64.tar.gz
sudo mv ellygent-macos-arm64 /usr/local/bin/ellygent
ellygent --versionGet Started in 5 Minutes
From installation to your first context download
Install the CLI
Install using installer script, npm, or direct download
npm install -g @ellygent/cliVerify Installation
Check that the CLI is installed and accessible
ellygent --versionAuthenticate
Log in to your Ellygent account
ellygent loginSync Your First Project
Download engineering context for your project
ellygent sync --project <project-id> --version <version>Need more guidance?
View Complete Getting Started GuideBuilt for Modern Engineering Workflows
Every feature designed to reduce friction and accelerate delivery
AI-Ready Engineering Context
Download requirements, capabilities, constraints, and traceability in formats optimized for AI tools and LLMs.
CI/CD Integration
Integrate Ellygent context into your build pipelines with token-based authentication and deterministic JSON outputs.
Offline-Friendly Workflows
Download context packages locally and work offline. No need for constant connectivity once synced.
Full Traceability Export
Export complete traceability graphs showing relationships between requirements, capabilities, and implementation.
Structured JSON Output
All commands support JSON output for programmatic access and integration with automation scripts.
Secure Authentication
Personal Access Tokens (PATs), environment variables, and secure config storage for enterprise environments.
Real-World Workflows
See how engineering teams use Ellygent CLI in practice
AI-Assisted Development
Feed AI tools with complete system context instead of isolated prompts
Provide requirements and constraints to AI coding assistants like GitHub Copilot or Cursor
# Sync project context
ellygent sync --project platform-api --version main
# AI tools now have access to:
# - .ellygent/requirements/*.md
# - .ellygent/capabilities/*.md
# - .ellygent/traceability.jsonCI/CD Context Injection
Automatically download and validate engineering context in your build pipeline
Ensure generated code aligns with approved requirements and architecture
# Set PAT in CI environment
export ELLYGENT_PAT=elly_pat_xxxxxxxxxxxxxxxxxxxxx
# Download context as JSON
ellygent sync \
--project platform-api \
--version main \
--format json \
--output context.json
# Validate against context in buildSelective Specification Export
Download only the specifications you need for a specific task
Focus on safety requirements for regulatory review
ellygent sync \
--project safety-system \
--version v2.1 \
--spec functional_requirements \
--spec safety_requirements \
--include-traceabilityMulti-Project Context Discovery
Explore and compare multiple projects across your organization
Discover reusable components and patterns across projects
# List all projects
ellygent projects --org acme-corp --format markdown
# Compare versions
ellygent versions --project platform-api
# View contents
ellygent contents --project platform-api --version mainEnterprise-Ready
Designed for teams, security, and scale
Cross-Platform
macOS, Linux, Windows. Native binaries and package managers.
Secure by Default
Personal Access Tokens, encrypted config, audit-ready logs.
Automation-Friendly
JSON output, scriptable, CI/CD-ready, deterministic behavior.
Proxy Compatible
Works behind corporate proxies and restrictive network policies.