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.
- package/README.md +52 -9
- package/bundled-skills/CORE_SKILLS.txt +18 -0
- package/dist/agent.js +91 -51
- package/dist/agent.js.map +1 -1
- package/dist/agents/catalog.d.ts +40 -0
- package/dist/agents/catalog.js +172 -0
- package/dist/agents/catalog.js.map +1 -0
- package/dist/agents/index.d.ts +6 -0
- package/dist/agents/index.js +4 -0
- package/dist/agents/index.js.map +1 -0
- package/dist/agents/router.d.ts +43 -0
- package/dist/agents/router.js +87 -0
- package/dist/agents/router.js.map +1 -0
- package/dist/agents/spawn.d.ts +46 -0
- package/dist/agents/spawn.js +91 -0
- package/dist/agents/spawn.js.map +1 -0
- package/dist/autonomous.js +41 -1
- package/dist/autonomous.js.map +1 -1
- package/dist/cli.d.ts +8 -0
- package/dist/cli.js +669 -0
- package/dist/cli.js.map +1 -0
- package/dist/compactor.d.ts +49 -4
- package/dist/compactor.js +164 -17
- package/dist/compactor.js.map +1 -1
- package/dist/completer.js +2 -0
- package/dist/completer.js.map +1 -1
- package/dist/config.js +3 -2
- package/dist/config.js.map +1 -1
- package/dist/cost-tracker.js +36 -2
- package/dist/cost-tracker.js.map +1 -1
- package/dist/dream.d.ts +42 -0
- package/dist/dream.js +324 -0
- package/dist/dream.js.map +1 -0
- package/dist/hooks.d.ts +1 -1
- package/dist/hooks.js +7 -2
- package/dist/hooks.js.map +1 -1
- package/dist/index.js +10 -1136
- package/dist/index.js.map +1 -1
- package/dist/insight.js +4 -11
- package/dist/insight.js.map +1 -1
- package/dist/knowledge.d.ts +13 -0
- package/dist/knowledge.js +16 -4
- package/dist/knowledge.js.map +1 -1
- package/dist/mcp-client.js +59 -41
- package/dist/mcp-client.js.map +1 -1
- package/dist/memory.d.ts +4 -0
- package/dist/memory.js +30 -18
- package/dist/memory.js.map +1 -1
- package/dist/project.js +2 -1
- package/dist/project.js.map +1 -1
- package/dist/providers.js +1 -1
- package/dist/providers.js.map +1 -1
- package/dist/repl.d.ts +16 -0
- package/dist/repl.js +704 -0
- package/dist/repl.js.map +1 -0
- package/dist/sessions.js +59 -3
- package/dist/sessions.js.map +1 -1
- package/dist/skill-router.js +2 -2
- package/dist/skill-router.js.map +1 -1
- package/dist/skills/composer.d.ts +18 -0
- package/dist/skills/composer.js +59 -0
- package/dist/skills/composer.js.map +1 -0
- package/dist/skills/index.d.ts +3 -0
- package/dist/skills/index.js +3 -0
- package/dist/skills/index.js.map +1 -0
- package/dist/skills/loader.d.ts +12 -0
- package/dist/skills/loader.js +150 -0
- package/dist/skills/loader.js.map +1 -0
- package/dist/skills/types.d.ts +28 -0
- package/dist/skills/types.js +9 -0
- package/dist/skills/types.js.map +1 -0
- package/dist/skills.d.ts +1 -0
- package/dist/skills.js +10 -8
- package/dist/skills.js.map +1 -1
- package/dist/state/artifacts.d.ts +71 -0
- package/dist/state/artifacts.js +133 -0
- package/dist/state/artifacts.js.map +1 -0
- package/dist/state/index.d.ts +9 -0
- package/dist/state/index.js +7 -0
- package/dist/state/index.js.map +1 -0
- package/dist/state/manager.d.ts +89 -0
- package/dist/state/manager.js +132 -0
- package/dist/state/manager.js.map +1 -0
- package/dist/state/project-memory.d.ts +24 -0
- package/dist/state/project-memory.js +83 -0
- package/dist/state/project-memory.js.map +1 -0
- package/dist/state/recovery.d.ts +24 -0
- package/dist/state/recovery.js +95 -0
- package/dist/state/recovery.js.map +1 -0
- package/dist/statusbar.d.ts +1 -0
- package/dist/statusbar.js +12 -1
- package/dist/statusbar.js.map +1 -1
- package/dist/structured/loader.js +4 -2
- package/dist/structured/loader.js.map +1 -1
- package/dist/sub-agent-runner.d.ts +1 -0
- package/dist/sub-agent-runner.js +32 -5
- package/dist/sub-agent-runner.js.map +1 -1
- package/dist/sub-agents.d.ts +19 -1
- package/dist/sub-agents.js +142 -5
- package/dist/sub-agents.js.map +1 -1
- package/dist/tool-governance.d.ts +77 -0
- package/dist/tool-governance.js +366 -0
- package/dist/tool-governance.js.map +1 -0
- package/dist/tools/advanced.js +3 -2
- package/dist/tools/advanced.js.map +1 -1
- package/dist/tools/browser.js +2 -2
- package/dist/tools/browser.js.map +1 -1
- package/dist/tools/claude-code.js +2 -2
- package/dist/tools/claude-code.js.map +1 -1
- package/dist/tools/index.js +36 -12
- package/dist/tools/index.js.map +1 -1
- package/dist/tools/process-manager.js +2 -2
- package/dist/tools/process-manager.js.map +1 -1
- package/dist/ui/hud.d.ts +25 -0
- package/dist/ui/hud.js +67 -0
- package/dist/ui/hud.js.map +1 -0
- package/dist/verification-agent.d.ts +46 -0
- package/dist/verification-agent.js +533 -0
- package/dist/verification-agent.js.map +1 -0
- package/dist/watcher.js +2 -2
- package/dist/watcher.js.map +1 -1
- package/dist/web.js +1 -1
- package/dist/web.js.map +1 -1
- package/dist/workflows/ask.d.ts +13 -0
- package/dist/workflows/ask.js +66 -0
- package/dist/workflows/ask.js.map +1 -0
- package/dist/workflows/index.d.ts +5 -0
- package/dist/workflows/index.js +6 -0
- package/dist/workflows/index.js.map +1 -0
- package/dist/workflows/interview.d.ts +11 -0
- package/dist/workflows/interview.js +36 -0
- package/dist/workflows/interview.js.map +1 -0
- package/dist/workflows/plan.d.ts +13 -0
- package/dist/workflows/plan.js +34 -0
- package/dist/workflows/plan.js.map +1 -0
- package/dist/workflows/team.d.ts +17 -0
- package/dist/workflows/team.js +86 -0
- package/dist/workflows/team.js.map +1 -0
- package/dist/workflows/verify.d.ts +11 -0
- package/dist/workflows/verify.js +21 -0
- package/dist/workflows/verify.js.map +1 -0
- package/package.json +18 -5
- package/bundled-skills/Skill_Seekers/SKILL.md +0 -1722
- package/bundled-skills/ab-test-setup/SKILL.md +0 -557
- package/bundled-skills/adversarial-verification/SKILL.md +0 -95
- package/bundled-skills/agent-sdk-dev/SKILL.md +0 -238
- package/bundled-skills/agent-tools/SKILL.md +0 -136
- package/bundled-skills/analytics-tracking/SKILL.md +0 -597
- package/bundled-skills/artifacts-builder/SKILL.md +0 -89
- package/bundled-skills/asana/SKILL.md +0 -13
- package/bundled-skills/brand-voice/SKILL.md +0 -481
- package/bundled-skills/browser-use/SKILL.md +0 -419
- package/bundled-skills/cache-optimization-skill/SKILL.md +0 -179
- package/bundled-skills/canvas-design/SKILL.md +0 -147
- package/bundled-skills/citation-validator/SKILL.md +0 -203
- package/bundled-skills/clangd-lsp/SKILL.md +0 -52
- package/bundled-skills/code-simplifier/SKILL.md +0 -13
- package/bundled-skills/commit-commands/SKILL.md +0 -258
- package/bundled-skills/competitor-alternatives/SKILL.md +0 -795
- package/bundled-skills/content-atomizer/SKILL.md +0 -910
- package/bundled-skills/content-research-writer/SKILL.md +0 -605
- package/bundled-skills/context7/SKILL.md +0 -13
- package/bundled-skills/copy-editing/SKILL.md +0 -494
- package/bundled-skills/copywriting/SKILL.md +0 -510
- package/bundled-skills/csharp-lsp/SKILL.md +0 -40
- package/bundled-skills/decision-making-framework/SKILL.md +0 -154
- package/bundled-skills/deep-research/SKILL.md +0 -236
- package/bundled-skills/developer-growth-analysis/SKILL.md +0 -335
- package/bundled-skills/direct-response-copy/SKILL.md +0 -2336
- package/bundled-skills/docker-expert/SKILL.md +0 -229
- package/bundled-skills/document-skills/SKILL.md +0 -13
- package/bundled-skills/documentation-expert/SKILL.md +0 -126
- package/bundled-skills/email-sequence/SKILL.md +0 -1061
- package/bundled-skills/email-sequences/SKILL.md +0 -910
- package/bundled-skills/example-plugin/SKILL.md +0 -72
- package/bundled-skills/explanatory-output-style/SKILL.md +0 -82
- package/bundled-skills/feature-dev/SKILL.md +0 -458
- package/bundled-skills/file-organizer/SKILL.md +0 -466
- package/bundled-skills/firebase.disabled/SKILL.md +0 -13
- package/bundled-skills/form-cro/SKILL.md +0 -488
- package/bundled-skills/free-tool-strategy/SKILL.md +0 -636
- package/bundled-skills/frontend-design/SKILL.md +0 -41
- package/bundled-skills/frontend-design-offical/SKILL.md +0 -55
- package/bundled-skills/gitlab/SKILL.md +0 -13
- package/bundled-skills/gopls-lsp/SKILL.md +0 -32
- package/bundled-skills/got-controller/SKILL.md +0 -218
- package/bundled-skills/greptile/SKILL.md +0 -72
- package/bundled-skills/hookify/SKILL.md +0 -376
- package/bundled-skills/image-editor/SKILL.md +0 -189
- package/bundled-skills/image-enhancer/SKILL.md +0 -109
- package/bundled-skills/jdtls-lsp/SKILL.md +0 -49
- package/bundled-skills/json-canvas/SKILL.md +0 -654
- package/bundled-skills/keyword-research/SKILL.md +0 -559
- package/bundled-skills/kotlin-lsp/SKILL.md +0 -28
- package/bundled-skills/laravel-boost/SKILL.md +0 -13
- package/bundled-skills/launch-strategy/SKILL.md +0 -394
- package/bundled-skills/lead-magnet/SKILL.md +0 -393
- package/bundled-skills/learning-output-style/SKILL.md +0 -106
- package/bundled-skills/linear/SKILL.md +0 -13
- package/bundled-skills/lua-lsp/SKILL.md +0 -47
- package/bundled-skills/marketing-ideas/SKILL.md +0 -720
- package/bundled-skills/marketing-psychology/SKILL.md +0 -534
- package/bundled-skills/mcp-builder/SKILL.md +0 -369
- package/bundled-skills/meeting-insights-analyzer/SKILL.md +0 -347
- package/bundled-skills/memory-evolution-system/SKILL.md +0 -172
- package/bundled-skills/multi-lens-thinking/SKILL.md +0 -407
- package/bundled-skills/nano-banana-pro/SKILL.md +0 -116
- package/bundled-skills/newsletter/SKILL.md +0 -736
- package/bundled-skills/notebooklm/SKILL.md +0 -296
- package/bundled-skills/obsidian-bases/SKILL.md +0 -634
- package/bundled-skills/obsidian-markdown/SKILL.md +0 -651
- package/bundled-skills/onboarding-cro/SKILL.md +0 -494
- package/bundled-skills/page-cro/SKILL.md +0 -379
- package/bundled-skills/paid-ads/SKILL.md +0 -624
- package/bundled-skills/paywall-upgrade-cro/SKILL.md +0 -651
- package/bundled-skills/php-lsp/SKILL.md +0 -36
- package/bundled-skills/playwright/SKILL.md +0 -13
- package/bundled-skills/plugin-dev/SKILL.md +0 -434
- package/bundled-skills/popup-cro/SKILL.md +0 -520
- package/bundled-skills/positioning-angles/SKILL.md +0 -330
- package/bundled-skills/pr-review-toolkit/SKILL.md +0 -359
- package/bundled-skills/pricing-strategy/SKILL.md +0 -777
- package/bundled-skills/proactive-self-improving/SKILL.md +0 -435
- package/bundled-skills/programmatic-seo/SKILL.md +0 -714
- package/bundled-skills/pyright-lsp/SKILL.md +0 -43
- package/bundled-skills/quality-assurance-framework/SKILL.md +0 -168
- package/bundled-skills/question-refiner/SKILL.md +0 -160
- package/bundled-skills/ralph-loop/SKILL.md +0 -205
- package/bundled-skills/refactoring-expert/SKILL.md +0 -103
- package/bundled-skills/referral-program/SKILL.md +0 -668
- package/bundled-skills/research-executor/SKILL.md +0 -164
- package/bundled-skills/review-with-security/SKILL.md +0 -12
- package/bundled-skills/rust-analyzer-lsp/SKILL.md +0 -50
- package/bundled-skills/schema-markup/SKILL.md +0 -647
- package/bundled-skills/security-audit-expert/SKILL.md +0 -124
- package/bundled-skills/security-expert/SKILL.md +0 -140
- package/bundled-skills/security-guidance/SKILL.md +0 -13
- package/bundled-skills/seedance-prompt/SKILL.md +0 -139
- package/bundled-skills/self-evolution/SKILL.md +0 -1160
- package/bundled-skills/seo-audit/SKILL.md +0 -432
- package/bundled-skills/seo-content/SKILL.md +0 -787
- package/bundled-skills/serena/SKILL.md +0 -13
- package/bundled-skills/signup-flow-cro/SKILL.md +0 -409
- package/bundled-skills/skill-manager/SKILL.md +0 -226
- package/bundled-skills/skill-share/SKILL.md +0 -98
- package/bundled-skills/slack/SKILL.md +0 -13
- package/bundled-skills/social-content/SKILL.md +0 -878
- package/bundled-skills/spec-flow-skill/SKILL.md +0 -124
- package/bundled-skills/stripe/SKILL.md +0 -13
- package/bundled-skills/supabase/SKILL.md +0 -13
- package/bundled-skills/swift-lsp/SKILL.md +0 -40
- package/bundled-skills/synthesizer/SKILL.md +0 -236
- package/bundled-skills/template-skill/SKILL.md +0 -16
- package/bundled-skills/theme-factory/SKILL.md +0 -72
- package/bundled-skills/tiktok-research/SKILL.md +0 -208
- package/bundled-skills/typescript-lsp/SKILL.md +0 -36
- package/bundled-skills/ui-ux-pro-max/SKILL.md +0 -247
- package/bundled-skills/visual-prompt-engineer/SKILL.md +0 -102
- package/bundled-skills/webapp-testing/SKILL.md +0 -111
- package/bundled-skills/wide-research/SKILL.md +0 -191
|
@@ -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
|