bobo-ai-cli 1.0.1

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 (234) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +216 -0
  3. package/dist/agent.d.ts +9 -0
  4. package/dist/agent.js +144 -0
  5. package/dist/agent.js.map +1 -0
  6. package/dist/config.d.ts +15 -0
  7. package/dist/config.js +76 -0
  8. package/dist/config.js.map +1 -0
  9. package/dist/index.d.ts +2 -0
  10. package/dist/index.js +366 -0
  11. package/dist/index.js.map +1 -0
  12. package/dist/knowledge-commands.d.ts +2 -0
  13. package/dist/knowledge-commands.js +40 -0
  14. package/dist/knowledge-commands.js.map +1 -0
  15. package/dist/knowledge.d.ts +17 -0
  16. package/dist/knowledge.js +112 -0
  17. package/dist/knowledge.js.map +1 -0
  18. package/dist/memory.d.ts +17 -0
  19. package/dist/memory.js +215 -0
  20. package/dist/memory.js.map +1 -0
  21. package/dist/planner.d.ts +22 -0
  22. package/dist/planner.js +130 -0
  23. package/dist/planner.js.map +1 -0
  24. package/dist/project.d.ts +25 -0
  25. package/dist/project.js +117 -0
  26. package/dist/project.js.map +1 -0
  27. package/dist/rules-commands.d.ts +2 -0
  28. package/dist/rules-commands.js +51 -0
  29. package/dist/rules-commands.js.map +1 -0
  30. package/dist/skills.d.ts +28 -0
  31. package/dist/skills.js +349 -0
  32. package/dist/skills.js.map +1 -0
  33. package/dist/structured/loader.d.ts +19 -0
  34. package/dist/structured/loader.js +147 -0
  35. package/dist/structured/loader.js.map +1 -0
  36. package/dist/structured/paths.d.ts +2 -0
  37. package/dist/structured/paths.js +14 -0
  38. package/dist/structured/paths.js.map +1 -0
  39. package/dist/structured/project-scaffold.d.ts +7 -0
  40. package/dist/structured/project-scaffold.js +60 -0
  41. package/dist/structured/project-scaffold.js.map +1 -0
  42. package/dist/structured/render-markdown.d.ts +37 -0
  43. package/dist/structured/render-markdown.js +47 -0
  44. package/dist/structured/render-markdown.js.map +1 -0
  45. package/dist/structured/render-table.d.ts +1 -0
  46. package/dist/structured/render-table.js +15 -0
  47. package/dist/structured/render-table.js.map +1 -0
  48. package/dist/structured/search.d.ts +10 -0
  49. package/dist/structured/search.js +104 -0
  50. package/dist/structured/search.js.map +1 -0
  51. package/dist/structured/skill-runner.d.ts +15 -0
  52. package/dist/structured/skill-runner.js +60 -0
  53. package/dist/structured/skill-runner.js.map +1 -0
  54. package/dist/structured/types.d.ts +212 -0
  55. package/dist/structured/types.js +97 -0
  56. package/dist/structured/types.js.map +1 -0
  57. package/dist/structured-skills-commands.d.ts +3 -0
  58. package/dist/structured-skills-commands.js +126 -0
  59. package/dist/structured-skills-commands.js.map +1 -0
  60. package/dist/structured-template-commands.d.ts +2 -0
  61. package/dist/structured-template-commands.js +34 -0
  62. package/dist/structured-template-commands.js.map +1 -0
  63. package/dist/tools/index.d.ts +3 -0
  64. package/dist/tools/index.js +450 -0
  65. package/dist/tools/index.js.map +1 -0
  66. package/dist/ui.d.ts +19 -0
  67. package/dist/ui.js +72 -0
  68. package/dist/ui.js.map +1 -0
  69. package/dist/web.d.ts +4 -0
  70. package/dist/web.js +124 -0
  71. package/dist/web.js.map +1 -0
  72. package/knowledge/advanced-patterns.md +70 -0
  73. package/knowledge/agent-directives.md +74 -0
  74. package/knowledge/dream.md +36 -0
  75. package/knowledge/engineering.md +46 -0
  76. package/knowledge/error-catalog.md +33 -0
  77. package/knowledge/index.json +170 -0
  78. package/knowledge/memory/cache-optimization-and-skill-integration.md +102 -0
  79. package/knowledge/memory/engineering-patterns.md +134 -0
  80. package/knowledge/memory/feedback_root_structure.md +16 -0
  81. package/knowledge/memory/project-contexts.md +69 -0
  82. package/knowledge/memory/tools-and-services.md +85 -0
  83. package/knowledge/rules/agents.md +62 -0
  84. package/knowledge/rules/blocking-rules.md +323 -0
  85. package/knowledge/rules/cache-management.md +379 -0
  86. package/knowledge/rules/capability-evolution.md +132 -0
  87. package/knowledge/rules/coding.md +126 -0
  88. package/knowledge/rules/engineering-workflows.md +225 -0
  89. package/knowledge/rules/evomap-content-guidelines.md +354 -0
  90. package/knowledge/rules/evomap-guide.md +224 -0
  91. package/knowledge/rules/git.md +31 -0
  92. package/knowledge/rules/hooks.md +106 -0
  93. package/knowledge/rules/performance.md +101 -0
  94. package/knowledge/rules/remotion-auto-production.md +1120 -0
  95. package/knowledge/rules/security.md +46 -0
  96. package/knowledge/rules/testing.md +32 -0
  97. package/knowledge/rules/work-mode.md +208 -0
  98. package/knowledge/rules.md +62 -0
  99. package/knowledge/skills/Skill_Seekers.md +1722 -0
  100. package/knowledge/skills/ab-test-setup.md +557 -0
  101. package/knowledge/skills/agent-sdk-dev.md +238 -0
  102. package/knowledge/skills/agent-tools.md +136 -0
  103. package/knowledge/skills/analytics-tracking.md +597 -0
  104. package/knowledge/skills/artifacts-builder.md +89 -0
  105. package/knowledge/skills/asana.md +13 -0
  106. package/knowledge/skills/backend-expert.md +97 -0
  107. package/knowledge/skills/brand-voice.md +481 -0
  108. package/knowledge/skills/browser-use.md +419 -0
  109. package/knowledge/skills/cache-optimization-skill.md +179 -0
  110. package/knowledge/skills/canvas-design.md +147 -0
  111. package/knowledge/skills/citation-validator.md +203 -0
  112. package/knowledge/skills/clangd-lsp.md +52 -0
  113. package/knowledge/skills/code-review-expert.md +85 -0
  114. package/knowledge/skills/code-review.md +280 -0
  115. package/knowledge/skills/code-simplifier.md +13 -0
  116. package/knowledge/skills/commit-commands.md +258 -0
  117. package/knowledge/skills/competitor-alternatives.md +795 -0
  118. package/knowledge/skills/content-atomizer.md +910 -0
  119. package/knowledge/skills/content-research-writer.md +605 -0
  120. package/knowledge/skills/context-optimization-suite.md +162 -0
  121. package/knowledge/skills/context7.md +13 -0
  122. package/knowledge/skills/copy-editing.md +494 -0
  123. package/knowledge/skills/copywriting.md +510 -0
  124. package/knowledge/skills/csharp-lsp.md +40 -0
  125. package/knowledge/skills/decision-making-framework.md +154 -0
  126. package/knowledge/skills/developer-growth-analysis.md +335 -0
  127. package/knowledge/skills/direct-response-copy.md +2336 -0
  128. package/knowledge/skills/docker-expert.md +229 -0
  129. package/knowledge/skills/document-skills.md +13 -0
  130. package/knowledge/skills/documentation-expert.md +126 -0
  131. package/knowledge/skills/email-sequence.md +1061 -0
  132. package/knowledge/skills/email-sequences.md +910 -0
  133. package/knowledge/skills/example-plugin.md +72 -0
  134. package/knowledge/skills/explanatory-output-style.md +82 -0
  135. package/knowledge/skills/feature-dev.md +458 -0
  136. package/knowledge/skills/file-organizer.md +466 -0
  137. package/knowledge/skills/firebase.disabled.md +13 -0
  138. package/knowledge/skills/form-cro.md +488 -0
  139. package/knowledge/skills/free-tool-strategy.md +636 -0
  140. package/knowledge/skills/frontend-design-offical.md +55 -0
  141. package/knowledge/skills/frontend-design.md +41 -0
  142. package/knowledge/skills/frontend-expert.md +93 -0
  143. package/knowledge/skills/github.md +13 -0
  144. package/knowledge/skills/gitlab.md +13 -0
  145. package/knowledge/skills/gopls-lsp.md +32 -0
  146. package/knowledge/skills/got-controller.md +218 -0
  147. package/knowledge/skills/greptile.md +72 -0
  148. package/knowledge/skills/hookify.md +376 -0
  149. package/knowledge/skills/image-editor.md +189 -0
  150. package/knowledge/skills/image-enhancer.md +109 -0
  151. package/knowledge/skills/jdtls-lsp.md +49 -0
  152. package/knowledge/skills/json-canvas.md +654 -0
  153. package/knowledge/skills/keyword-research.md +559 -0
  154. package/knowledge/skills/kotlin-lsp.md +28 -0
  155. package/knowledge/skills/laravel-boost.md +13 -0
  156. package/knowledge/skills/launch-strategy.md +394 -0
  157. package/knowledge/skills/lead-magnet.md +393 -0
  158. package/knowledge/skills/learning-output-style.md +106 -0
  159. package/knowledge/skills/linear.md +13 -0
  160. package/knowledge/skills/lua-lsp.md +47 -0
  161. package/knowledge/skills/marketing-ideas.md +720 -0
  162. package/knowledge/skills/marketing-psychology.md +534 -0
  163. package/knowledge/skills/mcp-builder.md +369 -0
  164. package/knowledge/skills/meeting-insights-analyzer.md +347 -0
  165. package/knowledge/skills/memory-evolution-system.md +172 -0
  166. package/knowledge/skills/multi-lens-thinking.md +407 -0
  167. package/knowledge/skills/nano-banana-pro.md +116 -0
  168. package/knowledge/skills/newsletter.md +736 -0
  169. package/knowledge/skills/notebooklm.md +296 -0
  170. package/knowledge/skills/obsidian-bases.md +634 -0
  171. package/knowledge/skills/obsidian-markdown.md +651 -0
  172. package/knowledge/skills/onboarding-cro.md +494 -0
  173. package/knowledge/skills/orchestrator.md +681 -0
  174. package/knowledge/skills/page-cro.md +379 -0
  175. package/knowledge/skills/paid-ads.md +624 -0
  176. package/knowledge/skills/paywall-upgrade-cro.md +651 -0
  177. package/knowledge/skills/php-lsp.md +36 -0
  178. package/knowledge/skills/planning-with-files.md +193 -0
  179. package/knowledge/skills/playwright.md +13 -0
  180. package/knowledge/skills/plugin-dev.md +434 -0
  181. package/knowledge/skills/popup-cro.md +520 -0
  182. package/knowledge/skills/positioning-angles.md +330 -0
  183. package/knowledge/skills/pr-review-toolkit.md +359 -0
  184. package/knowledge/skills/pricing-strategy.md +777 -0
  185. package/knowledge/skills/programmatic-seo.md +714 -0
  186. package/knowledge/skills/pyright-lsp.md +43 -0
  187. package/knowledge/skills/quality-assurance-framework.md +168 -0
  188. package/knowledge/skills/question-refiner.md +160 -0
  189. package/knowledge/skills/ralph-loop.md +205 -0
  190. package/knowledge/skills/refactoring-expert.md +103 -0
  191. package/knowledge/skills/referral-program.md +668 -0
  192. package/knowledge/skills/research-executor.md +164 -0
  193. package/knowledge/skills/review-with-security.md +12 -0
  194. package/knowledge/skills/rust-analyzer-lsp.md +50 -0
  195. package/knowledge/skills/schema-markup.md +647 -0
  196. package/knowledge/skills/security-audit-expert.md +124 -0
  197. package/knowledge/skills/security-expert.md +140 -0
  198. package/knowledge/skills/security-guidance.md +13 -0
  199. package/knowledge/skills/seedance-prompt.md +139 -0
  200. package/knowledge/skills/self-evolution.md +1160 -0
  201. package/knowledge/skills/seo-audit.md +432 -0
  202. package/knowledge/skills/seo-content.md +787 -0
  203. package/knowledge/skills/serena.md +13 -0
  204. package/knowledge/skills/signup-flow-cro.md +409 -0
  205. package/knowledge/skills/skill-creator.md +220 -0
  206. package/knowledge/skills/skill-manager.md +226 -0
  207. package/knowledge/skills/skill-share.md +98 -0
  208. package/knowledge/skills/slack.md +13 -0
  209. package/knowledge/skills/social-content.md +878 -0
  210. package/knowledge/skills/spec-flow-skill.md +124 -0
  211. package/knowledge/skills/stripe.md +13 -0
  212. package/knowledge/skills/supabase.md +13 -0
  213. package/knowledge/skills/swift-lsp.md +40 -0
  214. package/knowledge/skills/synthesizer.md +236 -0
  215. package/knowledge/skills/template-skill.md +16 -0
  216. package/knowledge/skills/testing-expert.md +99 -0
  217. package/knowledge/skills/theme-factory.md +72 -0
  218. package/knowledge/skills/tiktok-research.md +208 -0
  219. package/knowledge/skills/typescript-lsp.md +36 -0
  220. package/knowledge/skills/ui-ux-pro-max.md +247 -0
  221. package/knowledge/skills/verify.md +15 -0
  222. package/knowledge/skills/visual-prompt-engineer.md +102 -0
  223. package/knowledge/skills/webapp-testing.md +111 -0
  224. package/knowledge/skills/wide-research.md +191 -0
  225. package/knowledge/system.md +93 -0
  226. package/knowledge/task-router.md +37 -0
  227. package/knowledge/verification.md +38 -0
  228. package/knowledge/workflows/3d-viz.md +47 -0
  229. package/knowledge/workflows/data-pipeline.md +47 -0
  230. package/knowledge/workflows/db-migration.md +51 -0
  231. package/knowledge/workflows/feature-dev.md +41 -0
  232. package/knowledge/workflows/tdd-flow.md +52 -0
  233. package/knowledge/workflows/ui-verify.md +51 -0
  234. package/package.json +60 -0
@@ -0,0 +1,226 @@
1
+ ---
2
+ id: "skill-manager"
3
+ title: "Skill Manager"
4
+ category: "agent-engineering"
5
+ tags: ["skill manager", "description", "features", "installation methods", "usage", "installation", "technical details", "download method selection", "examples", "commands"]
6
+ triggers: []
7
+ dependencies: []
8
+ source: "E:/Bobo's Coding cache/.claude/skills/skill-manager"
9
+ ---
10
+
11
+ # Skill Manager
12
+
13
+ A Claude Code skill that allows you to search, browse, and install skills from a database of 31,767+ community skills with intelligent folder-level downloads.
14
+
15
+ ## Description
16
+
17
+ Skill Manager provides an easy way to discover and install Claude Code skills. Simply describe what you're looking for, and it will search through a comprehensive database of skills, display matching results with ratings and descriptions, and automatically download the complete skill folder (not just SKILL.md) to your Claude environment.
18
+
19
+ ## Features
20
+
21
+ - Search through 31,767+ skills from the community
22
+ - Intelligent search with weighted scoring (name, description, author)
23
+ - View skill details including stars, forks, author, and description
24
+ - **Smart installation with multiple methods:**
25
+ - **SVN export** (preferred): Downloads only the skill folder efficiently
26
+ - **Git sparse checkout**: Falls back if SVN unavailable
27
+ - **SKILL.md only**: Final fallback for minimal installation
28
+ - Complete folder download including all scripts, data, and documentation
29
+ - Automatic configuration and usage guide display
30
+ - Support for both English and Chinese descriptions
31
+
32
+ ## Installation Methods
33
+
34
+ The skill automatically selects the best available method:
35
+
36
+ ### 1. SVN Export (Recommended)
37
+
38
+ - **Fastest and most efficient**
39
+ - Downloads only the specific skill folder
40
+ - No Git history overhead
41
+ - **Requirement**: SVN client installed
42
+ - Windows: `choco install svn` or download from TortoiseSVN
43
+ - Mac: `brew install svn`
44
+ - Linux: `apt-get install subversion` or `yum install subversion`
45
+
46
+ ### 2. Git Sparse Checkout
47
+
48
+ - Alternative when SVN unavailable
49
+ - Uses Git's sparse checkout feature
50
+ - Downloads only needed files
51
+ - **Requirement**: Git installed
52
+
53
+ ### 3. SKILL.md Only (Fallback)
54
+
55
+ - Minimal installation
56
+ - Downloads only the SKILL.md file
57
+ - Works without any special tools
58
+ - Limited functionality for skills requiring additional files
59
+
60
+ ## Usage
61
+
62
+ When you need to find and install a skill, simply tell Claude what you're looking for:
63
+
64
+ ```
65
+ I need a skill for Python testing
66
+ ```
67
+
68
+ ```
69
+ Find me a skill to help with Docker
70
+ ```
71
+
72
+ ```
73
+ Search for skills related to API development
74
+ ```
75
+
76
+ Claude will:
77
+
78
+ 1. Search the skills database
79
+ 2. Display matching results with ratings
80
+ 3. Ask you to select one
81
+ 4. **Download the complete skill folder** automatically
82
+ 5. Show you the configuration and usage guide
83
+
84
+ ## Installation
85
+
86
+ This skill includes the skills database file in the `data/` directory:
87
+
88
+ - `data/all_skills_with_cn.json` (30.33 MB)
89
+
90
+ ## Technical Details
91
+
92
+ The skill uses Node.js to:
93
+
94
+ - Parse and search the JSON skills database
95
+ - **Automatically detect available download methods (SVN, Git, or HTTP)**
96
+ - **Use SVN export for efficient folder-only downloads**
97
+ - **Fall back to Git sparse checkout if SVN unavailable**
98
+ - Download complete skill folders with all files (scripts, data, docs)
99
+ - Install skills to `~/.claude/skills/` directory
100
+ - Parse skill configuration from SKILL.md content
101
+ - Display formatted installation guides with method used
102
+
103
+ ## Download Method Selection
104
+
105
+ The skill intelligently selects the best method:
106
+
107
+ ```javascript
108
+ if (SVN available) {
109
+ → Use SVN export (fastest, most efficient)
110
+ } else if (Git available) {
111
+ → Use Git sparse checkout (slower but complete)
112
+ } else {
113
+ → Download SKILL.md only (minimal fallback)
114
+ }
115
+ ```
116
+
117
+ **Why SVN for GitHub?**
118
+
119
+ - GitHub supports SVN protocol for folder-level access
120
+ - Much faster than cloning entire repositories
121
+ - No Git history overhead
122
+ - Perfect for downloading specific skill folders
123
+
124
+ ## Examples
125
+
126
+ **Example 1: Installing with SVN (Full Download)**
127
+
128
+ ```
129
+ User: I need help with Python testing
130
+ Assistant: [Searches database and shows results]
131
+ 1. pytest-helper (by python-community)
132
+ ⭐ 1,250 stars | 🔀 342 forks
133
+ 📝 Helps write and run pytest tests with fixtures and assertions...
134
+ 🔗 https://github.com/python-community/pytest-helper
135
+
136
+ User: Install the first one
137
+ Assistant: [Detects SVN, downloads complete folder with all scripts]
138
+ ✓ SVN detected - using efficient folder download
139
+ ✓ Method used: SVN
140
+ ✓ Files installed: SKILL.md, pytest_runner.py, fixtures.py, README.md
141
+ ```
142
+
143
+ **Example 2: Fallback to Git Sparse Checkout**
144
+
145
+ ```
146
+ User: Find me skills for A股
147
+ Assistant: [Shows Chinese stock market skills]
148
+
149
+ User: Install technical-indicators
150
+ Assistant: [SVN not found, uses Git sparse checkout]
151
+ ✓ Git detected - using sparse checkout
152
+ ✓ Method used: Git Sparse Checkout
153
+ ✓ Files installed: SKILL.md, skill.py, references/
154
+ ```
155
+
156
+ **Example 3: Search by author**
157
+
158
+ ```
159
+ User: Show me skills by pytorch
160
+ Assistant: [Searches and displays PyTorch organization skills]
161
+ ```
162
+
163
+ **Example 4: Search by functionality**
164
+
165
+ ```
166
+ User: Find skills for code review
167
+ Assistant: [Searches for code review related skills]
168
+ ```
169
+
170
+ ## Commands
171
+
172
+ The skill responds to natural language requests like:
173
+
174
+ - "Find skills for [topic]"
175
+ - "Search for [keyword] skills"
176
+ - "Show me skills by [author]"
177
+ - "I need help with [task]"
178
+ - "Install skill number [N]"
179
+ - "Install [skill-name]"
180
+
181
+ ## Notes
182
+
183
+ - Skills are installed to `~/.claude/skills/[skill-name]/SKILL.md`
184
+ - After installation, restart Claude Code to load the new skill
185
+ - The database includes skills with GitHub stats (stars, forks) for quality reference
186
+ - Search results are ranked by relevance and popularity
187
+
188
+ ## Requirements
189
+
190
+ - Node.js runtime (>= 14.0.0)
191
+ - Internet connection for downloading skills from GitHub
192
+ - Skills database file (`all_skills_with_cn.json`)
193
+ - **Recommended**: SVN client for optimal installation
194
+ - Windows: `choco install svn` or TortoiseSVN
195
+ - Mac: `brew install svn`
196
+ - Linux: `apt-get install subversion`
197
+ - **Alternative**: Git client (usually pre-installed)
198
+
199
+ ## Performance Comparison
200
+
201
+ | Method | Speed | Files Downloaded | Disk Usage | Requirements |
202
+ | ----------------------- | -------------- | ---------------- | ------------------- | ------------ |
203
+ | **SVN Export** | ⚡⚡⚡ Fast | All skill files | Minimal | SVN client |
204
+ | **Git Sparse Checkout** | ⚡⚡ Medium | All skill files | Small .git overhead | Git |
205
+ | **SKILL.md Only** | ⚡ Slow (HTTP) | Only SKILL.md | Minimal | None |
206
+
207
+ **Recommendation**: Install SVN for the best experience!
208
+
209
+ ## Database Statistics
210
+
211
+ - Total Skills: 31,767
212
+ - Skills with Chinese translations: 31,752 (99.95%)
213
+ - Skills from diverse authors and organizations
214
+ - Regular updates from GitHub repositories
215
+
216
+ ---
217
+
218
+ **Created**: 2025-12-26
219
+ **Version**: 2.0.0
220
+ **Updates in v2.0**:
221
+
222
+ - Added SVN export support for efficient folder downloads
223
+ - Added Git sparse checkout as fallback method
224
+ - Now downloads complete skill folders, not just SKILL.md
225
+ - Automatic method detection and selection
226
+ - Enhanced error handling and troubleshooting tips
@@ -0,0 +1,98 @@
1
+ ---
2
+ id: "skill-share"
3
+ title: "Skill Share"
4
+ category: "agent-engineering"
5
+ tags: ["when to use this skill", "key features", "how it works", "example usage", "integration with rube", "requirements"]
6
+ triggers: []
7
+ dependencies: []
8
+ source: "E:/Bobo's Coding cache/.claude/skills/skill-share"
9
+ ---
10
+
11
+ ---
12
+ name: skill-share
13
+ description: A skill that creates new Claude skills and automatically shares them on Slack using Rube for seamless team collaboration and skill discovery.
14
+ license: Complete terms in LICENSE.txt
15
+ ---
16
+
17
+ ## When to use this skill
18
+
19
+ Use this skill when you need to:
20
+
21
+ - **Create new Claude skills** with proper structure and metadata
22
+ - **Generate skill packages** ready for distribution
23
+ - **Automatically share created skills** on Slack channels for team visibility
24
+ - **Validate skill structure** before sharing
25
+ - **Package and distribute** skills to your team
26
+
27
+ Also use this skill when:
28
+
29
+ - **User says he wants to create/share his skill**
30
+
31
+ This skill is ideal for:
32
+
33
+ - Creating skills as part of team workflows
34
+ - Building internal tools that need skill creation + team notification
35
+ - Automating the skill development pipeline
36
+ - Collaborative skill creation with team notifications
37
+
38
+ ## Key Features
39
+
40
+ ### 1. Skill Creation
41
+
42
+ - Creates properly structured skill directories with SKILL.md
43
+ - Generates standardized scripts/, references/, and assets/ directories
44
+ - Auto-generates YAML frontmatter with required metadata
45
+ - Enforces naming conventions (hyphen-case)
46
+
47
+ ### 2. Skill Validation
48
+
49
+ - Validates SKILL.md format and required fields
50
+ - Checks naming conventions
51
+ - Ensures metadata completeness before packaging
52
+
53
+ ### 3. Skill Packaging
54
+
55
+ - Creates distributable zip files
56
+ - Includes all skill assets and documentation
57
+ - Runs validation automatically before packaging
58
+
59
+ ### 4. Slack Integration via Rube
60
+
61
+ - Automatically sends created skill information to designated Slack channels
62
+ - Shares skill metadata (name, description, link)
63
+ - Posts skill summary for team discovery
64
+ - Provides direct links to skill files
65
+
66
+ ## How It Works
67
+
68
+ 1. **Initialization**: Provide skill name and description
69
+ 2. **Creation**: Skill directory is created with proper structure
70
+ 3. **Validation**: Skill metadata is validated for correctness
71
+ 4. **Packaging**: Skill is packaged into a distributable format
72
+ 5. **Slack Notification**: Skill details are posted to your team's Slack channel
73
+
74
+ ## Example Usage
75
+
76
+ ```
77
+ When you ask Claude to create a skill called "pdf-analyzer":
78
+ 1. Creates /skill-pdf-analyzer/ with SKILL.md template
79
+ 2. Generates structured directories (scripts/, references/, assets/)
80
+ 3. Validates the skill structure
81
+ 4. Packages the skill as a zip file
82
+ 5. Posts to Slack: "New Skill Created: pdf-analyzer - Advanced PDF analysis and extraction capabilities"
83
+ ```
84
+
85
+ ## Integration with Rube
86
+
87
+ This skill leverages Rube for:
88
+
89
+ - **SLACK_SEND_MESSAGE**: Posts skill information to team channels
90
+ - **SLACK_POST_MESSAGE_WITH_BLOCKS**: Shares rich formatted skill metadata
91
+ - **SLACK_FIND_CHANNELS**: Discovers target channels for skill announcements
92
+
93
+ ## Requirements
94
+
95
+ - Slack workspace connection via Rube
96
+ - Write access to skill creation directory
97
+ - Python 3.7+ for skill creation scripts
98
+ - Target Slack channel for skill notifications
@@ -0,0 +1,13 @@
1
+ ---
2
+ id: "slack"
3
+ title: "slack"
4
+ category: "knowledge"
5
+ tags: ["slack"]
6
+ triggers: []
7
+ dependencies: []
8
+ source: "E:/Bobo's Coding cache/.claude/skills/slack"
9
+ ---
10
+
11
+ # slack
12
+
13
+ Skill directory: slack