/install codeline-cli
codeline-cli
Setup
If codeline-cli is not installed, install it from GitHub:
npx api2cli install Melvynx/codeline-cli
If codeline-cli is not found, install and build it:
bun --version || curl -fsSL https://bun.sh/install | bash
npx api2cli bundle codeline
npx api2cli link codeline
api2cli link adds ~/.local/bin to PATH automatically. The CLI is available in the next command.
Always use --json flag when calling commands programmatically.
Authentication
codeline-cli auth set "your-token"
codeline-cli auth test
Resources
tools
| Command | Description |
|---|---|
codeline-cli tools list --json |
List all available tools |
codeline-cli tools run --tool list_products --json |
Run tool by name |
codeline-cli tools run --tool get_user --params '{"email":"[email protected]"}' --json |
Run tool with JSON parameters |
codeline-cli tools run --tool list_orders --params '{"limit":10}' --fields id,status --json |
Run tool with custom field output |
products
| Command | Description |
|---|---|
codeline-cli products list --json |
List all products |
codeline-cli products list --fields id,name,price --json |
List with specific columns |
codeline-cli products get --id abc123 --json |
Get product by ID |
orders
| Command | Description |
|---|---|
codeline-cli orders list --json |
List all orders |
codeline-cli orders list --limit 10 --json |
List orders with max results |
codeline-cli orders list --fields id,status,total --json |
List with custom columns |
codeline-cli orders get --id abc123 --json |
Get order by ID |
users
| Command | Description |
|---|---|
codeline-cli users list --json |
List all users |
codeline-cli users list --fields id,email,name --json |
List users with columns |
codeline-cli users get --id abc123 --json |
Get user by ID |
codeline-cli users get --id "[email protected]" --json |
Get user by email address |
coupons
| Command | Description |
|---|---|
codeline-cli coupons list --json |
List all coupons |
codeline-cli coupons list --fields code,discount,type --json |
List with specific columns |
codeline-cli coupons create --code SAVE20 --discount 20 --json |
Create percentage discount (20%) |
codeline-cli coupons create --code FLAT10 --discount 10 --type fixed --json |
Create fixed amount coupon |
codeline-cli coupons create --code LAUNCH --discount 50 --max-uses 100 --json |
Create with usage limit |
codeline-cli coupons create --code SPECIAL --discount 15 --expires-at "2026-12-31" --json |
Create with expiration |
codeline-cli coupons create --code PRODUCT5 --discount 5 --product-id xyz789 --json |
Create for specific product |
Global Flags
All commands support: --json, --format \x3Ctext|json|csv|yaml>, --verbose, --no-color, --no-header
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install codeline-cli - After installation, invoke the skill by name or use
/codeline-cli - Provide required inputs per the skill's parameter spec and get structured output
What is Codeline Cli?
Manage codeline via CLI - tools, products, orders, users, coupons. Use when user mentions 'codeline', 'products', 'orders', 'coupons', 'school platform', or... It is an AI Agent Skill for Claude Code / OpenClaw, with 301 downloads so far.
How do I install Codeline Cli?
Run "/install codeline-cli" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Codeline Cli free?
Yes, Codeline Cli is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Codeline Cli support?
Codeline Cli is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Codeline Cli?
It is built and maintained by Melvyn (@melvynx); the current version is v0.1.0.