/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
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install codeline-cli - 安装完成后,直接呼叫该 Skill 的名称或使用
/codeline-cli触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Codeline Cli 是什么?
Manage codeline via CLI - tools, products, orders, users, coupons. Use when user mentions 'codeline', 'products', 'orders', 'coupons', 'school platform', or... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 301 次。
如何安装 Codeline Cli?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install codeline-cli」即可一键安装,无需额外配置。
Codeline Cli 是免费的吗?
是的,Codeline Cli 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Codeline Cli 支持哪些平台?
Codeline Cli 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Codeline Cli?
由 Melvyn(@melvynx)开发并维护,当前版本 v0.1.0。