Getting Started
Install the Ellygent CLI and start downloading AI-ready engineering context in under 5 minutes.
Prerequisites
Node.js 18 or higher
Check your version with node --version
An active Ellygent account
Sign up at ellygent.com
Access to at least one organization/project
Ask your organization admin to invite you if needed
Interactive Quickstart
Follow this complete workflow from installation to your first context download:
Step-by-Step Guide
1. Install the CLI
Install globally using npm:
npm install -g @ellygent/cliFor other installation methods (installer scripts, direct downloads, standalone binaries), see the Installation Guide.
2. Verify Installation
Confirm the CLI is installed and accessible:
ellygent --version3. Authenticate
Log in to your Ellygent account:
ellygent auth login4. Discover Your Projects
List projects in your organization:
ellygent context projects --org <your-org-name> --format markdownReplace <your-org-name> with your organization slug.
5. Download Engineering Context
Sync a project to your local workspace:
ellygent sync --project <project-id> --version <version>This creates a .ellygent/ directory with requirements, capabilities, and traceability data.
What You Get
After running ellygent sync, your workspace contains:
.ellygent/ ├── requirements/ │ ├── functional_requirements.md │ ├── safety_requirements.md │ └── performance_requirements.md ├── capabilities/ │ ├── system_capabilities.md │ └── feature_capabilities.md ├── metadata.json └── traceability.json
All files are AI-ready markdown and JSON formats, optimized for code generation tools and LLMs.