@nano-step/skill-manager 5.0.1 → 5.2.0

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.
Files changed (67) hide show
  1. package/dist/utils.d.ts +1 -1
  2. package/dist/utils.js +1 -1
  3. package/package.json +1 -1
  4. package/skills/blog-workflow/SKILL.md +522 -0
  5. package/skills/blog-workflow/skill.json +16 -0
  6. package/skills/comprehensive-feature-builder/SKILL.md +558 -0
  7. package/skills/comprehensive-feature-builder/skill.json +9 -0
  8. package/skills/idea-workflow/SKILL.md +229 -0
  9. package/skills/idea-workflow/skill.json +14 -0
  10. package/skills/reddit-workflow/SKILL.md +187 -0
  11. package/skills/reddit-workflow/skill.json +14 -0
  12. package/skills/rri-t-testing/SKILL.md +76 -0
  13. package/skills/rri-t-testing/assets/rri-t-coverage-dashboard.md +101 -0
  14. package/skills/rri-t-testing/assets/rri-t-persona-interview.md +226 -0
  15. package/skills/rri-t-testing/assets/rri-t-stress-matrix.md +100 -0
  16. package/skills/rri-t-testing/assets/rri-t-test-case.md +155 -0
  17. package/skills/rri-t-testing/skill.json +9 -0
  18. package/skills/security-workflow/SKILL.md +258 -0
  19. package/skills/security-workflow/skill.json +15 -0
  20. package/skills/skill-creator/LICENSE.txt +202 -0
  21. package/skills/skill-creator/SKILL.md +309 -0
  22. package/skills/skill-creator/references/metadata-quality-criteria.md +76 -0
  23. package/skills/skill-creator/references/plugin-marketplace-hosting.md +101 -0
  24. package/skills/skill-creator/references/plugin-marketplace-overview.md +55 -0
  25. package/skills/skill-creator/references/plugin-marketplace-schema.md +88 -0
  26. package/skills/skill-creator/references/plugin-marketplace-sources.md +103 -0
  27. package/skills/skill-creator/references/plugin-marketplace-troubleshooting.md +80 -0
  28. package/skills/skill-creator/references/script-quality-criteria.md +106 -0
  29. package/skills/skill-creator/references/structure-organization-criteria.md +114 -0
  30. package/skills/skill-creator/references/token-efficiency-criteria.md +74 -0
  31. package/skills/skill-creator/references/validation-checklist.md +83 -0
  32. package/skills/skill-creator/scripts/encoding_utils.py +36 -0
  33. package/skills/skill-creator/scripts/init_skill.py +308 -0
  34. package/skills/skill-creator/scripts/package_skill.py +115 -0
  35. package/skills/skill-creator/scripts/quick_validate.py +69 -0
  36. package/skills/skill-creator/skill.json +14 -0
  37. package/skills/team-workflow/SKILL.md +227 -0
  38. package/skills/team-workflow/skill.json +15 -0
  39. package/skills/ui-ux-pro-max/SKILL.md +292 -0
  40. package/skills/ui-ux-pro-max/data/charts.csv +26 -0
  41. package/skills/ui-ux-pro-max/data/colors.csv +97 -0
  42. package/skills/ui-ux-pro-max/data/icons.csv +101 -0
  43. package/skills/ui-ux-pro-max/data/landing.csv +31 -0
  44. package/skills/ui-ux-pro-max/data/products.csv +97 -0
  45. package/skills/ui-ux-pro-max/data/react-performance.csv +45 -0
  46. package/skills/ui-ux-pro-max/data/stacks/astro.csv +54 -0
  47. package/skills/ui-ux-pro-max/data/stacks/flutter.csv +53 -0
  48. package/skills/ui-ux-pro-max/data/stacks/html-tailwind.csv +56 -0
  49. package/skills/ui-ux-pro-max/data/stacks/jetpack-compose.csv +53 -0
  50. package/skills/ui-ux-pro-max/data/stacks/nextjs.csv +53 -0
  51. package/skills/ui-ux-pro-max/data/stacks/nuxt-ui.csv +51 -0
  52. package/skills/ui-ux-pro-max/data/stacks/nuxtjs.csv +59 -0
  53. package/skills/ui-ux-pro-max/data/stacks/react-native.csv +52 -0
  54. package/skills/ui-ux-pro-max/data/stacks/react.csv +54 -0
  55. package/skills/ui-ux-pro-max/data/stacks/shadcn.csv +61 -0
  56. package/skills/ui-ux-pro-max/data/stacks/svelte.csv +54 -0
  57. package/skills/ui-ux-pro-max/data/stacks/swiftui.csv +51 -0
  58. package/skills/ui-ux-pro-max/data/stacks/vue.csv +50 -0
  59. package/skills/ui-ux-pro-max/data/styles.csv +68 -0
  60. package/skills/ui-ux-pro-max/data/typography.csv +58 -0
  61. package/skills/ui-ux-pro-max/data/ui-reasoning.csv +101 -0
  62. package/skills/ui-ux-pro-max/data/ux-guidelines.csv +100 -0
  63. package/skills/ui-ux-pro-max/data/web-interface.csv +31 -0
  64. package/skills/ui-ux-pro-max/scripts/core.py +253 -0
  65. package/skills/ui-ux-pro-max/scripts/design_system.py +1067 -0
  66. package/skills/ui-ux-pro-max/scripts/search.py +114 -0
  67. package/skills/ui-ux-pro-max/skill.json +16 -0
@@ -0,0 +1,308 @@
1
+ #!/usr/bin/env python3
2
+ """
3
+ Skill Initializer - Creates a new skill from template
4
+
5
+ Usage:
6
+ init_skill.py <skill-name> --path <path>
7
+
8
+ Examples:
9
+ init_skill.py my-new-skill --path skills/public
10
+ init_skill.py my-api-helper --path skills/private
11
+ init_skill.py custom-skill --path /custom/location
12
+ """
13
+
14
+ import sys
15
+ from pathlib import Path
16
+
17
+ from encoding_utils import configure_utf8_console, write_text_utf8
18
+
19
+ # Fix Windows console encoding for Unicode output (emojis, arrows)
20
+ configure_utf8_console()
21
+
22
+
23
+ SKILL_TEMPLATE = """---
24
+ name: {skill_name}
25
+ description: [TODO: Complete and informative explanation of what the skill does and when to use it. Include WHEN to use this skill - specific scenarios, file types, or tasks that trigger it.]
26
+ ---
27
+
28
+ # {skill_title}
29
+
30
+ ## Overview
31
+
32
+ [TODO: 1-2 sentences explaining what this skill enables]
33
+
34
+ ## Structuring This Skill
35
+
36
+ [TODO: Choose the structure that best fits this skill's purpose. Common patterns:
37
+
38
+ **1. Workflow-Based** (best for sequential processes)
39
+ - Works well when there are clear step-by-step procedures
40
+ - Example: DOCX skill with "Workflow Decision Tree" → "Reading" → "Creating" → "Editing"
41
+ - Structure: ## Overview → ## Workflow Decision Tree → ## Step 1 → ## Step 2...
42
+
43
+ **2. Task-Based** (best for tool collections)
44
+ - Works well when the skill offers different operations/capabilities
45
+ - Example: PDF skill with "Quick Start" → "Merge PDFs" → "Split PDFs" → "Extract Text"
46
+ - Structure: ## Overview → ## Quick Start → ## Task Category 1 → ## Task Category 2...
47
+
48
+ **3. Reference/Guidelines** (best for standards or specifications)
49
+ - Works well for brand guidelines, coding standards, or requirements
50
+ - Example: Brand styling with "Brand Guidelines" → "Colors" → "Typography" → "Features"
51
+ - Structure: ## Overview → ## Guidelines → ## Specifications → ## Usage...
52
+
53
+ **4. Capabilities-Based** (best for integrated systems)
54
+ - Works well when the skill provides multiple interrelated features
55
+ - Example: Product Management with "Core Capabilities" → numbered capability list
56
+ - Structure: ## Overview → ## Core Capabilities → ### 1. Feature → ### 2. Feature...
57
+
58
+ Patterns can be mixed and matched as needed. Most skills combine patterns (e.g., start with task-based, add workflow for complex operations).
59
+
60
+ Delete this entire "Structuring This Skill" section when done - it's just guidance.]
61
+
62
+ ## [TODO: Replace with the first main section based on chosen structure]
63
+
64
+ [TODO: Add content here. See examples in existing skills:
65
+ - Code samples for technical skills
66
+ - Decision trees for complex workflows
67
+ - Concrete examples with realistic user requests
68
+ - References to scripts/templates/references as needed]
69
+
70
+ ## Resources
71
+
72
+ This skill includes example resource directories that demonstrate how to organize different types of bundled resources:
73
+
74
+ ### scripts/
75
+ Executable code (Python/Bash/etc.) that can be run directly to perform specific operations.
76
+
77
+ **Examples from other skills:**
78
+ - PDF skill: `fill_fillable_fields.py`, `extract_form_field_info.py` - utilities for PDF manipulation
79
+ - DOCX skill: `document.py`, `utilities.py` - Python modules for document processing
80
+
81
+ **Appropriate for:** Python scripts, shell scripts, or any executable code that performs automation, data processing, or specific operations.
82
+
83
+ **Note:** Scripts may be executed without loading into context, but can still be read by Claude for patching or environment adjustments.
84
+
85
+ ### references/
86
+ Documentation and reference material intended to be loaded into context to inform Claude's process and thinking.
87
+
88
+ **Examples from other skills:**
89
+ - Product management: `communication.md`, `context_building.md` - detailed workflow guides
90
+ - BigQuery: API reference documentation and query examples
91
+ - Finance: Schema documentation, company policies
92
+
93
+ **Appropriate for:** In-depth documentation, API references, database schemas, comprehensive guides, or any detailed information that Claude should reference while working.
94
+
95
+ ### assets/
96
+ Files not intended to be loaded into context, but rather used within the output Claude produces.
97
+
98
+ **Examples from other skills:**
99
+ - Brand styling: PowerPoint template files (.pptx), logo files
100
+ - Frontend builder: HTML/React boilerplate project directories
101
+ - Typography: Font files (.ttf, .woff2)
102
+
103
+ **Appropriate for:** Templates, boilerplate code, document templates, images, icons, fonts, or any files meant to be copied or used in the final output.
104
+
105
+ ---
106
+
107
+ **Any unneeded directories can be deleted.** Not every skill requires all three types of resources.
108
+ """
109
+
110
+ EXAMPLE_SCRIPT = '''#!/usr/bin/env python3
111
+ """
112
+ Example helper script for {skill_name}
113
+
114
+ This is a placeholder script that can be executed directly.
115
+ Replace with actual implementation or delete if not needed.
116
+
117
+ Example real scripts from other skills:
118
+ - pdf/scripts/fill_fillable_fields.py - Fills PDF form fields
119
+ - pdf/scripts/convert_pdf_to_images.py - Converts PDF pages to images
120
+ """
121
+
122
+ def main():
123
+ print("This is an example script for {skill_name}")
124
+ # TODO: Add actual script logic here
125
+ # This could be data processing, file conversion, API calls, etc.
126
+
127
+ if __name__ == "__main__":
128
+ main()
129
+ '''
130
+
131
+ EXAMPLE_REFERENCE = """# Reference Documentation for {skill_title}
132
+
133
+ This is a placeholder for detailed reference documentation.
134
+ Replace with actual reference content or delete if not needed.
135
+
136
+ Example real reference docs from other skills:
137
+ - product-management/references/communication.md - Comprehensive guide for status updates
138
+ - product-management/references/context_building.md - Deep-dive on gathering context
139
+ - bigquery/references/ - API references and query examples
140
+
141
+ ## When Reference Docs Are Useful
142
+
143
+ Reference docs are ideal for:
144
+ - Comprehensive API documentation
145
+ - Detailed workflow guides
146
+ - Complex multi-step processes
147
+ - Information too lengthy for main SKILL.md
148
+ - Content that's only needed for specific use cases
149
+
150
+ ## Structure Suggestions
151
+
152
+ ### API Reference Example
153
+ - Overview
154
+ - Authentication
155
+ - Endpoints with examples
156
+ - Error codes
157
+ - Rate limits
158
+
159
+ ### Workflow Guide Example
160
+ - Prerequisites
161
+ - Step-by-step instructions
162
+ - Common patterns
163
+ - Troubleshooting
164
+ - Best practices
165
+ """
166
+
167
+ EXAMPLE_ASSET = """# Example Asset File
168
+
169
+ This placeholder represents where asset files would be stored.
170
+ Replace with actual asset files (templates, images, fonts, etc.) or delete if not needed.
171
+
172
+ Asset files are NOT intended to be loaded into context, but rather used within
173
+ the output Claude produces.
174
+
175
+ Example asset files from other skills:
176
+ - Brand guidelines: logo.png, slides_template.pptx
177
+ - Frontend builder: hello-world/ directory with HTML/React boilerplate
178
+ - Typography: custom-font.ttf, font-family.woff2
179
+ - Data: sample_data.csv, test_dataset.json
180
+
181
+ ## Common Asset Types
182
+
183
+ - Templates: .pptx, .docx, boilerplate directories
184
+ - Images: .png, .jpg, .svg, .gif
185
+ - Fonts: .ttf, .otf, .woff, .woff2
186
+ - Boilerplate code: Project directories, starter files
187
+ - Icons: .ico, .svg
188
+ - Data files: .csv, .json, .xml, .yaml
189
+
190
+ Note: This is a text placeholder. Actual assets can be any file type.
191
+ """
192
+
193
+
194
+ def title_case_skill_name(skill_name):
195
+ """Convert hyphenated skill name to Title Case for display."""
196
+ return ' '.join(word.capitalize() for word in skill_name.split('-'))
197
+
198
+
199
+ def init_skill(skill_name, path):
200
+ """
201
+ Initialize a new skill directory with template SKILL.md.
202
+
203
+ Args:
204
+ skill_name: Name of the skill
205
+ path: Path where the skill directory should be created
206
+
207
+ Returns:
208
+ Path to created skill directory, or None if error
209
+ """
210
+ # Determine skill directory path
211
+ skill_dir = Path(path).resolve() / skill_name
212
+
213
+ # Check if directory already exists
214
+ if skill_dir.exists():
215
+ print(f"āŒ Error: Skill directory already exists: {skill_dir}")
216
+ return None
217
+
218
+ # Create skill directory
219
+ try:
220
+ skill_dir.mkdir(parents=True, exist_ok=False)
221
+ print(f"āœ… Created skill directory: {skill_dir}")
222
+ except Exception as e:
223
+ print(f"āŒ Error creating directory: {e}")
224
+ return None
225
+
226
+ # Create SKILL.md from template
227
+ skill_title = title_case_skill_name(skill_name)
228
+ skill_content = SKILL_TEMPLATE.format(
229
+ skill_name=skill_name,
230
+ skill_title=skill_title
231
+ )
232
+
233
+ skill_md_path = skill_dir / 'SKILL.md'
234
+ try:
235
+ write_text_utf8(skill_md_path, skill_content)
236
+ print("āœ… Created SKILL.md")
237
+ except Exception as e:
238
+ print(f"āŒ Error creating SKILL.md: {e}")
239
+ return None
240
+
241
+ # Create resource directories with example files
242
+ try:
243
+ # Create scripts/ directory with example script
244
+ scripts_dir = skill_dir / 'scripts'
245
+ scripts_dir.mkdir(exist_ok=True)
246
+ example_script = scripts_dir / 'example.py'
247
+ write_text_utf8(example_script, EXAMPLE_SCRIPT.format(skill_name=skill_name))
248
+ example_script.chmod(0o755)
249
+ print("āœ… Created scripts/example.py")
250
+
251
+ # Create references/ directory with example reference doc
252
+ references_dir = skill_dir / 'references'
253
+ references_dir.mkdir(exist_ok=True)
254
+ example_reference = references_dir / 'api_reference.md'
255
+ write_text_utf8(example_reference, EXAMPLE_REFERENCE.format(skill_title=skill_title))
256
+ print("āœ… Created references/api_reference.md")
257
+
258
+ # Create assets/ directory with example asset placeholder
259
+ assets_dir = skill_dir / 'assets'
260
+ assets_dir.mkdir(exist_ok=True)
261
+ example_asset = assets_dir / 'example_asset.txt'
262
+ write_text_utf8(example_asset, EXAMPLE_ASSET)
263
+ print("āœ… Created assets/example_asset.txt")
264
+ except Exception as e:
265
+ print(f"āŒ Error creating resource directories: {e}")
266
+ return None
267
+
268
+ # Print next steps
269
+ print(f"\nāœ… Skill '{skill_name}' initialized successfully at {skill_dir}")
270
+ print("\nNext steps:")
271
+ print("1. Edit SKILL.md to complete the TODO items and update the description")
272
+ print("2. Customize or delete the example files in scripts/, references/, and assets/")
273
+ print("3. Run the validator when ready to check the skill structure")
274
+
275
+ return skill_dir
276
+
277
+
278
+ def main():
279
+ if len(sys.argv) < 4 or sys.argv[2] != '--path':
280
+ print("Usage: init_skill.py <skill-name> --path <path>")
281
+ print("\nSkill name requirements:")
282
+ print(" - Hyphen-case identifier (e.g., 'data-analyzer')")
283
+ print(" - Lowercase letters, digits, and hyphens only")
284
+ print(" - Max 40 characters")
285
+ print(" - Must match directory name exactly")
286
+ print("\nExamples:")
287
+ print(" init_skill.py my-new-skill --path skills/public")
288
+ print(" init_skill.py my-api-helper --path skills/private")
289
+ print(" init_skill.py custom-skill --path /custom/location")
290
+ sys.exit(1)
291
+
292
+ skill_name = sys.argv[1]
293
+ path = sys.argv[3]
294
+
295
+ print(f"šŸš€ Initializing skill: {skill_name}")
296
+ print(f" Location: {path}")
297
+ print()
298
+
299
+ result = init_skill(skill_name, path)
300
+
301
+ if result:
302
+ sys.exit(0)
303
+ else:
304
+ sys.exit(1)
305
+
306
+
307
+ if __name__ == "__main__":
308
+ main()
@@ -0,0 +1,115 @@
1
+ #!/usr/bin/env python3
2
+ """
3
+ Skill Packager - Creates a distributable zip file of a skill folder
4
+
5
+ Usage:
6
+ python utils/package_skill.py <path/to/skill-folder> [output-directory]
7
+
8
+ Example:
9
+ python utils/package_skill.py skills/public/my-skill
10
+ python utils/package_skill.py skills/public/my-skill ./dist
11
+ """
12
+
13
+ import sys
14
+ import zipfile
15
+ from pathlib import Path
16
+
17
+ from encoding_utils import configure_utf8_console
18
+ from quick_validate import validate_skill
19
+
20
+ # Fix Windows console encoding for Unicode output (emojis, arrows)
21
+ configure_utf8_console()
22
+
23
+
24
+ def package_skill(skill_path, output_dir=None):
25
+ """
26
+ Package a skill folder into a zip file.
27
+
28
+ Args:
29
+ skill_path: Path to the skill folder
30
+ output_dir: Optional output directory for the zip file (defaults to current directory)
31
+
32
+ Returns:
33
+ Path to the created zip file, or None if error
34
+ """
35
+ skill_path = Path(skill_path).resolve()
36
+
37
+ # Validate skill folder exists
38
+ if not skill_path.exists():
39
+ print(f"āŒ Error: Skill folder not found: {skill_path}")
40
+ return None
41
+
42
+ if not skill_path.is_dir():
43
+ print(f"āŒ Error: Path is not a directory: {skill_path}")
44
+ return None
45
+
46
+ # Validate SKILL.md exists
47
+ skill_md = skill_path / "SKILL.md"
48
+ if not skill_md.exists():
49
+ print(f"āŒ Error: SKILL.md not found in {skill_path}")
50
+ return None
51
+
52
+ # Run validation before packaging
53
+ print("šŸ” Validating skill...")
54
+ valid, message = validate_skill(skill_path)
55
+ if not valid:
56
+ print(f"āŒ Validation failed: {message}")
57
+ print(" Please fix the validation errors before packaging.")
58
+ return None
59
+ print(f"āœ… {message}\n")
60
+
61
+ # Determine output location
62
+ skill_name = skill_path.name
63
+ if output_dir:
64
+ output_path = Path(output_dir).resolve()
65
+ output_path.mkdir(parents=True, exist_ok=True)
66
+ else:
67
+ output_path = Path.cwd()
68
+
69
+ zip_filename = output_path / f"{skill_name}.zip"
70
+
71
+ # Create the zip file
72
+ try:
73
+ with zipfile.ZipFile(zip_filename, 'w', zipfile.ZIP_DEFLATED) as zipf:
74
+ # Walk through the skill directory
75
+ for file_path in skill_path.rglob('*'):
76
+ if file_path.is_file():
77
+ # Calculate the relative path within the zip
78
+ arcname = file_path.relative_to(skill_path.parent)
79
+ zipf.write(file_path, arcname)
80
+ print(f" Added: {arcname}")
81
+
82
+ print(f"\nāœ… Successfully packaged skill to: {zip_filename}")
83
+ return zip_filename
84
+
85
+ except Exception as e:
86
+ print(f"āŒ Error creating zip file: {e}")
87
+ return None
88
+
89
+
90
+ def main():
91
+ if len(sys.argv) < 2:
92
+ print("Usage: python utils/package_skill.py <path/to/skill-folder> [output-directory]")
93
+ print("\nExample:")
94
+ print(" python utils/package_skill.py skills/public/my-skill")
95
+ print(" python utils/package_skill.py skills/public/my-skill ./dist")
96
+ sys.exit(1)
97
+
98
+ skill_path = sys.argv[1]
99
+ output_dir = sys.argv[2] if len(sys.argv) > 2 else None
100
+
101
+ print(f"šŸ“¦ Packaging skill: {skill_path}")
102
+ if output_dir:
103
+ print(f" Output directory: {output_dir}")
104
+ print()
105
+
106
+ result = package_skill(skill_path, output_dir)
107
+
108
+ if result:
109
+ sys.exit(0)
110
+ else:
111
+ sys.exit(1)
112
+
113
+
114
+ if __name__ == "__main__":
115
+ main()
@@ -0,0 +1,69 @@
1
+ #!/usr/bin/env python3
2
+ """
3
+ Quick validation script for skills - minimal version
4
+ """
5
+
6
+ import sys
7
+ import re
8
+ from pathlib import Path
9
+
10
+ from encoding_utils import configure_utf8_console, read_text_utf8
11
+
12
+ # Fix Windows console encoding for Unicode output
13
+ configure_utf8_console()
14
+
15
+ def validate_skill(skill_path):
16
+ """Basic validation of a skill"""
17
+ skill_path = Path(skill_path)
18
+
19
+ # Check SKILL.md exists
20
+ skill_md = skill_path / 'SKILL.md'
21
+ if not skill_md.exists():
22
+ return False, "SKILL.md not found"
23
+
24
+ # Read and validate frontmatter
25
+ content = read_text_utf8(skill_md)
26
+ if not content.startswith('---'):
27
+ return False, "No YAML frontmatter found"
28
+
29
+ # Extract frontmatter
30
+ match = re.match(r'^---\n(.*?)\n---', content, re.DOTALL)
31
+ if not match:
32
+ return False, "Invalid frontmatter format"
33
+
34
+ frontmatter = match.group(1)
35
+
36
+ # Check required fields
37
+ if 'name:' not in frontmatter:
38
+ return False, "Missing 'name' in frontmatter"
39
+ if 'description:' not in frontmatter:
40
+ return False, "Missing 'description' in frontmatter"
41
+
42
+ # Extract name for validation
43
+ name_match = re.search(r'name:\s*(.+)', frontmatter)
44
+ if name_match:
45
+ name = name_match.group(1).strip()
46
+ # Check naming convention (hyphen-case: lowercase with hyphens)
47
+ if not re.match(r'^[a-z0-9-]+$', name):
48
+ return False, f"Name '{name}' should be hyphen-case (lowercase letters, digits, and hyphens only)"
49
+ if name.startswith('-') or name.endswith('-') or '--' in name:
50
+ return False, f"Name '{name}' cannot start/end with hyphen or contain consecutive hyphens"
51
+
52
+ # Extract and validate description
53
+ desc_match = re.search(r'description:\s*(.+)', frontmatter)
54
+ if desc_match:
55
+ description = desc_match.group(1).strip()
56
+ # Check for angle brackets
57
+ if '<' in description or '>' in description:
58
+ return False, "Description cannot contain angle brackets (< or >)"
59
+
60
+ return True, "Skill is valid!"
61
+
62
+ if __name__ == "__main__":
63
+ if len(sys.argv) != 2:
64
+ print("Usage: python quick_validate.py <skill_directory>")
65
+ sys.exit(1)
66
+
67
+ valid, message = validate_skill(sys.argv[1])
68
+ print(message)
69
+ sys.exit(0 if valid else 1)
@@ -0,0 +1,14 @@
1
+ {
2
+ "name": "skill-creator",
3
+ "version": "1.0.0",
4
+ "description": "Create and validate AI agent skills with progressive disclosure, bundled scripts, and marketplace packaging",
5
+ "compatibility": "OpenCode",
6
+ "agent": null,
7
+ "commands": [],
8
+ "tags": [
9
+ "skill",
10
+ "creator",
11
+ "validation",
12
+ "packaging"
13
+ ]
14
+ }