bobo-ai-cli 2.1.0 → 3.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 (260) hide show
  1. package/README.md +52 -9
  2. package/bundled-skills/CORE_SKILLS.txt +18 -0
  3. package/dist/agent.js +91 -51
  4. package/dist/agent.js.map +1 -1
  5. package/dist/agents/catalog.d.ts +40 -0
  6. package/dist/agents/catalog.js +172 -0
  7. package/dist/agents/catalog.js.map +1 -0
  8. package/dist/agents/index.d.ts +6 -0
  9. package/dist/agents/index.js +4 -0
  10. package/dist/agents/index.js.map +1 -0
  11. package/dist/agents/router.d.ts +43 -0
  12. package/dist/agents/router.js +87 -0
  13. package/dist/agents/router.js.map +1 -0
  14. package/dist/agents/spawn.d.ts +46 -0
  15. package/dist/agents/spawn.js +91 -0
  16. package/dist/agents/spawn.js.map +1 -0
  17. package/dist/autonomous.js +41 -1
  18. package/dist/autonomous.js.map +1 -1
  19. package/dist/cli.d.ts +8 -0
  20. package/dist/cli.js +669 -0
  21. package/dist/cli.js.map +1 -0
  22. package/dist/compactor.d.ts +49 -4
  23. package/dist/compactor.js +164 -17
  24. package/dist/compactor.js.map +1 -1
  25. package/dist/completer.js +2 -0
  26. package/dist/completer.js.map +1 -1
  27. package/dist/config.js +3 -2
  28. package/dist/config.js.map +1 -1
  29. package/dist/cost-tracker.js +36 -2
  30. package/dist/cost-tracker.js.map +1 -1
  31. package/dist/dream.d.ts +42 -0
  32. package/dist/dream.js +324 -0
  33. package/dist/dream.js.map +1 -0
  34. package/dist/hooks.d.ts +1 -1
  35. package/dist/hooks.js +7 -2
  36. package/dist/hooks.js.map +1 -1
  37. package/dist/index.js +10 -1136
  38. package/dist/index.js.map +1 -1
  39. package/dist/insight.js +4 -11
  40. package/dist/insight.js.map +1 -1
  41. package/dist/knowledge.d.ts +13 -0
  42. package/dist/knowledge.js +16 -4
  43. package/dist/knowledge.js.map +1 -1
  44. package/dist/mcp-client.js +59 -41
  45. package/dist/mcp-client.js.map +1 -1
  46. package/dist/memory.d.ts +4 -0
  47. package/dist/memory.js +30 -18
  48. package/dist/memory.js.map +1 -1
  49. package/dist/project.js +2 -1
  50. package/dist/project.js.map +1 -1
  51. package/dist/providers.js +1 -1
  52. package/dist/providers.js.map +1 -1
  53. package/dist/repl.d.ts +16 -0
  54. package/dist/repl.js +704 -0
  55. package/dist/repl.js.map +1 -0
  56. package/dist/sessions.js +59 -3
  57. package/dist/sessions.js.map +1 -1
  58. package/dist/skill-router.js +2 -2
  59. package/dist/skill-router.js.map +1 -1
  60. package/dist/skills/composer.d.ts +18 -0
  61. package/dist/skills/composer.js +59 -0
  62. package/dist/skills/composer.js.map +1 -0
  63. package/dist/skills/index.d.ts +3 -0
  64. package/dist/skills/index.js +3 -0
  65. package/dist/skills/index.js.map +1 -0
  66. package/dist/skills/loader.d.ts +12 -0
  67. package/dist/skills/loader.js +150 -0
  68. package/dist/skills/loader.js.map +1 -0
  69. package/dist/skills/types.d.ts +28 -0
  70. package/dist/skills/types.js +9 -0
  71. package/dist/skills/types.js.map +1 -0
  72. package/dist/skills.d.ts +1 -0
  73. package/dist/skills.js +10 -8
  74. package/dist/skills.js.map +1 -1
  75. package/dist/state/artifacts.d.ts +71 -0
  76. package/dist/state/artifacts.js +133 -0
  77. package/dist/state/artifacts.js.map +1 -0
  78. package/dist/state/index.d.ts +9 -0
  79. package/dist/state/index.js +7 -0
  80. package/dist/state/index.js.map +1 -0
  81. package/dist/state/manager.d.ts +89 -0
  82. package/dist/state/manager.js +132 -0
  83. package/dist/state/manager.js.map +1 -0
  84. package/dist/state/project-memory.d.ts +24 -0
  85. package/dist/state/project-memory.js +83 -0
  86. package/dist/state/project-memory.js.map +1 -0
  87. package/dist/state/recovery.d.ts +24 -0
  88. package/dist/state/recovery.js +95 -0
  89. package/dist/state/recovery.js.map +1 -0
  90. package/dist/statusbar.d.ts +1 -0
  91. package/dist/statusbar.js +12 -1
  92. package/dist/statusbar.js.map +1 -1
  93. package/dist/structured/loader.js +4 -2
  94. package/dist/structured/loader.js.map +1 -1
  95. package/dist/sub-agent-runner.d.ts +1 -0
  96. package/dist/sub-agent-runner.js +32 -5
  97. package/dist/sub-agent-runner.js.map +1 -1
  98. package/dist/sub-agents.d.ts +19 -1
  99. package/dist/sub-agents.js +142 -5
  100. package/dist/sub-agents.js.map +1 -1
  101. package/dist/tool-governance.d.ts +77 -0
  102. package/dist/tool-governance.js +366 -0
  103. package/dist/tool-governance.js.map +1 -0
  104. package/dist/tools/advanced.js +3 -2
  105. package/dist/tools/advanced.js.map +1 -1
  106. package/dist/tools/browser.js +2 -2
  107. package/dist/tools/browser.js.map +1 -1
  108. package/dist/tools/claude-code.js +2 -2
  109. package/dist/tools/claude-code.js.map +1 -1
  110. package/dist/tools/index.js +36 -12
  111. package/dist/tools/index.js.map +1 -1
  112. package/dist/tools/process-manager.js +2 -2
  113. package/dist/tools/process-manager.js.map +1 -1
  114. package/dist/ui/hud.d.ts +25 -0
  115. package/dist/ui/hud.js +67 -0
  116. package/dist/ui/hud.js.map +1 -0
  117. package/dist/verification-agent.d.ts +46 -0
  118. package/dist/verification-agent.js +533 -0
  119. package/dist/verification-agent.js.map +1 -0
  120. package/dist/watcher.js +2 -2
  121. package/dist/watcher.js.map +1 -1
  122. package/dist/web.js +1 -1
  123. package/dist/web.js.map +1 -1
  124. package/dist/workflows/ask.d.ts +13 -0
  125. package/dist/workflows/ask.js +66 -0
  126. package/dist/workflows/ask.js.map +1 -0
  127. package/dist/workflows/index.d.ts +5 -0
  128. package/dist/workflows/index.js +6 -0
  129. package/dist/workflows/index.js.map +1 -0
  130. package/dist/workflows/interview.d.ts +11 -0
  131. package/dist/workflows/interview.js +36 -0
  132. package/dist/workflows/interview.js.map +1 -0
  133. package/dist/workflows/plan.d.ts +13 -0
  134. package/dist/workflows/plan.js +34 -0
  135. package/dist/workflows/plan.js.map +1 -0
  136. package/dist/workflows/team.d.ts +17 -0
  137. package/dist/workflows/team.js +86 -0
  138. package/dist/workflows/team.js.map +1 -0
  139. package/dist/workflows/verify.d.ts +11 -0
  140. package/dist/workflows/verify.js +21 -0
  141. package/dist/workflows/verify.js.map +1 -0
  142. package/package.json +18 -5
  143. package/bundled-skills/Skill_Seekers/SKILL.md +0 -1722
  144. package/bundled-skills/ab-test-setup/SKILL.md +0 -557
  145. package/bundled-skills/adversarial-verification/SKILL.md +0 -95
  146. package/bundled-skills/agent-sdk-dev/SKILL.md +0 -238
  147. package/bundled-skills/agent-tools/SKILL.md +0 -136
  148. package/bundled-skills/analytics-tracking/SKILL.md +0 -597
  149. package/bundled-skills/artifacts-builder/SKILL.md +0 -89
  150. package/bundled-skills/asana/SKILL.md +0 -13
  151. package/bundled-skills/brand-voice/SKILL.md +0 -481
  152. package/bundled-skills/browser-use/SKILL.md +0 -419
  153. package/bundled-skills/cache-optimization-skill/SKILL.md +0 -179
  154. package/bundled-skills/canvas-design/SKILL.md +0 -147
  155. package/bundled-skills/citation-validator/SKILL.md +0 -203
  156. package/bundled-skills/clangd-lsp/SKILL.md +0 -52
  157. package/bundled-skills/code-simplifier/SKILL.md +0 -13
  158. package/bundled-skills/commit-commands/SKILL.md +0 -258
  159. package/bundled-skills/competitor-alternatives/SKILL.md +0 -795
  160. package/bundled-skills/content-atomizer/SKILL.md +0 -910
  161. package/bundled-skills/content-research-writer/SKILL.md +0 -605
  162. package/bundled-skills/context7/SKILL.md +0 -13
  163. package/bundled-skills/copy-editing/SKILL.md +0 -494
  164. package/bundled-skills/copywriting/SKILL.md +0 -510
  165. package/bundled-skills/csharp-lsp/SKILL.md +0 -40
  166. package/bundled-skills/decision-making-framework/SKILL.md +0 -154
  167. package/bundled-skills/deep-research/SKILL.md +0 -236
  168. package/bundled-skills/developer-growth-analysis/SKILL.md +0 -335
  169. package/bundled-skills/direct-response-copy/SKILL.md +0 -2336
  170. package/bundled-skills/docker-expert/SKILL.md +0 -229
  171. package/bundled-skills/document-skills/SKILL.md +0 -13
  172. package/bundled-skills/documentation-expert/SKILL.md +0 -126
  173. package/bundled-skills/email-sequence/SKILL.md +0 -1061
  174. package/bundled-skills/email-sequences/SKILL.md +0 -910
  175. package/bundled-skills/example-plugin/SKILL.md +0 -72
  176. package/bundled-skills/explanatory-output-style/SKILL.md +0 -82
  177. package/bundled-skills/feature-dev/SKILL.md +0 -458
  178. package/bundled-skills/file-organizer/SKILL.md +0 -466
  179. package/bundled-skills/firebase.disabled/SKILL.md +0 -13
  180. package/bundled-skills/form-cro/SKILL.md +0 -488
  181. package/bundled-skills/free-tool-strategy/SKILL.md +0 -636
  182. package/bundled-skills/frontend-design/SKILL.md +0 -41
  183. package/bundled-skills/frontend-design-offical/SKILL.md +0 -55
  184. package/bundled-skills/gitlab/SKILL.md +0 -13
  185. package/bundled-skills/gopls-lsp/SKILL.md +0 -32
  186. package/bundled-skills/got-controller/SKILL.md +0 -218
  187. package/bundled-skills/greptile/SKILL.md +0 -72
  188. package/bundled-skills/hookify/SKILL.md +0 -376
  189. package/bundled-skills/image-editor/SKILL.md +0 -189
  190. package/bundled-skills/image-enhancer/SKILL.md +0 -109
  191. package/bundled-skills/jdtls-lsp/SKILL.md +0 -49
  192. package/bundled-skills/json-canvas/SKILL.md +0 -654
  193. package/bundled-skills/keyword-research/SKILL.md +0 -559
  194. package/bundled-skills/kotlin-lsp/SKILL.md +0 -28
  195. package/bundled-skills/laravel-boost/SKILL.md +0 -13
  196. package/bundled-skills/launch-strategy/SKILL.md +0 -394
  197. package/bundled-skills/lead-magnet/SKILL.md +0 -393
  198. package/bundled-skills/learning-output-style/SKILL.md +0 -106
  199. package/bundled-skills/linear/SKILL.md +0 -13
  200. package/bundled-skills/lua-lsp/SKILL.md +0 -47
  201. package/bundled-skills/marketing-ideas/SKILL.md +0 -720
  202. package/bundled-skills/marketing-psychology/SKILL.md +0 -534
  203. package/bundled-skills/mcp-builder/SKILL.md +0 -369
  204. package/bundled-skills/meeting-insights-analyzer/SKILL.md +0 -347
  205. package/bundled-skills/memory-evolution-system/SKILL.md +0 -172
  206. package/bundled-skills/multi-lens-thinking/SKILL.md +0 -407
  207. package/bundled-skills/nano-banana-pro/SKILL.md +0 -116
  208. package/bundled-skills/newsletter/SKILL.md +0 -736
  209. package/bundled-skills/notebooklm/SKILL.md +0 -296
  210. package/bundled-skills/obsidian-bases/SKILL.md +0 -634
  211. package/bundled-skills/obsidian-markdown/SKILL.md +0 -651
  212. package/bundled-skills/onboarding-cro/SKILL.md +0 -494
  213. package/bundled-skills/page-cro/SKILL.md +0 -379
  214. package/bundled-skills/paid-ads/SKILL.md +0 -624
  215. package/bundled-skills/paywall-upgrade-cro/SKILL.md +0 -651
  216. package/bundled-skills/php-lsp/SKILL.md +0 -36
  217. package/bundled-skills/playwright/SKILL.md +0 -13
  218. package/bundled-skills/plugin-dev/SKILL.md +0 -434
  219. package/bundled-skills/popup-cro/SKILL.md +0 -520
  220. package/bundled-skills/positioning-angles/SKILL.md +0 -330
  221. package/bundled-skills/pr-review-toolkit/SKILL.md +0 -359
  222. package/bundled-skills/pricing-strategy/SKILL.md +0 -777
  223. package/bundled-skills/proactive-self-improving/SKILL.md +0 -435
  224. package/bundled-skills/programmatic-seo/SKILL.md +0 -714
  225. package/bundled-skills/pyright-lsp/SKILL.md +0 -43
  226. package/bundled-skills/quality-assurance-framework/SKILL.md +0 -168
  227. package/bundled-skills/question-refiner/SKILL.md +0 -160
  228. package/bundled-skills/ralph-loop/SKILL.md +0 -205
  229. package/bundled-skills/refactoring-expert/SKILL.md +0 -103
  230. package/bundled-skills/referral-program/SKILL.md +0 -668
  231. package/bundled-skills/research-executor/SKILL.md +0 -164
  232. package/bundled-skills/review-with-security/SKILL.md +0 -12
  233. package/bundled-skills/rust-analyzer-lsp/SKILL.md +0 -50
  234. package/bundled-skills/schema-markup/SKILL.md +0 -647
  235. package/bundled-skills/security-audit-expert/SKILL.md +0 -124
  236. package/bundled-skills/security-expert/SKILL.md +0 -140
  237. package/bundled-skills/security-guidance/SKILL.md +0 -13
  238. package/bundled-skills/seedance-prompt/SKILL.md +0 -139
  239. package/bundled-skills/self-evolution/SKILL.md +0 -1160
  240. package/bundled-skills/seo-audit/SKILL.md +0 -432
  241. package/bundled-skills/seo-content/SKILL.md +0 -787
  242. package/bundled-skills/serena/SKILL.md +0 -13
  243. package/bundled-skills/signup-flow-cro/SKILL.md +0 -409
  244. package/bundled-skills/skill-manager/SKILL.md +0 -226
  245. package/bundled-skills/skill-share/SKILL.md +0 -98
  246. package/bundled-skills/slack/SKILL.md +0 -13
  247. package/bundled-skills/social-content/SKILL.md +0 -878
  248. package/bundled-skills/spec-flow-skill/SKILL.md +0 -124
  249. package/bundled-skills/stripe/SKILL.md +0 -13
  250. package/bundled-skills/supabase/SKILL.md +0 -13
  251. package/bundled-skills/swift-lsp/SKILL.md +0 -40
  252. package/bundled-skills/synthesizer/SKILL.md +0 -236
  253. package/bundled-skills/template-skill/SKILL.md +0 -16
  254. package/bundled-skills/theme-factory/SKILL.md +0 -72
  255. package/bundled-skills/tiktok-research/SKILL.md +0 -208
  256. package/bundled-skills/typescript-lsp/SKILL.md +0 -36
  257. package/bundled-skills/ui-ux-pro-max/SKILL.md +0 -247
  258. package/bundled-skills/visual-prompt-engineer/SKILL.md +0 -102
  259. package/bundled-skills/webapp-testing/SKILL.md +0 -111
  260. package/bundled-skills/wide-research/SKILL.md +0 -191
@@ -1,13 +0,0 @@
1
- ---
2
- id: "serena"
3
- title: "serena"
4
- category: "other"
5
- tags: ["serena"]
6
- triggers: []
7
- dependencies: []
8
- source: "E:/Bobo's Coding cache/.claude/skills/serena"
9
- ---
10
-
11
- # serena
12
-
13
- Skill directory: serena
@@ -1,409 +0,0 @@
1
- ---
2
- id: "signup-flow-cro"
3
- title: "Signup Flow CRO"
4
- category: "marketing"
5
- tags: ["signup flow cro", "initial assessment", "core principles", "field-by-field optimization", "single-step vs. multi-step", "trust and friction reduction", "mobile signup optimization", "post-submit experience", "measurement", "output format"]
6
- triggers: []
7
- dependencies: []
8
- source: "E:/Bobo's Coding cache/.claude/skills/signup-flow-cro"
9
- ---
10
-
11
- ---
12
- name: signup-flow-cro
13
- description: When the user wants to optimize signup, registration, account creation, or trial activation flows. Also use when the user mentions "signup conversions," "registration friction," "signup form optimization," "free trial signup," "reduce signup dropoff," or "account creation flow." For post-signup onboarding, see onboarding-cro. For lead capture forms (not account creation), see form-cro.
14
- ---
15
-
16
- # Signup Flow CRO
17
-
18
- You are an expert in optimizing signup and registration flows. Your goal is to reduce friction, increase completion rates, and set users up for successful activation.
19
-
20
- ## Initial Assessment
21
-
22
- Before providing recommendations, understand:
23
-
24
- 1. **Flow Type**
25
- - Free trial signup
26
- - Freemium account creation
27
- - Paid account creation
28
- - Waitlist/early access signup
29
- - B2B vs B2C
30
-
31
- 2. **Current State**
32
- - How many steps/screens?
33
- - What fields are required?
34
- - What's the current completion rate?
35
- - Where do users drop off?
36
-
37
- 3. **Business Constraints**
38
- - What data is genuinely needed at signup?
39
- - Are there compliance requirements?
40
- - What happens immediately after signup?
41
-
42
- ---
43
-
44
- ## Core Principles
45
-
46
- ### 1. Minimize Required Fields
47
-
48
- Every field reduces conversion. For each field, ask:
49
-
50
- - Do we absolutely need this before they can use the product?
51
- - Can we collect this later through progressive profiling?
52
- - Can we infer this from other data?
53
-
54
- **Typical field priority:**
55
-
56
- - Essential: Email (or phone), Password
57
- - Often needed: Name
58
- - Usually deferrable: Company, Role, Team size, Phone, Address
59
-
60
- ### 2. Show Value Before Asking for Commitment
61
-
62
- - What can you show/give before requiring signup?
63
- - Can they experience the product before creating an account?
64
- - Reverse the order: value first, signup second
65
-
66
- ### 3. Reduce Perceived Effort
67
-
68
- - Show progress if multi-step
69
- - Group related fields
70
- - Use smart defaults
71
- - Pre-fill when possible
72
-
73
- ### 4. Remove Uncertainty
74
-
75
- - Clear expectations ("Takes 30 seconds")
76
- - Show what happens after signup
77
- - No surprises (hidden requirements, unexpected steps)
78
-
79
- ---
80
-
81
- ## Field-by-Field Optimization
82
-
83
- ### Email Field
84
-
85
- - Single field (no email confirmation field)
86
- - Inline validation for format
87
- - Check for common typos (gmial.com → gmail.com)
88
- - Clear error messages
89
-
90
- ### Password Field
91
-
92
- - Show password toggle (eye icon)
93
- - Show requirements upfront, not after failure
94
- - Consider passphrase hints for strength
95
- - Update requirement indicators in real-time
96
-
97
- **Better password UX:**
98
-
99
- - Allow paste (don't disable)
100
- - Show strength meter instead of rigid rules
101
- - Consider passwordless options
102
-
103
- ### Name Field
104
-
105
- - Single "Full name" field vs. First/Last split (test this)
106
- - Only require if immediately used (personalization)
107
- - Consider making optional
108
-
109
- ### Social Auth Options
110
-
111
- - Place prominently (often higher conversion than email)
112
- - Show most relevant options for your audience
113
- - B2C: Google, Apple, Facebook
114
- - B2B: Google, Microsoft, SSO
115
- - Clear visual separation from email signup
116
- - Consider "Sign up with Google" as primary
117
-
118
- ### Phone Number
119
-
120
- - Defer unless essential (SMS verification, calling leads)
121
- - If required, explain why
122
- - Use proper input type with country code handling
123
- - Format as they type
124
-
125
- ### Company/Organization
126
-
127
- - Defer if possible
128
- - Auto-suggest as they type
129
- - Infer from email domain when possible
130
-
131
- ### Use Case / Role Questions
132
-
133
- - Defer to onboarding if possible
134
- - If needed at signup, keep to one question
135
- - Use progressive disclosure (don't show all options at once)
136
-
137
- ---
138
-
139
- ## Single-Step vs. Multi-Step
140
-
141
- ### Single-Step Works When:
142
-
143
- - 3 or fewer fields
144
- - Simple B2C products
145
- - High-intent visitors (from ads, waitlist)
146
-
147
- ### Multi-Step Works When:
148
-
149
- - More than 3-4 fields needed
150
- - Complex B2B products needing segmentation
151
- - You need to collect different types of info
152
-
153
- ### Multi-Step Best Practices
154
-
155
- - Show progress indicator
156
- - Lead with easy questions (name, email)
157
- - Put harder questions later (after psychological commitment)
158
- - Each step should feel completable in seconds
159
- - Allow back navigation
160
- - Save progress (don't lose data on refresh)
161
-
162
- **Progressive commitment pattern:**
163
-
164
- 1. Email only (lowest barrier)
165
- 2. Password + name
166
- 3. Customization questions (optional)
167
-
168
- ---
169
-
170
- ## Trust and Friction Reduction
171
-
172
- ### At the Form Level
173
-
174
- - "No credit card required" (if true)
175
- - "Free forever" or "14-day free trial"
176
- - Privacy note: "We'll never share your email"
177
- - Security badges if relevant
178
- - Testimonial near signup form
179
-
180
- ### Error Handling
181
-
182
- - Inline validation (not just on submit)
183
- - Specific error messages ("Email already registered" + recovery path)
184
- - Don't clear the form on error
185
- - Focus on the problem field
186
-
187
- ### Microcopy
188
-
189
- - Placeholder text: Use for examples, not labels
190
- - Labels: Always visible (not just placeholders)
191
- - Help text: Only when needed, placed close to field
192
-
193
- ---
194
-
195
- ## Mobile Signup Optimization
196
-
197
- - Larger touch targets (44px+ height)
198
- - Appropriate keyboard types (email, tel, etc.)
199
- - Autofill support
200
- - Reduce typing (social auth, pre-fill)
201
- - Single column layout
202
- - Sticky CTA button
203
- - Test with actual devices
204
-
205
- ---
206
-
207
- ## Post-Submit Experience
208
-
209
- ### Success State
210
-
211
- - Clear confirmation
212
- - Immediate next step
213
- - If email verification required:
214
- - Explain what to do
215
- - Easy resend option
216
- - Check spam reminder
217
- - Option to change email if wrong
218
-
219
- ### Verification Flows
220
-
221
- - Consider delaying verification until necessary
222
- - Magic link as alternative to password
223
- - Let users explore while awaiting verification
224
- - Clear re-engagement if verification stalls
225
-
226
- ---
227
-
228
- ## Measurement
229
-
230
- ### Key Metrics
231
-
232
- - Form start rate (landed → started filling)
233
- - Form completion rate (started → submitted)
234
- - Field-level drop-off (which fields lose people)
235
- - Time to complete
236
- - Error rate by field
237
- - Mobile vs. desktop completion
238
-
239
- ### What to Track
240
-
241
- - Each field interaction (focus, blur, error)
242
- - Step progression in multi-step
243
- - Social auth vs. email signup ratio
244
- - Time between steps
245
-
246
- ---
247
-
248
- ## Output Format
249
-
250
- ### Audit Findings
251
-
252
- For each issue found:
253
-
254
- - **Issue**: What's wrong
255
- - **Impact**: Why it matters (with estimated impact if possible)
256
- - **Fix**: Specific recommendation
257
- - **Priority**: High/Medium/Low
258
-
259
- ### Recommended Changes
260
-
261
- Organized by:
262
-
263
- 1. Quick wins (same-day fixes)
264
- 2. High-impact changes (week-level effort)
265
- 3. Test hypotheses (things to A/B test)
266
-
267
- ### Form Redesign (if requested)
268
-
269
- - Recommended field set with rationale
270
- - Field order
271
- - Copy for labels, placeholders, buttons, errors
272
- - Visual layout suggestions
273
-
274
- ---
275
-
276
- ## Common Signup Flow Patterns
277
-
278
- ### B2B SaaS Trial
279
-
280
- 1. Email + Password (or Google auth)
281
- 2. Name + Company (optional: role)
282
- 3. → Onboarding flow
283
-
284
- ### B2C App
285
-
286
- 1. Google/Apple auth OR Email
287
- 2. → Product experience
288
- 3. Profile completion later
289
-
290
- ### Waitlist/Early Access
291
-
292
- 1. Email only
293
- 2. Optional: Role/use case question
294
- 3. → Waitlist confirmation
295
-
296
- ### E-commerce Account
297
-
298
- 1. Guest checkout as default
299
- 2. Account creation optional post-purchase
300
- 3. OR Social auth with single click
301
-
302
- ---
303
-
304
- ## Experiment Ideas
305
-
306
- ### Form Design Experiments
307
-
308
- **Layout & Structure**
309
-
310
- - Single-step vs. multi-step signup flow
311
- - Multi-step with progress bar vs. without
312
- - 1-column vs. 2-column field layout
313
- - Form embedded on page vs. separate signup page
314
- - Horizontal vs. vertical field alignment
315
-
316
- **Field Optimization**
317
-
318
- - Reduce to minimum fields (email + password only)
319
- - Add or remove phone number field
320
- - Single "Name" field vs. "First/Last" split
321
- - Add or remove company/organization field
322
- - Test required vs. optional field balance
323
-
324
- **Authentication Options**
325
-
326
- - Add SSO options (Google, Microsoft, GitHub, LinkedIn)
327
- - SSO prominent vs. email form prominent
328
- - Test which SSO options resonate (varies by audience)
329
- - SSO-only vs. SSO + email option
330
-
331
- **Visual Design**
332
-
333
- - Test button colors and sizes for CTA prominence
334
- - Plain background vs. product-related visuals
335
- - Test form container styling (card vs. minimal)
336
- - Mobile-optimized layout testing
337
-
338
- ---
339
-
340
- ### Copy & Messaging Experiments
341
-
342
- **Headlines & CTAs**
343
-
344
- - Test headline variations above signup form
345
- - CTA button text: "Create Account" vs. "Start Free Trial" vs. "Get Started"
346
- - Add clarity around trial length in CTA
347
- - Test value proposition emphasis in form header
348
-
349
- **Microcopy**
350
-
351
- - Field labels: minimal vs. descriptive
352
- - Placeholder text optimization
353
- - Error message clarity and tone
354
- - Password requirement display (upfront vs. on error)
355
-
356
- **Trust Elements**
357
-
358
- - Add social proof next to signup form
359
- - Test trust badges near form (security, compliance)
360
- - Add "No credit card required" messaging
361
- - Include privacy assurance copy
362
-
363
- ---
364
-
365
- ### Trial & Commitment Experiments
366
-
367
- **Free Trial Variations**
368
-
369
- - Credit card required vs. not required for trial
370
- - Test trial length impact (7 vs. 14 vs. 30 days)
371
- - Freemium vs. free trial model
372
- - Trial with limited features vs. full access
373
-
374
- **Friction Points**
375
-
376
- - Email verification required vs. delayed vs. removed
377
- - Test CAPTCHA impact on completion
378
- - Terms acceptance checkbox vs. implicit acceptance
379
- - Phone verification for high-value accounts
380
-
381
- ---
382
-
383
- ### Post-Submit Experiments
384
-
385
- - Clear next steps messaging after signup
386
- - Instant product access vs. email confirmation first
387
- - Personalized welcome message based on signup data
388
- - Auto-login after signup vs. require login
389
-
390
- ---
391
-
392
- ## Questions to Ask
393
-
394
- If you need more context:
395
-
396
- 1. What's your current signup completion rate?
397
- 2. Do you have field-level analytics on drop-off?
398
- 3. What data is absolutely required before they can use the product?
399
- 4. Are there compliance or verification requirements?
400
- 5. What happens immediately after signup?
401
-
402
- ---
403
-
404
- ## Related Skills
405
-
406
- - **onboarding-cro**: For optimizing what happens after signup
407
- - **form-cro**: For non-signup forms (lead capture, contact)
408
- - **page-cro**: For the landing page leading to signup
409
- - **ab-test-setup**: For testing signup flow changes
@@ -1,226 +0,0 @@
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