Command-line interface for the Codicent API
Project description
Codicent CLI
Codicent CLI is a command-line interface for interacting with the Codicent API. It provides both one-shot command execution and interactive chat sessions with comprehensive error handling and user-friendly features.
Features
- One-shot mode: Execute single commands and get responses
- Interactive mode: Continuous chat sessions with conversation tracking
- Message types: Support for regular chat and @-prefixed info messages
- Input flexibility: Command arguments, stdin pipes, or interactive prompts
- Rich output: Markdown-formatted responses with beautiful terminal UI
- Error handling: Comprehensive error messages and graceful failure handling
- Logging: Configurable logging levels for debugging
Installation
Prerequisites
- Python 3.6 or higher
pip(Python package installer)
Quick Installation
# Install from PyPI
pip install codicent-py codicent-cli
Development Installation
Steps
-
Clone the repository:
git clone https://github.com/izaxon/codicent-cli.git cd codicent-cli
-
Install in development mode:
pip install -e .
Direct Installation from GitHub
You can also install directly from GitHub:
# Install the latest version
pip install git+https://github.com/izaxon/codicent-cli.git
# Install a specific version
pip install git+https://github.com/izaxon/codicent-cli.git@v0.4.8
Usage
Basic Setup
-
Set the
CODICENT_TOKENenvironment variable with your Codicent API token:export CODICENT_TOKEN="YOUR_API_TOKEN"
Or use the built-in device-flow authentication:
codicent auth # stores token globally in ~/.codicent_token codicent auth --local # stores token in .codicent_token in the current directory
Per-folder Projects
You can have a different Codicent project per directory by storing a local token:
cd ~/work/projectA
codicent auth --local # authenticates and saves token to ~/work/projectA/.codicent_token
cd ~/work/projectB
codicent auth --local # authenticates and saves token to ~/work/projectB/.codicent_token
The CLI always checks the current directory first, then falls back to the global ~/.codicent_token, and finally to the CODICENT_TOKEN environment variable.
Tip: Add
.codicent_tokento your.gitignoreto avoid accidentally committing tokens.
Command Options
codicent [OPTIONS] [QUESTION]
OPTIONS:
-t, --interactive Start interactive chat mode
-h, --help Show help message
-v, --version Show version information
--verbose Enable verbose logging
--quiet Suppress non-essential output
Examples
One-shot questions:
codicent "What can you help me with?"
codicent "Explain Python decorators"
Interactive mode:
codicent -t
# or
codicent --interactive
Piped input:
echo "What is machine learning?" | codicent
codicent < questions.txt
cat code.py | codicent "Review this code"
Info messages (@ prefix):
codicent "@mention This is an info message"
With logging:
codicent --verbose "Debug this issue"
codicent --quiet "Silent operation"
Interactive Mode
In interactive mode, you can have ongoing conversations with enhanced visual clarity:
$ codicent -t
๐ค Codicent CLI Interactive Mode
Type your questions or use Ctrl+C to exit.
Prefix with @ for info messages.
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
ยค What is Python?
Python is a high-level, interpreted programming language known for its
simplicity and readability. It was created by Guido van Rossum and first
released in 1991.
Key features:
โข Easy to learn and use
โข Extensive standard library
โข Cross-platform compatibility
โข Strong community support
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
ยค Can you give me an example?
Here's a simple Python example:
# Hello World in Python
print("Hello, World!")
# Working with variables
name = "Alice"
age = 25
print(f"My name is {name} and I am {age} years old.")
Python's syntax is clean and intuitive!
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
ยค @mention Save this conversation
โ
Message posted successfully.
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
ยค ^C
๐ Goodbye!
Visual Features:
- Colored messages: User input appears in cyan, bot responses in green
- Clean prompting: Original
ยคprompt character maintained - Visual separators: Clear lines between conversations
- Rich formatting: Markdown responses with syntax highlighting
- Status indicators: Animated thinking indicators and success messages
- Emojis: Friendly visual cues throughout the interface
Error Handling
The CLI provides helpful error messages for common issues:
- Missing token: Clear instructions on setting up
CODICENT_TOKEN - Network errors: Graceful handling of connection issues
- API errors: Detailed error messages from the Codicent API
- Input validation: Prevents empty or overly long inputs
- Keyboard interrupts: Clean exit handling
Project Init
Use codicent init to instantly set up a new project from a template. Each template posts a ready-to-use set of AI instructions, configuration, automation rules, and sample data.
codicent init --list # list templates
codicent init # use default template
codicent init --template koi-studio # CRM pipeline
codicent init --template document-processing # document intake
codicent init --template koi-studio --dry-run # preview without posting
codicent init --force # re-init even if already set up
Available templates
| Template | Description |
|---|---|
default |
General-purpose: task workflow, auto-summarize notes via #transform |
koi-studio |
CRM: automatic lead extraction from raw text, follow-up email drafting |
document-processing |
Document intake: extract text, structure key fields with AI, review workflow |
How it works
Templates are JSON files in templates/. Each defines:
variablesโ prompted at init time (e.g. company name). Values with defaults are applied silently; values without defaults require manual entry.messagesโ posted in order. Each has an optionallabelshown in progress output.
Key message types posted by templates:
#instructionsโ sets the AI assistant's persona and focus#appconfig #dataโ configures AI model, temperature, and token limit#process #dataโ defines pipeline stages (shown as kanban columns in the UI)#transform #dataโ automation rule: when a message with tag X arrives, run AI and produce a message with tag Y- sample
#datamessages โ so lists aren't empty on first login
--dry-run mode
Prints every message that would be posted, with its label and a content preview, without any API calls or auth required. Useful for reviewing a template before committing.
Wrap โ AI CLI Remote Chat Bridge
Use codicent wrap to bridge a local AI CLI tool (claude, codex, opencode, etc.) to your codicent project chat. Remote users and the Codicent AI can interact with the locally running tool in real time through the existing codicent web UI.
codicent wrap claude # wrap Claude Code
codicent wrap opencode # wrap OpenCode
codicent wrap --label "Refactor sprint" codex # named session
codicent wrap --poll-interval 5 claude # slower polling
codicent wrap --binary /opt/ai/claude claude # explicit binary path
How it works
- Starts the specified tool as a local subprocess with full stdin/stdout control.
- Opens a session tagged
#wrap #wrap_<id>in your codicent project. - Output from the tool is captured and posted to codicent tagged
#wrap #wrap_<id> #output. - Input is received by polling for messages tagged
#wrap #wrap_<id> #inputโ any message posted remotely with those tags is forwarded to the tool's stdin.
The session ID is printed on startup. To send text to the running tool from the codicent web UI, post a message with #wrap_<id> #input in the content.
Startup output
๐ Wrap session startingโฆ
Session ID: wrap_a3f7c1b2
Project: myproject
Tool: claude (/usr/local/bin/claude)
Remote tag: #wrap_a3f7c1b2
Post messages tagged #wrap_a3f7c1b2 #input to send text to the tool.
Press Ctrl+C to stop the session.
Configuration (~/.codicent/wrap-config.yaml)
poll_interval: 2 # seconds between input polls
output_batch_ms: 500 # ms to batch output before posting
tools:
claude:
binary: claude # binary name or full path
codex:
binary: codex
opencode:
binary: opencode
auto_responses:
- pattern: "Do you want to continue"
reply: "y"
- pattern: "\\(y/n\\)"
reply: "y"
Auto-response rules are matched against subprocess output using regex. When matched, the configured reply is written to stdin automatically (and posted to codicent for visibility).
If no config file exists, defaults are used: tools are resolved by name on $PATH, poll interval is 2 seconds.
Development
Running Tests
python -m pytest test_app.py -v
Project Structure
app.py- Main application logic (single-file architecture)wrap.py- Wrap command: AI CLI remote chat bridgetest_app.py- Comprehensive test suitesetup.py- Package configurationrequirements.txt- Dependencies (now uses PyPI packages)
Dependencies
- codicent-py: Core API client for Codicent services (now available on PyPI)
- rich: Terminal formatting, markdown rendering, and animations
- pyyaml: YAML config file parsing for the wrap command
Troubleshooting
Common Issues
-
"CODICENT_TOKEN environment variable is not set"
- Set the token:
export CODICENT_TOKEN="your_token" - Verify it's set:
echo $CODICENT_TOKEN
- Set the token:
-
"Network error: Unable to connect to Codicent API"
- Check your internet connection
- Verify the Codicent API is accessible
- Try again with
--verbosefor more details
-
"Failed to initialize Codicent API client"
- Verify your token is valid
- Check if the codicent-py package is properly installed
Getting Help
- Use
codicent --helpfor usage information - Use
codicent --verbosefor detailed logging - Check the Codicent documentation for API details
License
This project is licensed under the MIT License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file codicent_cli-0.8.4.tar.gz.
File metadata
- Download URL: codicent_cli-0.8.4.tar.gz
- Upload date:
- Size: 41.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
89898ba9f5583e7e23fd659f6bb5a954b02ba39cc50cf3b97f890883736d79fe
|
|
| MD5 |
4ef016038631c0e8a31aec7486dc0c73
|
|
| BLAKE2b-256 |
f8c46a413f8b31110629a95a66ce60798f021bb76c257001a2dadf07176f0784
|
File details
Details for the file codicent_cli-0.8.4-py3-none-any.whl.
File metadata
- Download URL: codicent_cli-0.8.4-py3-none-any.whl
- Upload date:
- Size: 40.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
87dadc12347e640c989f3c9e6f2affb0088e31aa7d5321e137e2908bccacfb6a
|
|
| MD5 |
39cb1a458a8b93761935aee8d9e8e595
|
|
| BLAKE2b-256 |
ca434a02942023e2d67eb48352c99f59e89593e5226a2613f1257033b2d4cc89
|