waitsec 0.5.4 → 0.5.6
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.
- package/.cursor-plugin/plugin.json +1 -1
- package/bin/cli.mjs +5 -5
- package/package.json +1 -1
- package/plugin.json +1 -1
package/bin/cli.mjs
CHANGED
|
@@ -23,22 +23,22 @@ const AVAILABLE_SKILLS = [
|
|
|
23
23
|
},
|
|
24
24
|
{
|
|
25
25
|
value: 'waitsec-ui',
|
|
26
|
-
label: 'waitsec-ui
|
|
26
|
+
label: 'waitsec-ui',
|
|
27
27
|
hint: 'Anti-slop UI copy & CSS, responsive guardrails',
|
|
28
28
|
},
|
|
29
29
|
{
|
|
30
30
|
value: 'waitsec-pagemaker',
|
|
31
|
-
label: 'waitsec-pagemaker
|
|
31
|
+
label: 'waitsec-pagemaker',
|
|
32
32
|
hint: 'Page architect: landing pages, blog/articles, contact, about me',
|
|
33
33
|
},
|
|
34
34
|
{
|
|
35
35
|
value: 'waitsec-code',
|
|
36
|
-
label: 'waitsec-code
|
|
36
|
+
label: 'waitsec-code',
|
|
37
37
|
hint: 'Clean code rules, anti-comment noise, dependency control',
|
|
38
38
|
},
|
|
39
39
|
{
|
|
40
40
|
value: 'waitsec-quality',
|
|
41
|
-
label: 'waitsec-quality
|
|
41
|
+
label: 'waitsec-quality',
|
|
42
42
|
hint: 'Security audits, test discipline, data integrity',
|
|
43
43
|
},
|
|
44
44
|
];
|
|
@@ -148,7 +148,7 @@ async function main() {
|
|
|
148
148
|
const selectedSkills = await multiselect({
|
|
149
149
|
message: 'Select the skills you want (Press Space to select, Enter to confirm):',
|
|
150
150
|
options: AVAILABLE_SKILLS,
|
|
151
|
-
initialValues:
|
|
151
|
+
initialValues: AVAILABLE_SKILLS.map((s) => s.value),
|
|
152
152
|
required: 'You must select at least one skill.',
|
|
153
153
|
});
|
|
154
154
|
if (isCancel(selectedSkills)) stop('Installation cancelled.');
|
package/package.json
CHANGED
package/plugin.json
CHANGED