aiblueprint-cli 1.4.82 → 1.4.84

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 (32) hide show
  1. package/README.md +4 -1
  2. package/agents-config/skills/apex/SKILL.md +61 -0
  3. package/agents-config/skills/app-icon/SKILL.md +161 -0
  4. package/agents-config/skills/appstore-connect/SKILL.md +2 -2
  5. package/agents-config/skills/{appstore-connect-setup/SKILL.md → appstore-connect/references/setup.md} +3 -6
  6. package/agents-config/skills/ios-testflight/SKILL.md +2 -2
  7. package/dist/cli.js +39 -38
  8. package/package.json +1 -1
  9. package/agents-config/skills/create-vitejs-app/SKILL.md +0 -273
  10. package/agents-config/skills/nextjs-add-prisma-db/SKILL.md +0 -137
  11. package/agents-config/skills/nextjs-setup-better-auth/SKILL.md +0 -174
  12. package/agents-config/skills/nextjs-setup-project/SKILL.md +0 -201
  13. package/agents-config/skills/saas-challenge-idea/SKILL.md +0 -136
  14. package/agents-config/skills/saas-create-architecture/SKILL.md +0 -243
  15. package/agents-config/skills/saas-create-headline/SKILL.md +0 -133
  16. package/agents-config/skills/saas-create-landing-copywritting/SKILL.md +0 -268
  17. package/agents-config/skills/saas-create-legals-docs/SKILL.md +0 -177
  18. package/agents-config/skills/saas-create-logos/SKILL.md +0 -241
  19. package/agents-config/skills/saas-create-prd/SKILL.md +0 -196
  20. package/agents-config/skills/saas-create-tasks/SKILL.md +0 -241
  21. package/agents-config/skills/saas-define-pricing/SKILL.md +0 -294
  22. package/agents-config/skills/saas-find-domain-name/SKILL.md +0 -191
  23. package/agents-config/skills/saas-implement-landing-page/SKILL.md +0 -258
  24. package/agents-config/skills/setup-tmux/SKILL.md +0 -165
  25. /package/agents-config/skills/{agents-managers → agents-manager}/SKILL.md +0 -0
  26. /package/agents-config/skills/{agents-managers → agents-manager}/references/agents.md +0 -0
  27. /package/agents-config/skills/{agents-managers → agents-manager}/references/context-management.md +0 -0
  28. /package/agents-config/skills/{agents-managers → agents-manager}/references/debugging-agents.md +0 -0
  29. /package/agents-config/skills/{agents-managers → agents-manager}/references/error-handling-and-recovery.md +0 -0
  30. /package/agents-config/skills/{agents-managers → agents-manager}/references/evaluation-and-testing.md +0 -0
  31. /package/agents-config/skills/{agents-managers → agents-manager}/references/orchestration-patterns.md +0 -0
  32. /package/agents-config/skills/{agents-managers → agents-manager}/references/writing-agent-prompts.md +0 -0
@@ -1,258 +0,0 @@
1
- ---
2
- name: saas-implement-landing-page
3
- description: Implement a production-ready landing page from specification using shadcn/ui components
4
- ---
5
-
6
- <objective>
7
- Implement a complete, production-ready landing page from a markdown specification file using high-quality Shadcn UI components.
8
-
9
- This comes AFTER the PRD, ARCHI, and LANDING_PAGE copywriting. Transform the specification into a fully functional, modern landing page using the Shadcn UI ecosystem.
10
- </objective>
11
-
12
- <role>
13
- You are a senior frontend developer and design systems specialist with 10+ years experience building production-ready landing pages using modern UI components and design patterns.
14
- </role>
15
-
16
- <context>
17
- Project structure: !`ls -la`
18
- Existing components: !`ls src/components/ 2>/dev/null || ls components/ 2>/dev/null || echo "No components folder"`
19
- CSS variables: !`cat app/globals.css 2>/dev/null | head -50 || cat src/app/globals.css 2>/dev/null | head -50 || echo "No globals.css"`
20
- </context>
21
-
22
- <process>
23
- ## Phase 1: Read Specification
24
-
25
- 1. **Ask for spec file location**:
26
- > "Please provide the path to your landing page specification file (LANDING_PAGE.md)."
27
-
28
- 2. **Read and extract from spec**:
29
- - Sections needed (Hero, Features, Pricing, FAQ, etc.)
30
- - Content (headlines, descriptions, CTAs, images)
31
- - Design preferences (colors, style, brand)
32
- - Target audience
33
-
34
- 3. **STOP if spec is missing** - Ask user for complete specification
35
-
36
- ## Phase 2: Analyze Project
37
-
38
- 4. **Ask for project location** if not provided
39
-
40
- 5. **Explore project structure** (use Glob):
41
- - `**/*.tsx` - existing components
42
- - `**/globals.css` - styling and CSS variables
43
- - `**/tsconfig.json` - path aliases
44
- - `components.json` - shadcn setup
45
-
46
- 6. **Read key config files**:
47
- - `tsconfig.json` - path aliases (@/*)
48
- - `app/globals.css` - CSS variables and theme
49
-
50
- 7. **Document findings**:
51
- - Framework version (Next.js 14/15)
52
- - Component organization pattern
53
- - Existing UI components
54
- - Path aliases and imports
55
-
56
- ## Phase 3: Research Components
57
-
58
- 8. **Use MCP Context7** to research Shadcn UI:
59
- - `mcp__context7__resolve-library-id` with "shadcn-ui"
60
- - `mcp__context7__get-library-docs` for component patterns
61
-
62
- 9. **Component source hierarchy** (priority order):
63
- - **Official Shadcn UI** (ui.shadcn.com) - Base components
64
- - **Shadcn UI Blocks** (shadcn-ui-blocks.akashmoradiya.com) - Pre-built sections
65
- - **Coss.com** (coss.com/origin) - Modern components
66
- - **Aceternity UI** (ui.aceternity.com) - Advanced effects (selective use)
67
-
68
- 10. **Create `landing-page-components.md`** documenting:
69
- - Component source for each section
70
- - Installation command
71
- - Customization notes
72
-
73
- ## Phase 4: Configure Theme
74
-
75
- 11. **Configure CSS variables** in `app/globals.css` based on spec brand colors:
76
- ```css
77
- :root {
78
- --primary: /* brand primary */;
79
- --secondary: /* brand secondary */;
80
- }
81
- ```
82
-
83
- 12. **Ensure contrast** - 4.5:1 for text (WCAG AA)
84
-
85
- ## Phase 5: Install Components
86
-
87
- 13. **Install base components**:
88
- ```bash
89
- npx shadcn@latest add button card input label badge separator
90
- npx shadcn@latest add navigation-menu dropdown-menu sheet
91
- npx shadcn@latest add accordion dialog
92
- ```
93
-
94
- 14. **Install section-specific components** from blocks:
95
- ```bash
96
- npx shadcn add https://shadcn-ui-blocks.akashmoradiya.com/r/hero-03.json
97
- npx shadcn add https://shadcn-ui-blocks.akashmoradiya.com/r/features-01.json
98
- ```
99
-
100
- ## Phase 6: Build Sections
101
-
102
- 15. **Create component files** in `src/features/landing/` (or match existing structure):
103
-
104
- **Navigation** (`navbar.tsx`):
105
- - Logo, nav links, mobile menu
106
- - Sticky header with backdrop blur
107
- - CTA button
108
-
109
- **Hero** (`hero.tsx`):
110
- - Headline from spec (H1)
111
- - Subheadline (H2)
112
- - Primary/secondary CTAs
113
- - Hero image with next/image
114
-
115
- **Features** (`features.tsx`):
116
- - Section headline
117
- - Feature cards with icons (lucide-react)
118
- - Grid layout (3 columns desktop)
119
-
120
- **Social Proof** (`testimonials.tsx`) - if in spec:
121
- - Testimonial cards
122
- - Logo cloud
123
- - Statistics
124
-
125
- **Pricing** (`pricing.tsx`) - if in spec:
126
- - Pricing tiers with Card component
127
- - Feature lists with checkmarks
128
- - Popular tier highlight
129
- - CTA buttons
130
-
131
- **FAQ** (`faq.tsx`) - if in spec:
132
- - Accordion component
133
- - All questions from spec
134
-
135
- **CTA** (`cta.tsx`):
136
- - Compelling headline
137
- - Action buttons
138
- - Background styling
139
-
140
- **Footer** (`footer.tsx`):
141
- - Navigation columns
142
- - Social links (lucide-react icons)
143
- - Legal links
144
- - Copyright
145
-
146
- ## Phase 7: Assemble Page
147
-
148
- 16. **Update `app/page.tsx`**:
149
- ```typescript
150
- import { Navbar } from "@/features/landing/navbar"
151
- import { Hero } from "@/features/landing/hero"
152
- import { Features } from "@/features/landing/features"
153
- // ... other imports
154
-
155
- export default function HomePage() {
156
- return (
157
- <>
158
- <Navbar />
159
- <main>
160
- <Hero />
161
- <Features />
162
- {/* Other sections */}
163
- </main>
164
- <Footer />
165
- </>
166
- )
167
- }
168
- ```
169
-
170
- 17. **Add smooth scrolling** in `globals.css`:
171
- ```css
172
- html { scroll-behavior: smooth; }
173
- ```
174
-
175
- ## Phase 8: Quality Assurance
176
-
177
- 18. **Mobile responsiveness**:
178
- - Test at 375px (iPhone SE)
179
- - Verify touch targets (44x44px min)
180
- - Check text readability (16px min)
181
- - Test mobile navigation
182
-
183
- 19. **Accessibility audit**:
184
- - Tab through entire page
185
- - Verify heading hierarchy (h1 → h2 → h3)
186
- - Check alt text on images
187
- - Verify color contrast
188
- - Add ARIA labels on icon buttons
189
-
190
- 20. **Performance optimization**:
191
- - Use next/image with width/height
192
- - Add `priority` to hero image
193
- - Use `loading="lazy"` below fold
194
-
195
- 21. **Final verification**:
196
- ```bash
197
- pnpm format
198
- pnpm lint
199
- pnpm ts
200
- pnpm build
201
- ```
202
- </process>
203
-
204
- <constraints>
205
- **DESIGN STANDARDS**:
206
- - Modern, contemporary design (not dated Bootstrap-style)
207
- - Mobile-first responsive approach
208
- - WCAG 2.1 AA accessibility compliance
209
- - Lighthouse score 90+ target
210
-
211
- **CODE QUALITY**:
212
- - Follow existing project conventions
213
- - Use path aliases (@/components, @/features)
214
- - TypeScript strict mode
215
- - No placeholder content - use real spec content
216
-
217
- **COMPONENT RULES**:
218
- - Prioritize official Shadcn UI components
219
- - Use next/image for all images
220
- - Use next/font for typography
221
- - Respect existing component patterns
222
-
223
- **NEVER**:
224
- - Overwrite existing components without understanding
225
- - Use placeholder text instead of spec content
226
- - Skip mobile responsiveness
227
- - Ignore accessibility requirements
228
- - Add unused dependencies
229
- </constraints>
230
-
231
- <output>
232
- **Files created in `src/features/landing/`** (or matching structure):
233
- - `navbar.tsx` - Navigation header
234
- - `hero.tsx` - Hero section
235
- - `features.tsx` - Features grid
236
- - `pricing.tsx` - Pricing tiers (if in spec)
237
- - `faq.tsx` - FAQ accordion (if in spec)
238
- - `cta.tsx` - Call-to-action sections
239
- - `footer.tsx` - Footer navigation
240
-
241
- **Documentation**:
242
- - `landing-page-components.md` - Component sources and customizations
243
-
244
- **Updated files**:
245
- - `app/page.tsx` - Assembled landing page
246
- - `app/globals.css` - Theme variables and brand colors
247
- </output>
248
-
249
- <success_criteria>
250
- - All spec sections implemented with real content (not placeholders)
251
- - Mobile responsive on all breakpoints (375px, 768px, 1024px, 1440px)
252
- - WCAG 2.1 AA accessible (keyboard nav, contrast, alt text)
253
- - Lighthouse performance score 90+
254
- - All links and CTAs functional
255
- - No console errors
256
- - Build passes without warnings
257
- - Matches spec design preferences and brand colors
258
- </success_criteria>
@@ -1,165 +0,0 @@
1
- ---
2
- name: setup-tmux
3
- description: Install and configure tmux with Ghostty on macOS using a minimalist keyboard-first setup.
4
- ---
5
-
6
- Install and configure tmux with Ghostty on macOS. This sets up a minimalist tmux with direct keyboard shortcuts (no prefix needed for common actions), auto-naming tabs, session persistence, and a clean status bar.
7
-
8
- ## Step 1: Install tmux
9
-
10
- ```bash
11
- brew install tmux
12
- ```
13
-
14
- ## Step 2: Install TPM (plugin manager)
15
-
16
- ```bash
17
- git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
18
- ```
19
-
20
- ## Step 3: Write `~/.tmux.conf`
21
-
22
- ```
23
- # Mouse
24
- set -g mouse on
25
-
26
- # Start at 1
27
- set -g base-index 1
28
- setw -g pane-base-index 1
29
-
30
- # Prefix = Ctrl+A
31
- unbind C-b
32
- set -g prefix C-a
33
- bind C-a send-prefix
34
-
35
- # Visual feedback when prefix is pressed
36
- set -g status-left '#{?client_prefix,#[fg=green bold] TMUX ,}'
37
-
38
- # Actions (Ctrl+A puis...)
39
- bind c new-window -c "#{pane_current_path}"
40
- bind s split-window -h -c "#{pane_current_path}"
41
- bind d split-window -v -c "#{pane_current_path}"
42
- bind w kill-pane
43
- bind r command-prompt -I "#W" "rename-window '%%'"
44
- bind f copy-mode
45
- bind h list-keys
46
-
47
- # Switch panes (no prefix)
48
- bind -n M-Left select-pane -L
49
- bind -n M-Right select-pane -R
50
- bind -n M-Up select-pane -U
51
- bind -n M-Down select-pane -D
52
-
53
- # Switch windows (no prefix)
54
- bind -n S-Left previous-window
55
- bind -n S-Right next-window
56
-
57
- # Settings
58
- set -g history-limit 50000
59
- set -sg escape-time 0
60
- set -g default-terminal "screen-256color"
61
- set -ag terminal-overrides ",xterm-256color:RGB"
62
- set -g renumber-windows on
63
-
64
- # Minimal status bar
65
- set -g status-position bottom
66
- set -g status-style 'bg=default fg=#555555'
67
- set -g status-right '#[fg=#555555]#S'
68
- set -g allow-rename on
69
- set -g set-titles on
70
- set -g set-titles-string '#{pane_title}'
71
- setw -g automatic-rename on
72
- setw -g automatic-rename-format '#{pane_title}'
73
- setw -g window-status-format '#[fg=#555555] #I:#W'
74
- setw -g window-status-current-format '#[fg=white,bold] #I:#W'
75
- set -g status-justify left
76
-
77
- # Pane borders
78
- set -g pane-border-style 'fg=#333333'
79
- set -g pane-active-border-style 'fg=#555555'
80
-
81
- # Plugins
82
- set -g @plugin 'tmux-plugins/tpm'
83
- set -g @plugin 'tmux-plugins/tmux-resurrect'
84
- set -g @plugin 'tmux-plugins/tmux-continuum'
85
- set -g @plugin 'tmux-plugins/tmux-yank'
86
-
87
- set -g @resurrect-capture-pane-contents 'on'
88
- set -g @continuum-restore 'on'
89
-
90
- run '~/.tmux/plugins/tpm/tpm'
91
- ```
92
-
93
- ## Step 4: Add Ghostty keybinds
94
-
95
- Add these lines to `~/Library/Application Support/com.mitchellh.ghostty/config`:
96
-
97
- ```
98
- keybind = ctrl+shift+t=text:\x01c
99
- keybind = ctrl+shift+s=text:\x01s
100
- keybind = ctrl+shift+d=text:\x01d
101
- keybind = ctrl+shift+w=text:\x01w
102
- keybind = ctrl+shift+r=text:\x01r
103
- macos-option-as-alt = left
104
- ```
105
-
106
- `macos-option-as-alt = left` is required for Alt+Arrow pane switching to work.
107
-
108
- ## Step 5: Install plugins
109
-
110
- ```bash
111
- ~/.tmux/plugins/tpm/bin/install_plugins
112
- ```
113
-
114
- ## Step 6: Reload
115
-
116
- ```bash
117
- tmux source-file ~/.tmux.conf
118
- ```
119
-
120
- Then restart Ghostty (Cmd+Q and reopen).
121
-
122
- ## Shortcuts
123
-
124
- ### Direct shortcuts (no prefix)
125
-
126
- | Action | Shortcut |
127
- | --- | --- |
128
- | New tab | `Ctrl+Shift+T` |
129
- | Split côte à côte | `Ctrl+Shift+S` |
130
- | Split haut/bas | `Ctrl+Shift+D` |
131
- | Fermer pane | `Ctrl+Shift+W` |
132
- | Renommer tab | `Ctrl+Shift+R` |
133
- | Changer de pane | `Alt + Flèches` |
134
- | Changer de tab | `Shift + Left/Right` |
135
- | Scroll | Molette souris |
136
-
137
- ### Prefix shortcuts (Ctrl+A puis...)
138
-
139
- When you press Ctrl+A, " TMUX " appears in green = tmux is listening.
140
-
141
- | Touche | Action |
142
- | --- | --- |
143
- | `c` | nouveau tab |
144
- | `s` | split côte à côte |
145
- | `d` | split haut/bas |
146
- | `w` | fermer pane |
147
- | `r` | renommer tab |
148
- | `f` | mode scroll |
149
- | `h` | voir tous les raccourcis |
150
- | `1-9` | aller au tab N |
151
-
152
- ### Sessions
153
-
154
- | Action | Command |
155
- | --- | --- |
156
- | Nouvelle session | `tmux new -s nom` |
157
- | Lister sessions | `tmux ls` |
158
- | Se rattacher | `tmux a` |
159
- | Détacher | `Ctrl+A` puis `d` |
160
-
161
- ## Plugins installed
162
-
163
- - **tmux-resurrect**: save/restore sessions (survives reboot)
164
- - **tmux-continuum**: auto-restore last session on launch
165
- - **tmux-yank**: copy in tmux goes to system clipboard