This repository distributes the Nia CLI binaries and user documentation. It does not contain the Nia source code.
Nia is an Agentic SDLC (Software Development Life Cycle) CLI from Progress. It orchestrates AI coding agents through structured workflows that help teams plan work, implement changes, review results, and maintain an auditable record of AI-assisted development. Detailed information and key features can be founder in the Introduction articles in the documentation.
The fastest, lowest-friction way to experience Nia is the Healthcare demo app — a realistic Angular codebase wired up as a Nia playground.
- Zero local setup — GitHub Codespaces: open
telerik/healthcare-app-angularon GitHub and choose Code → Codespaces → Create codespace. The included dev container installs Node.js, the GitHub CLI, the AI coding agents, and the Nia CLI automatically — then you just authenticate an agent and runnia. - Local VS Code Dev Container: clone the demo repo and run Dev Containers: Reopen in Container. Same automated setup, running on your machine.
- Manual local install: follow the demo app's README to install Nia step by step alongside the app.
Nia authenticates through the AI coding agent you configure (GitHub Copilot CLI, Claude Code, or OpenCode) — there is no separate Nia API key.
Use the GitHub CLI to download and run the installer from this repository's latest release. Authenticate first with gh auth login.
# Linux / macOS
gh release download --repo telerik/project-nia --pattern 'install.sh'
sh install.sh# Windows (PowerShell 6+)
gh release download --repo telerik/project-nia --pattern 'install.ps1'
.\install.ps1Open a new terminal so the updated PATH takes effect, then verify:
nia --versionNext, configure your email:
nia config user --email "john@company.com"Next, from the root of your project:
nia config init --issues github_issues --code github --agent github_copilot --models stable
nia --helpFor the full walkthrough — installing an agent, initializing Nia, and running your first workflow — follow the Quick Start.
user-docs/— User-facing documentation for the Nia CLI, built with mdBook. Covers installation, configuration, workflows, CLI reference, and troubleshooting.book.toml— mdBook configuration for the Nia CLI User Guide.- GitHub Releases — the published Nia CLI binaries, installers (
install.sh/install.ps1), and checksums.
The published documentation is available at https://telerik.github.io/project-nia/. Start with the Quick Start.
You can also browse the documentation source under user-docs/src/, starting with the Quick Start
The Nia source code is maintained in a separate private repository and is not distributed here.