You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rewrite the ask_operator MC interview utility: drop fake batch/option
ceilings and tool-schema restatement, keep findings-only output, and pin
the contract in catalog tests.
Closes CL-7036
Copy file name to clipboardExpand all lines: plugins/corbits-skills/skills/interview/SKILL.md
+13-14Lines changed: 13 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,9 +6,9 @@ description: Conduct an iterative multiple-choice interview using ask_operator.
6
6
7
7
# Interview
8
8
9
-
Use this skill to gather user input on a topic by asking multiple-choice questions in batches via `ask_operator`. Return the questions and answers in the conversation. The caller decides what to do with them.
9
+
Gather structured user input on a topic via multiple-choice `ask_operator` questions. Emit the Q&A inline; the caller decides what to do with it.
10
10
11
-
This is a utility, not a planner. It does not decide what to build, write any files, or invoke other skills.
11
+
This is a utility, not a planner. It does not decide what to build, write any files, spawn agents, or invoke other skills.
12
12
13
13
## Argument
14
14
@@ -23,15 +23,17 @@ If no topic is given, ask for one with `ask_operator` before proceeding.
23
23
24
24
### Identify dimensions to probe
25
25
26
-
Enumerate the open questions worth asking, drawn from the topic and context. Skip dimensions the context already settles. Add domain-specific ones where relevant. There is no fixed dimension list — the topic determines it.
26
+
Enumerate the open questions worth asking from the topic and context. Skip dimensions the context already settles. Add domain-specific ones where relevant. There is no fixed dimension list — the topic determines it.
27
27
28
28
Probe objective and priorities before details. They shape every later question, so anchoring them early prevents reshuffling halfway through.
29
29
30
-
### Ask in batches
30
+
### Ask with ask_operator
31
31
32
-
Each question is one `ask_operator` call: `question` (string) plus `options` (array of strings). Batch a round by firing 2–4 independent `ask_operator` calls together (parallel tool calls). Refer to the tool's own documentation for parameter limits.
32
+
Each question is one `ask_operator` call: `question` (string) plus `options` (array of strings). Fire independent questions together as parallel tool calls in the same turn.
33
33
34
-
`ask_operator` is single-select per call. The operator can also type a custom answer. There is no multi-select flag — if a dimension genuinely permits several answers, encode the realistic combinations as options, or follow up with a second question once the first answer lands.
34
+
`ask_operator` is single-select per call. The operator can also type a custom answer. There is no multi-select flag — if a dimension genuinely permits several answers, encode the realistic combinations as options, or follow up once the first answer lands.
35
+
36
+
**No false caps.**`ask_operator` has no skill-invented ceiling on option count, parallel questions per round, or total rounds. Batch every independent dimension you can author now. Drop to one question only when the next question's text or options cannot be written without this answer. Stop when marginal value is low (see below) — never because a made-up quota was hit. If the caller passed an explicit cap, honour it.
35
37
36
38
**Quality bar for options:**
37
39
@@ -42,11 +44,7 @@ Each question is one `ask_operator` call: `question` (string) plus `options` (ar
42
44
- Combination options only when the dimension genuinely permits more than one answer
43
45
- If you have a recommendation, put it first and label it
44
46
45
-
**Batching:**
46
-
47
-
- Default 2–4 `ask_operator` calls per round, bundling dimensions that do not depend on each other
48
-
- Drop to 1 question only when the next question's text or options cannot be authored without this answer
49
-
- Referencing a prior answer inside a later question's text is fine
47
+
Referencing a prior answer inside a later question's text is fine.
50
48
51
49
### Decide when to stop
52
50
@@ -57,7 +55,7 @@ Stop when:
57
55
- The user has signalled fatigue (declines to choose, short non-substantive custom answers, asks to wrap up)
58
56
- The topic has shifted into territory outside this interview's scope
59
57
60
-
There is no fixed round cap. Stop when the marginal value of another round is low. If the caller passed an explicit cap, honour it.
58
+
There is no fixed round cap. Stop when the marginal value of another round is low.
61
59
62
60
### Handle trouble
63
61
@@ -92,7 +90,7 @@ After emitting the findings, stop. Do not load other skills, invoke other agents
92
90
93
91
**Invocation:**`use_skill(name="interview")` with the topic in the conversation, or `/interview notification system; backend is Node/Postgres, internal users only, must integrate with existing auth`
94
92
95
-
**Round 1** (3 parallel `ask_operator` calls, bundled because none depends on the others):
0 commit comments