clawmoney 0.17.12 → 0.17.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -29,13 +29,8 @@ export async function providerSetupWizard() {
|
|
|
29
29
|
console.log(chalk.red("\n No agent config found. Run `clawmoney setup` first to register.\n"));
|
|
30
30
|
process.exit(1);
|
|
31
31
|
}
|
|
32
|
-
// Render the full role catalog as a note before the multiselect, so the
|
|
33
|
-
// user has a stable reference even after clack collapses the prompt to
|
|
34
|
-
// its selected-items summary. Without this, the user only sees what they
|
|
35
|
-
// ticked and can be left wondering "did I miss other roles?".
|
|
36
|
-
note(ROLES.map((r) => `${chalk.bold(r.label.padEnd(16, " "))}${chalk.dim(r.hint)}`).join("\n"), "Three provider roles — pick any combination");
|
|
37
32
|
const picked = await multiselect({
|
|
38
|
-
message: "
|
|
33
|
+
message: "Provider roles — toggle with SPACE, confirm with ENTER (skip all to register no role):",
|
|
39
34
|
options: ROLES.map((r) => ({
|
|
40
35
|
value: r.value,
|
|
41
36
|
label: r.label,
|