Skip to main content
EllygentAI-assisted Systems Engineering
Login
Start free

Bring Approved Context into Delivery

Bring approved requirements, system context, and traceability into local development, automation, and AI-assisted workflows from the command line.
Install CLIWatch DemoView Quickstart
Start with one command
ellygent context pull --project <project-id> --version <version>
Terminal
#Authenticate with a Personal Access Token
$ellygent login --token <your-personal-access-token>
✓ Logged in with Personal Access Token
$ellygent whoami
Authenticated: yes
#Discover available projects
$ellygent context projects --org acme-corp
┌─────────────────────┬───────────────────┬──────────────┐
│ Project │ Latest Version │ Specs │
├─────────────────────┼───────────────────┼──────────────┤
│ safety-system │ v2.1 │ 12 │
│ platform-api │ main │ 8 │
└─────────────────────┴───────────────────┴──────────────┘
#Download AI-ready context
$ellygent context pull --project safety-system --version v2.1
⬇ Downloading context package...
✓ Extracted to ./.ellygent/
• 247 requirements
• 89 capabilities
• Full traceability graph

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 | sh
Manual 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.

Watch on YouTube

Get Started in 5 Minutes

From installation to your first context download
1
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-cli
2
Verify Installation

Check that the CLI is installed and accessible

ellygent --help
ellygent --version
3
Authenticate

Validate your PAT and confirm the active CLI session

ellygent login --token <your-personal-access-token>
ellygent whoami
4
Sync Your First Project

Download engineering context for your project

ellygent context pull --project <project-id> --version <version>

Need more guidance?

View Complete Getting Started Guide

Built 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

Use Case

Provide requirements and constraints to AI coding assistants like GitHub Copilot or Cursor

AI
Context
Development
# 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.json
CI/CD Context Injection

Automatically download and validate engineering context in your build pipeline

Use Case

Ensure generated code aligns with approved requirements and architecture

CI/CD
Automation
Validation
# 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 build
Selective Specification Export

Download only the specifications you need for a specific task

Use Case

Focus on safety requirements for regulatory review

Export
Requirements
Filtering
ellygent context pull \
  --project safety-system \
  --version v2.1 \
  --spec functional_requirements \
  --spec safety_requirements \
  --include-traceability
Multi-Project Context Discovery

Explore and compare multiple projects across your organization

Use Case

Discover reusable components and patterns across projects

Discovery
Exploration
Reuse
# 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 main

Enterprise-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.

Explore the Documentation

Comprehensive guides, references, and examples
Getting Started

Installation, authentication, and your first commands

Learn more

Ready to Get Started?

Install the Ellygent CLI and start downloading engineering context in minutes
Install NowRead the Docs