Command Line Tool

Agenco CLI

Manage your AI agents, contexts, and prompts from the terminal.
Fast, simple, and powerful.

A lightweight CLI tool that helps you organize and access your AI workflow resources. Store agent configurations, context libraries, and reusable prompt templates in three simple JSON files. Copy any resource to your clipboard instantly or browse them with a beautiful interactive UI.

$curl -fsSL https://raw.githubusercontent.com/cedefrespo/agenco-cli/main/install.sh | bash

Or install manually:git clone https://github.com/cedefrespo/agenco-cli.git ~/agenco-cli

See it in action

Agenco CLI provides an interactive terminal interface to manage your AI workflow. Navigate through menus, view resources, and copy content to clipboard instantly.

Interactive Terminal
Try: agenco --help
Welcome to Agenco CLI Interactive Demo
Type "agenco --help" to see available commands
$

How it works

Agenco CLI stores your resources in three simple JSON files

agents.json

AI Agents

Store agent configurations with references to markdown files. Perfect for managing different AI personalities and roles.

{
"name": "marco",
"description": "Backend dev",
"files": ["~/context/marco.md"]
}
contexts.json

Contexts

Build your knowledge base by linking documentation, architecture files, and project-specific information.

{
"name": "backend",
"description": "API docs",
"files": ["~/docs/README.md"]
}
prompts.json

Prompts

Save reusable prompt templates for common tasks. Content is stored directly in the JSON file.

{
"name": "fix-bug",
"description": "Bug template",
"prompt": "I found a bug..."
}

Location: All files are stored in ~/agenco-cli/. Edit them manually or use the CLI to manage resources interactively.

Why Agenco CLI?

Interactive Mode

Beautiful terminal UI with rich colors and tables

Lightning Fast

Instant access to your agents, contexts, and prompts

Copy to Clipboard

One command to copy any resource to clipboard

Smart Search

Search across all resources with fuzzy matching

File References

Reference files from anywhere in your system

Publish to Marketplace

Share your agents, contexts, and prompts globally

Common Use Cases

Manage AI Agents

Store and access your AI agent configurations

agenco agents

List all agents

agenco agents copy marco

Copy agent to clipboard

Context Libraries

Build your personal knowledge base

agenco contexts

List all contexts

agenco contexts show backend

View context details

Share to Marketplace

Publish your resources to the global marketplace

agenco publish agent marco

Publish agent

agenco publish prompt fix-bug

Publish prompt

Documentation

Agent Commands

agenco agents

List all agents

agenco agents show <name>

Show agent details

agenco agents copy <name>

Copy agent content to clipboard

agenco agents add <name> <files...>

Add new agent

agenco agents remove <name>

Remove agent

Ready to get started?

Install Agenco CLI now and manage your AI workflow from the terminal.