(target)
| 95 | } |
| 96 | |
| 97 | function buildSetupQuestions(target) { |
| 98 | const label = target.kind === "plugin" ? "plugin" : "skill"; |
| 99 | return [ |
| 100 | `What are the 3 highest-value real tasks this ${label} should help complete inside a workspace?`, |
| 101 | `Which scenario is the must-pass end-to-end task for this ${label}?`, |
| 102 | `What output should exist on disk if the scenario succeeds?`, |
| 103 | `Which verification command would tell you the result is actually usable?`, |
| 104 | `What boundary case should this ${label} narrow, refuse, or hand off instead of overreaching on?`, |
| 105 | ]; |
| 106 | } |
| 107 | |
| 108 | function buildSkillScenarios(target) { |
| 109 | return [ |
no outgoing calls
no test coverage detected