forked from OpenCoven/coven-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcoven-code.json
More file actions
33 lines (33 loc) · 1.55 KB
/
Copy pathcoven-code.json
File metadata and controls
33 lines (33 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"adapters": [
{
"id": "coven-code",
"label": "Coven Code",
"executable": "coven-code",
"interactive_prompt_prefix_args": [],
"non_interactive_prompt_prefix_args": ["--print"],
"install_hint": "npm install -g @opencoven/coven (or download a release archive from https://github.com/OpenCoven/coven-code/releases), then ensure `coven-code` is on PATH.",
"system_prompt_flag": "--append-system-prompt",
"model_flag": "--model",
"capabilities": {
"stream": true,
"preassigned_session_id": true,
"think": true,
"speed": true
},
"sandbox": {
"flag": "--permission-mode",
"full": "bypass-permissions",
"read_only": "plan"
},
"stream_args": {
"prefix_args": ["--print", "--input-format", "stream-json", "--output-format", "stream-json"],
"session_id_flag": "--session-id",
"resume_flag": "--resume"
},
"version": "1.0.0",
"homepage": "https://github.com/OpenCoven/coven-code",
"description": "Coven Code adapter. One-shot via `--print <prompt>`, JSONL streaming via `--print --input-format stream-json --output-format stream-json` (long-lived: one turn per stdin user frame, exits on stdin EOF; the positional prompt is ignored in this mode, matching Claude Code). Session pre-assignment/resume via `--session-id`/`--resume`. Think maps to `--thinking <TOKENS>`, speed to `--effort <LEVEL>`. Interactive launches must not append a prompt: a positional prompt switches coven-code into print mode."
}
]
}