npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@qirvo/echo-cli

v1.0.6

Published

Echo CLI - Command-line interface for task management, Git operations, and AI assistance

Downloads

4

Readme

Echo CLI (NPM)

A Node.js command-line interface for task management, Git operations, and AI assistance that integrates with the Qirvo Dashboard.

✨ What is Qirvo CLI?

Qirvo CLI (also known as echo-cli) gives you seamless control over your tasks, tools, and automation workflows — all from your terminal. It's the command-line companion to the Qirvo Command Dashboard, enabling:

  • ✅ AI-enhanced task execution
  • ⚙️ System command chaining with context
  • 🧠 Local memory and task queueing
  • 🔁 n8n, GitHub, and shell integration
  • 🧑‍💻 Developer tools, Git actions, and project control

Think of it as a terminal-native productivity engine designed for both everyday users and software teams.

Installation

Via NPM (Recommended)

npm install -g @qirvo/echo-cli

From Source

git clone https://github.com/ultracoolbru/qirvo-echo-cli.git
cd qirvo-echo-cli
npm install
npm run build
npm link
npm install -g

Configuration

1. Setup and Authentication

The CLI connects to the Qirvo Dashboard using secure backend authentication. No Firebase configuration required!

Simply run the setup command:

e config setup

This will prompt you for:

🔐 How it works: The CLI securely authenticates with your Qirvo backend and stores an encrypted token for subsequent requests.

This will interactively prompt you for:

Getting Your Configuration Values

  1. API URL: The URL where your Qirvo Dashboard is hosted (https://app.qirvo.ai || http://localhost:3000)
  2. User ID: Found in your Qirvo ECHO CLI - Show Setup Guide

Commands

Task Management

# List all tasks
echo task list
echo task ls                    # Alias

# Add a new task
echo task add "Complete project documentation"
echo task add "Review code" -d "Review the new feature implementation"

# Complete a task
echo task complete <task-id>
echo task done <task-id>        # Alias

# Delete a task
echo task delete <task-id>
echo task rm <task-id>          # Alias

Git Operations

# Show git status
echo git status

# Commit changes
echo git commit "Add new feature"

# List branches
echo git branches
echo git branch                 # Alias

AI Assistant

# Ask the AI agent a question
echo agent ask "How do I optimize this SQL query?"

Memory Management

# List saved memories
echo memory list
echo memory ls                  # Alias

# Save a memory
echo memory save "Important meeting notes" -c "Discussion about project timeline"

# Search memories
echo memory search "project timeline"

# Get a specific memory
echo memory get <memory-id>

# Delete a memory
echo memory delete <memory-id>
echo memory rm <memory-id>      # Alias

Session Logs

# List recent command sessions
echo logs list
echo logs ls                    # Alias

# Show usage statistics
echo logs stats

# Show today's activity
echo logs today

Configuration

# Show current configuration
echo config show

# Test API connection
echo config test

# Setup configuration
echo config setup

# Clear all configuration
echo config clear

General

# Show version information
echo version

# Show help
echo --help
echo <command> --help

Examples

Daily Workflow

# Check your tasks for the day
echo task list

# Add a new task
echo task add "Review pull requests"

# Check git status
echo git status

# Commit your changes
echo git commit "Fix bug in user authentication"

# Ask AI for help
echo agent ask "Best practices for error handling in TypeScript"

# Save important information
echo memory save "Code review checklist" -c "Check for proper error handling, type safety, and test coverage"

Configuration Management

# Check if CLI is configured
echo config show

# Setup for local development
echo config setup --api-url "http://localhost:3000"

# Setup for production
echo config setup --api-url "https://dashboard.qirvo.com"

# Test connection
echo config test

# Clear configuration if needed
echo config clear

Features

🎨 Rich CLI Experience

  • Colorful Output: Uses chalk for colorful, readable output
  • Loading Spinners: Visual feedback with ora spinners during operations
  • Interactive Setup: User-friendly configuration with inquirer prompts
  • Command Aliases: Short aliases for frequently used commands

🔧 Configuration Management

  • Persistent Config: Stores configuration in user's home directory
  • Interactive Setup: Guided configuration process
  • Connection Testing: Verify API connectivity
  • Easy Reconfiguration: Clear and reset configuration as needed

🚀 Performance

  • Fast Startup: Optimized for quick command execution
  • Error Handling: Comprehensive error messages and recovery
  • Timeout Management: Configurable request timeouts
  • Retry Logic: Built-in retry for network operations

Integration with Qirvo Dashboard

Echo CLI integrates seamlessly with your Qirvo Dashboard by:

  1. Syncing Tasks: Tasks created/modified via CLI appear in your web dashboard
  2. Git Integration: Git operations are reflected in your dashboard's Git panel
  3. AI Assistance: Uses the same AI agent as your web dashboard
  4. Memory System: Shared memory storage accessible from both CLI and web
  5. Session Logs: All CLI activity is logged and visible in your dashboard

Development

Building from Source

npm install
npm run build

Running in Development

npm run dev -- <command> <args>

Linting

npm run lint
npm run lint:fix

Testing

npm test

Publishing

npm run build
npm publish

Troubleshooting

Common Issues

"CLI not configured" error:

echo config setup

Connection timeout:

  • Check your API URL is correct
  • Ensure your dashboard is running
  • Verify your auth token is valid

Permission denied:

  • Check your auth token hasn't expired
  • Verify your user ID is correct

Command not found after installation:

npm install -g @qirvo/echo-cli
# Or if installed locally:
npm link

Getting Help

# General help
echo --help

# Command-specific help
echo task --help
echo git --help
echo agent --help

Configuration File Location

The configuration is stored at:

  • Windows: %USERPROFILE%\.echo-cli\config.json
  • macOS/Linux: ~/.echo-cli/config.json

Requirements

  • Node.js: Version 16.0.0 or higher
  • NPM: Version 7.0.0 or higher (comes with Node.js)

License

MIT License - see LICENSE file for details.

Support

For support, please visit the Qirvo Dashboard or contact support through the web interface.

Comparison with .NET Version

| Feature | NPM Version | |---------|-------------| | Installation | npm install -g | | Runtime | Node.js | | Config Location | ~/.echo-cli/ | | Interactive Setup | ✅ Rich prompts | | Colored Output | ✅ Chalk | | Loading Spinners | ✅ Ora | | Command Aliases | ✅ Multiple aliases | | Remote Commands | ✅ Supports remote commands |