ForcePilot/backend/package/yuxi/channel/extensions/terminal/plugin.json

23 lines
751 B
JSON
Raw Normal View History

{
"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
}
}