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.
@@ -2,7 +2,7 @@
2
2
  "name": "waitsec",
3
3
  "displayName": "waitsec",
4
4
  "description": "Practical guardrails for AI coding agents. Hold on, think first, code less.",
5
- "version": "0.5.4",
5
+ "version": "0.5.6",
6
6
  "author": {
7
7
  "name": "fastroware"
8
8
  },
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 (preview)',
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 (preview)',
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 (preview)',
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 (preview)',
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: ['waitsec'],
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waitsec",
3
- "version": "0.5.4",
3
+ "version": "0.5.6",
4
4
  "description": "Practical guardrails for AI coding agents. Hold on, think first, code less.",
5
5
  "main": "rules/waitsec.md",
6
6
  "bin": {
package/plugin.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "waitsec",
3
3
  "description": "Practical guardrails for AI coding agents. Hold on, think first, code less.",
4
- "version": "0.5.4"
4
+ "version": "0.5.6"
5
5
  }