Bring Approved Context into Delivery
Bring approved requirements, system context, and traceability into local development, automation, and AI-assisted workflows from the command line.
Start with one command
ellygent context pull --project <project-id> --version <version>Install & Configure
Use the official Windows installer or the GitHub npm workflow for development and contributor setups.
Installer script
Checks for Node.js, npm, and Git, then clones the CLI from GitHub, builds it locally, and installs it.
curl -fsSL https://ellygent.com/cli/install.sh | shManual GitHub checkout
Clone the CLI from GitHub, build it locally, and install it globally.
git clone --depth 1 https://github.com/EEQuality/ellygent-cli.git
cd ellygent-cli
npm install
npm run build
npm install -g .CLI Demo: Authenticate and Download Project Context
Watch a live walkthrough showing how to authenticate with the Ellygent CLI and download structured context from an existing project into a local engineering workflow.
Get Started in 5 Minutes
From installation to your first context download
Install the CLI
Use the official PowerShell installer on Windows, or install directly from GitHub for contributor and developer workflows
# Official Windows installer
irm https://ellygent.com/cli/install.ps1 | iex
# Development installation from GitHub
npm install -g https://github.com/EEQuality/ellygent-cliVerify Installation
Check that the CLI is installed and accessible
ellygent --help
ellygent --versionAuthenticate
Validate your PAT and confirm the active CLI session
ellygent login --token <your-personal-access-token>
ellygent whoamiSync Your First Project
Download engineering context for your project
ellygent context pull --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-assisted development workflows.
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-assisted development workflows 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 context pull --project platform-api --version main
# AI-assisted workflows 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_TOKEN=elly_pat_xxxxxxxxxxxxxxxxxxxxx
# Download context as JSON
ellygent context pull \
--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 context pull \
--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 context projects --org acme-corp --format markdown
# Compare versions
ellygent context versions --project platform-api
# View contents
ellygent context inspect --project platform-api --version mainEnterprise-Ready
Designed for teams, security, and scale
Cross-Platform
Windows PowerShell bootstrapper plus direct npm installation from GitHub.
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.