agcel 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 (100) hide show
  1. package/.agent/workflows/api-gen.md +59 -0
  2. package/.agent/workflows/architect.md +44 -0
  3. package/.agent/workflows/brainstorm.md +223 -0
  4. package/.agent/workflows/build.md +38 -0
  5. package/.agent/workflows/changelog.md +51 -0
  6. package/.agent/workflows/checkpoint.md +138 -0
  7. package/.agent/workflows/commit.md +223 -0
  8. package/.agent/workflows/debug.md +57 -0
  9. package/.agent/workflows/deploy.md +76 -0
  10. package/.agent/workflows/doc.md +247 -0
  11. package/.agent/workflows/execute-plan.md +225 -0
  12. package/.agent/workflows/feature.md +255 -0
  13. package/.agent/workflows/fix.md +323 -0
  14. package/.agent/workflows/help.md +63 -0
  15. package/.agent/workflows/index.md +148 -0
  16. package/.agent/workflows/load.md +112 -0
  17. package/.agent/workflows/mode.md +170 -0
  18. package/.agent/workflows/optimize.md +53 -0
  19. package/.agent/workflows/plan.md +337 -0
  20. package/.agent/workflows/pr.md +74 -0
  21. package/.agent/workflows/product-plan.md +36 -0
  22. package/.agent/workflows/production-deploy.md +39 -0
  23. package/.agent/workflows/refactor.md +63 -0
  24. package/.agent/workflows/research.md +116 -0
  25. package/.agent/workflows/review.md +344 -0
  26. package/.agent/workflows/security-scan.md +56 -0
  27. package/.agent/workflows/ship.md +221 -0
  28. package/.agent/workflows/spawn.md +177 -0
  29. package/.agent/workflows/status.md +59 -0
  30. package/.agent/workflows/tdd.md +139 -0
  31. package/.agent/workflows/test.md +340 -0
  32. package/.agent/workflows/verify.md +35 -0
  33. package/LICENSE +21 -0
  34. package/README.md +67 -0
  35. package/dist/commands/init.js +142 -0
  36. package/dist/commands/install.js +98 -0
  37. package/dist/commands/list.js +49 -0
  38. package/dist/commands/restart.js +17 -0
  39. package/dist/commands/start.js +41 -0
  40. package/dist/commands/status.js +24 -0
  41. package/dist/commands/stop.js +29 -0
  42. package/dist/commands/uninstall.js +78 -0
  43. package/dist/index.js +58 -0
  44. package/dist/server/index.js +174 -0
  45. package/dist/utils/index.js +63 -0
  46. package/package.json +54 -0
  47. package/skills/api-security-best-practices/SKILL.md +291 -0
  48. package/skills/api-security-best-practices/references/examples.md +617 -0
  49. package/skills/architecture/SKILL.md +59 -0
  50. package/skills/architecture/context-discovery.md +43 -0
  51. package/skills/architecture/examples.md +94 -0
  52. package/skills/architecture/pattern-selection.md +68 -0
  53. package/skills/architecture/patterns-reference.md +50 -0
  54. package/skills/architecture/trade-off-analysis.md +77 -0
  55. package/skills/aws-serverless/SKILL.md +327 -0
  56. package/skills/brainstorming/SKILL.md +234 -0
  57. package/skills/c4-context/SKILL.md +154 -0
  58. package/skills/ci-cd-engineer/SKILL.md +50 -0
  59. package/skills/code-auditing/SKILL.md +55 -0
  60. package/skills/copywriting/SKILL.md +248 -0
  61. package/skills/database-engineer/SKILL.md +47 -0
  62. package/skills/doc-coauthoring/SKILL.md +379 -0
  63. package/skills/docker-expert/SKILL.md +412 -0
  64. package/skills/langgraph/SKILL.md +291 -0
  65. package/skills/postgresql/SKILL.md +73 -0
  66. package/skills/pricing-strategy/SKILL.md +360 -0
  67. package/skills/product-manager/SKILL.md +57 -0
  68. package/skills/prompt-engineer/README.md +659 -0
  69. package/skills/prompt-engineer/SKILL.md +256 -0
  70. package/skills/python-patterns/SKILL.md +445 -0
  71. package/skills/qa-engineer/SKILL.md +42 -0
  72. package/skills/rag-engineer/SKILL.md +94 -0
  73. package/skills/react-patterns/SKILL.md +202 -0
  74. package/skills/secure-refactoring/SKILL.md +54 -0
  75. package/skills/security-documentation/SKILL.md +53 -0
  76. package/skills/senior-architect/SKILL.md +213 -0
  77. package/skills/senior-architect/references/architecture_patterns.md +103 -0
  78. package/skills/senior-architect/references/system_design_workflows.md +103 -0
  79. package/skills/senior-architect/references/tech_decision_guide.md +103 -0
  80. package/skills/senior-architect/scripts/architecture_diagram_generator.py +114 -0
  81. package/skills/senior-architect/scripts/dependency_analyzer.py +114 -0
  82. package/skills/senior-architect/scripts/project_architect.py +114 -0
  83. package/skills/seo-audit/SKILL.md +491 -0
  84. package/skills/sql-injection-testing/SKILL.md +452 -0
  85. package/skills/test-driven-development/SKILL.md +375 -0
  86. package/skills/test-driven-development/testing-anti-patterns.md +299 -0
  87. package/skills/test-fixing/SKILL.md +123 -0
  88. package/skills/testing-patterns/SKILL.md +263 -0
  89. package/skills/typescript-expert/SKILL.md +202 -0
  90. package/skills/typescript-expert/references/advanced-topics.md +252 -0
  91. package/skills/typescript-expert/references/tsconfig-strict.json +92 -0
  92. package/skills/typescript-expert/references/typescript-cheatsheet.md +383 -0
  93. package/skills/typescript-expert/references/utility-types.ts +335 -0
  94. package/skills/typescript-expert/scripts/ts_diagnostic.py +203 -0
  95. package/skills/ui-ux-designer/SKILL.md +46 -0
  96. package/skills/vercel-deployment/SKILL.md +83 -0
  97. package/skills/vulnerability-scanner/SKILL.md +280 -0
  98. package/skills/vulnerability-scanner/checklists.md +121 -0
  99. package/skills/vulnerability-scanner/scripts/security_scan.py +458 -0
  100. package/skills/writing-plans/SKILL.md +120 -0
@@ -0,0 +1,73 @@
1
+ # PostgreSQL
2
+
3
+ ## Description
4
+
5
+ PostgreSQL database patterns including queries, indexing, and optimization.
6
+
7
+ ## When to Use
8
+
9
+ - PostgreSQL database operations
10
+ - SQL query optimization
11
+ - Schema design
12
+
13
+ ---
14
+
15
+ ## Core Patterns
16
+
17
+ ### Basic Queries
18
+
19
+ ```sql
20
+ -- Select with filtering
21
+ SELECT id, name, email
22
+ FROM users
23
+ WHERE active = true
24
+ ORDER BY created_at DESC
25
+ LIMIT 20 OFFSET 0;
26
+
27
+ -- Join
28
+ SELECT u.*, COUNT(p.id) as post_count
29
+ FROM users u
30
+ LEFT JOIN posts p ON p.user_id = u.id
31
+ GROUP BY u.id;
32
+ ```
33
+
34
+ ### Indexes
35
+
36
+ ```sql
37
+ -- Single column index
38
+ CREATE INDEX idx_users_email ON users(email);
39
+
40
+ -- Composite index
41
+ CREATE INDEX idx_posts_user_date ON posts(user_id, created_at DESC);
42
+
43
+ -- Partial index
44
+ CREATE INDEX idx_active_users ON users(email) WHERE active = true;
45
+ ```
46
+
47
+ ### Migrations
48
+
49
+ ```sql
50
+ -- Add column with default
51
+ ALTER TABLE users ADD COLUMN role VARCHAR(50) DEFAULT 'user';
52
+
53
+ -- Add constraint
54
+ ALTER TABLE users ADD CONSTRAINT unique_email UNIQUE (email);
55
+ ```
56
+
57
+ ## Best Practices
58
+
59
+ 1. Use indexes for filtered/sorted columns
60
+ 2. Use EXPLAIN ANALYZE for slow queries
61
+ 3. Avoid SELECT * in production
62
+ 4. Use transactions for multiple operations
63
+ 5. Use connection pooling
64
+
65
+ ## Common Pitfalls
66
+
67
+ - **N+1 queries**: Use JOINs or batch loading
68
+ - **Missing indexes**: Add indexes for WHERE/ORDER BY
69
+ - **Large transactions**: Keep transactions short
70
+
71
+
72
+ ## Gap Analysis Rule
73
+ Always identify gaps and suggest next steps to users. In case there is no gaps anymore, then AI should clearly state that there is no gap left.
@@ -0,0 +1,360 @@
1
+ ---
2
+ name: pricing-strategy
3
+ description: Design pricing, packaging, and monetization strategies based on value, customer willingness to pay, and growth objectives.
4
+ ---
5
+
6
+ # Pricing Strategy
7
+
8
+ You are an expert in pricing and monetization strategy. Your goal is to help design pricing that **captures value, supports growth, and aligns with customer willingness to pay**—without harming conversion, trust, or long-term retention.
9
+
10
+ This skill covers **pricing research, value metrics, tier design, and pricing change strategy**.
11
+ It does **not** implement pricing pages or experiments directly.
12
+
13
+ ---
14
+
15
+ ## 1. Required Context (Ask If Missing)
16
+
17
+ ### 1. Business Model
18
+
19
+ * Product type (SaaS, marketplace, service, usage-based)
20
+ * Current pricing (if any)
21
+ * Target customer (SMB, mid-market, enterprise)
22
+ * Go-to-market motion (self-serve, sales-led, hybrid)
23
+
24
+ ### 2. Market & Competition
25
+
26
+ * Primary value delivered
27
+ * Key alternatives customers compare against
28
+ * Competitor pricing models
29
+ * Differentiation vs. alternatives
30
+
31
+ ### 3. Current Performance (If Existing)
32
+
33
+ * Conversion rate
34
+ * ARPU / ARR
35
+ * Churn and expansion
36
+ * Qualitative pricing feedback
37
+
38
+ ### 4. Objectives
39
+
40
+ * Growth vs. revenue vs. profitability
41
+ * Move upmarket or downmarket
42
+ * Planned pricing changes (if any)
43
+
44
+ ---
45
+
46
+ ## 2. Pricing Fundamentals
47
+
48
+ ### The Three Pricing Decisions
49
+
50
+ Every pricing strategy must explicitly answer:
51
+
52
+ 1. **Packaging** – What is included in each tier?
53
+ 2. **Value Metric** – What customers pay for (users, usage, outcomes)?
54
+ 3. **Price Level** – How much each tier costs
55
+
56
+ Failure in any one weakens the system.
57
+
58
+ ---
59
+
60
+ ## 3. Value-Based Pricing Framework
61
+
62
+ Pricing should be anchored to **customer-perceived value**, not internal cost.
63
+
64
+ ```
65
+ Customer perceived value
66
+ ───────────────────────────────
67
+ Your price
68
+ ───────────────────────────────
69
+ Next best alternative
70
+ ───────────────────────────────
71
+ Your cost to serve
72
+ ```
73
+
74
+ **Rules**
75
+
76
+ * Price above the next best alternative
77
+ * Leave customer surplus (value they keep)
78
+ * Cost is a floor, not a pricing basis
79
+
80
+ ---
81
+
82
+ ## 4. Pricing Research Methods
83
+
84
+ ### Van Westendorp (Price Sensitivity Meter)
85
+
86
+ Used to identify acceptable price ranges.
87
+
88
+ **Questions**
89
+
90
+ * Too expensive
91
+ * Too cheap
92
+ * Expensive but acceptable
93
+ * Cheap / good value
94
+
95
+ **Key Outputs**
96
+
97
+ * PMC (too cheap threshold)
98
+ * PME (too expensive threshold)
99
+ * OPP (optimal price point)
100
+ * IDP (indifference price point)
101
+
102
+ **Use Case**
103
+
104
+ * Early pricing
105
+ * Price increase validation
106
+ * Segment comparison
107
+
108
+ ---
109
+
110
+ ### Feature Value Research (MaxDiff / Conjoint)
111
+
112
+ Used to inform **packaging**, not price levels.
113
+
114
+ **Insights Produced**
115
+
116
+ * Table-stakes features
117
+ * Differentiators
118
+ * Premium-only features
119
+ * Low-value candidates to remove
120
+
121
+ ---
122
+
123
+ ### Willingness-to-Pay Testing
124
+
125
+ | Method | Use Case |
126
+ | ------------- | --------------------------- |
127
+ | Direct WTP | Directional only |
128
+ | Gabor-Granger | Demand curve |
129
+ | Conjoint | Feature + price sensitivity |
130
+
131
+ ---
132
+
133
+ ## 5. Value Metrics
134
+
135
+ ### Definition
136
+
137
+ The value metric is **what scales price with customer value**.
138
+
139
+ ### Good Value Metrics
140
+
141
+ * Align with value delivered
142
+ * Scale with customer success
143
+ * Easy to understand
144
+ * Difficult to game
145
+
146
+ ### Common Patterns
147
+
148
+ | Metric | Best For |
149
+ | ------------------ | -------------------- |
150
+ | Per user | Collaboration tools |
151
+ | Per usage | APIs, infrastructure |
152
+ | Per record/contact | CRMs, email |
153
+ | Flat fee | Simple products |
154
+ | Revenue share | Marketplaces |
155
+
156
+ ### Validation Test
157
+
158
+ > As customers get more value, do they naturally pay more?
159
+
160
+ If not → metric is misaligned.
161
+
162
+ ---
163
+
164
+ ## 6. Tier Design
165
+
166
+ ### Number of Tiers
167
+
168
+ | Count | When to Use |
169
+ | ----- | ------------------------------ |
170
+ | 2 | Simple segmentation |
171
+ | 3 | Default (Good / Better / Best) |
172
+ | 4+ | Broad market, careful UX |
173
+
174
+ ### Good / Better / Best
175
+
176
+ **Good**
177
+
178
+ * Entry point
179
+ * Limited usage
180
+ * Removes friction
181
+
182
+ **Better (Anchor)**
183
+
184
+ * Where most customers should land
185
+ * Full core value
186
+ * Best value-per-dollar
187
+
188
+ **Best**
189
+
190
+ * Power users / enterprise
191
+ * Advanced controls, scale, support
192
+
193
+ ---
194
+
195
+ ### Differentiation Levers
196
+
197
+ * Usage limits
198
+ * Advanced features
199
+ * Support level
200
+ * Security & compliance
201
+ * Customization / integrations
202
+
203
+ ---
204
+
205
+ ## 7. Persona-Based Packaging
206
+
207
+ ### Step 1: Define Personas
208
+
209
+ Segment by:
210
+
211
+ * Company size
212
+ * Use case
213
+ * Sophistication
214
+ * Budget norms
215
+
216
+ ### Step 2: Map Value to Tiers
217
+
218
+ Ensure each persona clearly maps to *one* tier.
219
+
220
+ ### Step 3: Price to Segment WTP
221
+
222
+ Avoid “one price fits all” across fundamentally different buyers.
223
+
224
+ ---
225
+
226
+ ## 8. Freemium vs. Free Trial
227
+
228
+ ### Freemium Works When
229
+
230
+ * Large market
231
+ * Viral or network effects
232
+ * Clear upgrade trigger
233
+ * Low marginal cost
234
+
235
+ ### Free Trial Works When
236
+
237
+ * Value requires setup
238
+ * Higher price points
239
+ * B2B evaluation cycles
240
+ * Sticky post-activation usage
241
+
242
+ ### Hybrid Models
243
+
244
+ * Reverse trials
245
+ * Feature-limited free + premium trial
246
+
247
+ ---
248
+
249
+ ## 9. Price Increases
250
+
251
+ ### Signals It’s Time
252
+
253
+ * Very high conversion
254
+ * Low churn
255
+ * Customers under-paying relative to value
256
+ * Market price movement
257
+
258
+ ### Increase Strategies
259
+
260
+ 1. New customers only
261
+ 2. Delayed increase for existing
262
+ 3. Value-tied increase
263
+ 4. Full plan restructure
264
+
265
+ ---
266
+
267
+ ## 10. Pricing Page Alignment (Strategy Only)
268
+
269
+ This skill defines **what** pricing should be.
270
+ Execution belongs to **page-cro**.
271
+
272
+ Strategic requirements:
273
+
274
+ * Clear recommended tier
275
+ * Transparent differentiation
276
+ * Annual discount logic
277
+ * Enterprise escape hatch
278
+
279
+ ---
280
+
281
+ ## 11. Price Testing (Safe Methods)
282
+
283
+ Preferred:
284
+
285
+ * New-customer pricing
286
+ * Sales-led experimentation
287
+ * Geographic tests
288
+ * Packaging tests
289
+
290
+ Avoid:
291
+
292
+ * Blind A/B price tests on same page
293
+ * Surprise customer discovery
294
+
295
+ ---
296
+
297
+ ## 12. Enterprise Pricing
298
+
299
+ ### When to Introduce
300
+
301
+ * Deals > $10k ARR
302
+ * Custom contracts
303
+ * Security/compliance needs
304
+ * Sales involvement required
305
+
306
+ ### Common Structures
307
+
308
+ * Volume-discounted per seat
309
+ * Platform fee + usage
310
+ * Outcome-based pricing
311
+
312
+ ---
313
+
314
+ ## 13. Output Expectations
315
+
316
+ This skill produces:
317
+
318
+ ### Pricing Strategy Document
319
+
320
+ * Target personas
321
+ * Value metric selection
322
+ * Tier structure
323
+ * Price rationale
324
+ * Research inputs
325
+ * Risks & tradeoffs
326
+
327
+ ### Change Recommendation (If Applicable)
328
+
329
+ * Who is affected
330
+ * Expected impact
331
+ * Rollout plan
332
+ * Measurement plan
333
+
334
+ ---
335
+
336
+ ## 14. Validation Checklist
337
+
338
+ * [ ] Clear value metric
339
+ * [ ] Distinct tier personas
340
+ * [ ] Research-backed price range
341
+ * [ ] Conversion-safe entry tier
342
+ * [ ] Expansion path exists
343
+ * [ ] Enterprise handled explicitly
344
+
345
+ ---
346
+ Related Skills
347
+
348
+ page-cro – Pricing page conversion
349
+
350
+ copywriting – Pricing copy
351
+
352
+ analytics-tracking – Measure impact
353
+
354
+ ab-test-setup – Safe experimentation
355
+
356
+ marketing-psychology – Behavioral pricing effects
357
+
358
+
359
+ ## Gap Analysis Rule
360
+ Always identify gaps and suggest next steps to users. In case there is no gaps anymore, then AI should clearly state that there is no gap left.
@@ -0,0 +1,57 @@
1
+ ---
2
+ name: product-manager
3
+ description: Define product vision, user stories, acceptance criteria, and roadmap planning
4
+ ---
5
+
6
+ # Product Manager
7
+
8
+ ## Overview
9
+
10
+ Your role is to bridge the gap between business goals and technical implementation. You focus on the "Why" and "What" before the "How".
11
+
12
+ ## When to Use This Skill
13
+
14
+ - Clarifying vague feature requests
15
+ - Writing User Stories and Acceptance Criteria
16
+ - Prioritizing features (MoSCoW method)
17
+ - Defining the MVP (Minimum Viable Product)
18
+ - Breaking down large epics into manageable tasks
19
+
20
+ ## Core Responsibilities
21
+
22
+ 1. **Requirement Elicitation**: Ask probing questions to understand the true user need.
23
+ 2. **User Story Creation**: Format: "As a [user], I want to [action], so that [benefit]".
24
+ 3. **Acceptance Criteria**: Define clear, testable conditions for "done".
25
+ 4. **Scope Management**: Prevent scope creep by clearly defining what is out of scope.
26
+
27
+ ## Deliverables
28
+
29
+ ### Product Requirements Document (PRD) Structure
30
+ - **Problem Statement**: What are we solving?
31
+ - **Target Audience**: Who are we solving it for?
32
+ - **Goals & Non-Goals**: Success metrics.
33
+ - **User Stories**: Detailed functional requirements.
34
+ - **UI/UX Guidelines**: High-level flow descriptions.
35
+
36
+ ### Example User Story
37
+ **Title**: User Login
38
+ **As a**: Registered User
39
+ **I want to**: Log in with my email and password
40
+ **So that**: I can access my personalized dashboard
41
+
42
+ **Acceptance Criteria**:
43
+ - [ ] User can enter email and password.
44
+ - [ ] System validates credentials against database.
45
+ - [ ] Successful login redirects to Dashboard.
46
+ - [ ] Invalid login shows "Invalid credentials" error.
47
+ - [ ] "Forgot Password" link is visible.
48
+
49
+ ## Related Skills
50
+
51
+ - [ui-ux-designer](../ui-ux-designer/SKILL.md): For wireframes and detailed designs.
52
+ - [writing-plans](../writing-plans/SKILL.md): For creating implementation checklists.
53
+ - [brainstorming](../brainstorming/SKILL.md): For ideation sessions.
54
+
55
+
56
+ ## Gap Analysis Rule
57
+ Always identify gaps and suggest next steps to users. In case there is no gaps anymore, then AI should clearly state that there is no gap left.