ForcePilot/backend/package/yuxi/channel/extensions/terminal/plugin.json
Kris 6f7e29e2a5 feat(channel): 添加终端渠道扩展
新增终端(Terminal)渠道扩展,支持在 Yuxi 平台中通过命令行终端交互。

包含以下功能模块:
- plugin: 终端渠道插件核心,处理命令行输入输出交互
2026-05-21 11:53:39 +08:00

23 lines
751 B
JSON

{
"id": "terminal",
"name": "Terminal",
"version": "0.3.0",
"description": "Terminal (CLI) channel plugin for ForcePilot — local stdin/stdout interactive channel with command system, multiline input, typing indicator, theme support, and prompt-toolkit integration",
"author": "ForcePilot",
"enabled": true,
"order": 10,
"dependencies": [],
"python_requires": ">=3.12",
"capabilities": {
"chat_types": ["direct"],
"message_types": ["text"],
"streaming": true,
"streaming_mode": "block",
"block_streaming": true,
"block_streaming_chunk_min_chars": 800,
"block_streaming_chunk_max_chars": 1200,
"block_streaming_coalesce_idle_ms": 1000,
"native_commands": true,
"typing_indicator": true
}
}