Agent Skills
› diegosouzapw/OmniRoute
› cli-chat
cli-chat
GitHub提供CLI工具omniroute,支持通过chat、repl和stream子命令与AI模型交互。具备流式响应、多Provider兼容及系统提示词配置能力,适用于命令行下的即时问答与交互式开发场景。
Trigger Scenarios
用户需要在终端中进行AI对话或获取代码补全
用户希望以交互模式(REPL)连续调用大模型
用户需要通过脚本或管道处理AI生成的流式内容
Install
npx skills add diegosouzapw/OmniRoute --skill cli-chat -g -y
SKILL.md
Frontmatter
{
"name": "cli-chat",
"description": "Send chat completions, stream responses, and start an interactive REPL session from the CLI. Supports all OmniRoute providers, combo routing, and system prompt configuration."
}
Overview
Send chat completions, stream responses, and start an interactive REPL session from the CLI. Supports all OmniRoute providers, combo routing, and system prompt configuration.
Quick install
npm install -g omniroute # or: npx omniroute
omniroute --version
Subcommands
chat [prompt]
Flags:
--file <path>--stdin-s, --system <prompt>-m, --model <id>--max-tokens <n>--temperature <t>--top-p <p>--reasoning-effort <level>--thinking-budget <tokens>--combo <name>--responses-api--stream--no-history
Example:
omniroute chat [prompt]
repl
Flags:
-m, --model <id>--combo <name>-s, --system <prompt>--resume <session>
Example:
omniroute repl
stream [prompt]
Flags:
--file <path>--stdin-m, --model <id>-s, --system <prompt>--combo <name>--max-tokens <n>--responses-api--raw--debug--save <path>
Example:
omniroute stream [prompt]
Version History
- 1cafd32 Current 2026-07-25 11:46


