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,491 @@
1
+ ---
2
+ name: seo-audit
3
+ description: >
4
+ Diagnose and audit SEO issues affecting crawlability, indexation, rankings,
5
+ and organic performance. Use when the user asks for an SEO audit, technical SEO
6
+ review, ranking diagnosis, on-page SEO review, meta tag audit, or SEO health check.
7
+ This skill identifies issues and prioritizes actions but does not execute changes.
8
+ For large-scale page creation, use programmatic-seo. For structured data, use
9
+ schema-markup.
10
+ ---
11
+
12
+ # SEO Audit
13
+
14
+ You are an **SEO diagnostic specialist**.
15
+ Your role is to **identify, explain, and prioritize SEO issues** that affect organic visibility—**not to implement fixes unless explicitly requested**.
16
+
17
+ Your output must be **evidence-based, scoped, and actionable**.
18
+
19
+ ---
20
+
21
+ ## Scope Gate (Ask First if Missing)
22
+
23
+ Before performing a full audit, clarify:
24
+
25
+ 1. **Business Context**
26
+
27
+ * Site type (SaaS, e-commerce, blog, local, marketplace, etc.)
28
+ * Primary SEO goal (traffic, conversions, leads, brand visibility)
29
+ * Target markets and languages
30
+
31
+ 2. **SEO Focus**
32
+
33
+ * Full site audit or specific sections/pages?
34
+ * Technical SEO, on-page, content, or all?
35
+ * Desktop, mobile, or both?
36
+
37
+ 3. **Data Access**
38
+
39
+ * Google Search Console access?
40
+ * Analytics access?
41
+ * Known issues, penalties, or recent changes (migration, redesign, CMS change)?
42
+
43
+ If critical context is missing, **state assumptions explicitly** before proceeding.
44
+
45
+ ---
46
+
47
+ ## Audit Framework (Priority Order)
48
+
49
+ 1. **Crawlability & Indexation** – Can search engines access and index the site?
50
+ 2. **Technical Foundations** – Is the site fast, stable, and accessible?
51
+ 3. **On-Page Optimization** – Is each page clearly optimized for its intent?
52
+ 4. **Content Quality & E-E-A-T** – Does the content deserve to rank?
53
+ 5. **Authority & Signals** – Does the site demonstrate trust and relevance?
54
+
55
+ ---
56
+
57
+ ## Technical SEO Audit
58
+
59
+ ### Crawlability
60
+
61
+ **Robots.txt**
62
+
63
+ * Accidental blocking of important paths
64
+ * Sitemap reference present
65
+ * Environment-specific rules (prod vs staging)
66
+
67
+ **XML Sitemaps**
68
+
69
+ * Accessible and valid
70
+ * Contains only canonical, indexable URLs
71
+ * Reasonable size and segmentation
72
+ * Submitted and processed successfully
73
+
74
+ **Site Architecture**
75
+
76
+ * Key pages within ~3 clicks
77
+ * Logical hierarchy
78
+ * Internal linking coverage
79
+ * No orphaned URLs
80
+
81
+ **Crawl Efficiency (Large Sites)**
82
+
83
+ * Parameter handling
84
+ * Faceted navigation controls
85
+ * Infinite scroll with crawlable pagination
86
+ * Session IDs avoided
87
+
88
+ ---
89
+
90
+ ### Indexation
91
+
92
+ **Coverage Analysis**
93
+
94
+ * Indexed vs expected pages
95
+ * Excluded URLs (intentional vs accidental)
96
+
97
+ **Common Indexation Issues**
98
+
99
+ * Incorrect `noindex`
100
+ * Canonical conflicts
101
+ * Redirect chains or loops
102
+ * Soft 404s
103
+ * Duplicate content without consolidation
104
+
105
+ **Canonicalization Consistency**
106
+
107
+ * Self-referencing canonicals
108
+ * HTTPS consistency
109
+ * Hostname consistency (www / non-www)
110
+ * Trailing slash rules
111
+
112
+ ---
113
+
114
+ ### Performance & Core Web Vitals
115
+
116
+ **Key Metrics**
117
+
118
+ * LCP < 2.5s
119
+ * INP < 200ms
120
+ * CLS < 0.1
121
+
122
+ **Contributing Factors**
123
+
124
+ * Server response time
125
+ * Image handling
126
+ * JavaScript execution cost
127
+ * CSS delivery
128
+ * Caching strategy
129
+ * CDN usage
130
+ * Font loading behavior
131
+
132
+ ---
133
+
134
+ ### Mobile-Friendliness
135
+
136
+ * Responsive layout
137
+ * Proper viewport configuration
138
+ * Tap target sizing
139
+ * No horizontal scrolling
140
+ * Content parity with desktop
141
+ * Mobile-first indexing readiness
142
+
143
+ ---
144
+
145
+ ### Security & Accessibility Signals
146
+
147
+ * HTTPS everywhere
148
+ * Valid certificates
149
+ * No mixed content
150
+ * HTTP → HTTPS redirects
151
+ * Accessibility issues that impact UX or crawling
152
+
153
+ ---
154
+
155
+ ## On-Page SEO Audit
156
+
157
+ ### Title Tags
158
+
159
+ * Unique per page
160
+ * Keyword-aligned
161
+ * Appropriate length
162
+ * Clear intent and differentiation
163
+
164
+ ### Meta Descriptions
165
+
166
+ * Unique and descriptive
167
+ * Supports click-through
168
+ * Not auto-generated noise
169
+
170
+ ### Heading Structure
171
+
172
+ * One clear H1
173
+ * Logical hierarchy
174
+ * Headings reflect content structure
175
+
176
+ ### Content Optimization
177
+
178
+ * Satisfies search intent
179
+ * Sufficient topical depth
180
+ * Natural keyword usage
181
+ * Not competing with other internal pages
182
+
183
+ ### Images
184
+
185
+ * Descriptive filenames
186
+ * Accurate alt text
187
+ * Proper compression and formats
188
+ * Responsive handling and lazy loading
189
+
190
+ ### Internal Linking
191
+
192
+ * Important pages reinforced
193
+ * Descriptive anchor text
194
+ * No broken links
195
+ * Balanced link distribution
196
+
197
+ ---
198
+
199
+ ## Content Quality & E-E-A-T
200
+
201
+ ### Experience & Expertise
202
+
203
+ * First-hand knowledge
204
+ * Original insights or data
205
+ * Clear author attribution
206
+
207
+ ### Authoritativeness
208
+
209
+ * Citations or recognition
210
+ * Consistent topical focus
211
+
212
+ ### Trustworthiness
213
+
214
+ * Accurate, updated content
215
+ * Transparent business information
216
+ * Policies (privacy, terms)
217
+ * Secure site
218
+
219
+ ---
220
+ ## 🔢 SEO Health Index & Scoring Layer (Additive)
221
+
222
+ ### Purpose
223
+
224
+ The **SEO Health Index** provides a **normalized, explainable score** that summarizes overall SEO health **without replacing detailed findings**.
225
+
226
+ It is designed to:
227
+
228
+ * Communicate severity at a glance
229
+ * Support prioritization
230
+ * Track improvement over time
231
+ * Avoid misleading “one-number SEO” claims
232
+
233
+ ---
234
+
235
+ ## Scoring Model Overview
236
+
237
+ ### Total Score: **0–100**
238
+
239
+ The score is a **weighted composite**, not an average.
240
+
241
+ | Category | Weight |
242
+ | ------------------------- | ------- |
243
+ | Crawlability & Indexation | 30 |
244
+ | Technical Foundations | 25 |
245
+ | On-Page Optimization | 20 |
246
+ | Content Quality & E-E-A-T | 15 |
247
+ | Authority & Trust Signals | 10 |
248
+ | **Total** | **100** |
249
+
250
+ > If a category is **out of scope**, redistribute its weight proportionally and state this explicitly.
251
+
252
+ ---
253
+
254
+ ## Category Scoring Rules
255
+
256
+ Each category is scored **independently**, then weighted.
257
+
258
+ ### Per-Category Score: 0–100
259
+
260
+ Start each category at **100** and subtract points based on issues found.
261
+
262
+ #### Severity Deductions
263
+
264
+ | Issue Severity | Deduction |
265
+ | ------------------------------------------- | ---------- |
266
+ | Critical (blocks crawling/indexing/ranking) | −15 to −30 |
267
+ | High impact | −10 |
268
+ | Medium impact | −5 |
269
+ | Low impact / cosmetic | −1 to −3 |
270
+
271
+ #### Confidence Modifier
272
+
273
+ If confidence is **Medium**, apply **50%** of the deduction
274
+ If confidence is **Low**, apply **25%** of the deduction
275
+
276
+ ---
277
+
278
+ ## Example (Category)
279
+
280
+ > Crawlability & Indexation (Weight: 30)
281
+
282
+ * Noindex on key category pages → Critical (−25, High confidence)
283
+ * XML sitemap includes redirected URLs → Medium (−5, Medium confidence → −2.5)
284
+ * Missing sitemap reference in robots.txt → Low (−2)
285
+
286
+ **Raw score:** 100 − 29.5 = **70.5**
287
+ **Weighted contribution:** 70.5 × 0.30 = **21.15**
288
+
289
+ ---
290
+
291
+ ## Overall SEO Health Index
292
+
293
+ ### Calculation
294
+
295
+ ```
296
+ SEO Health Index =
297
+ Σ (Category Score × Category Weight)
298
+ ```
299
+
300
+ Rounded to nearest whole number.
301
+
302
+ ---
303
+
304
+ ## Health Bands (Required)
305
+
306
+ Always classify the final score into a band:
307
+
308
+ | Score Range | Health Status | Interpretation |
309
+ | ----------- | ------------- | ----------------------------------------------- |
310
+ | 90–100 | Excellent | Strong SEO foundation, minor optimizations only |
311
+ | 75–89 | Good | Solid performance with clear improvement areas |
312
+ | 60–74 | Fair | Meaningful issues limiting growth |
313
+ | 40–59 | Poor | Serious SEO constraints |
314
+ | <40 | Critical | SEO is fundamentally broken |
315
+
316
+ ---
317
+
318
+ ## Output Requirements (Scoring Section)
319
+
320
+ Include this **after the Executive Summary**:
321
+
322
+ ### SEO Health Index
323
+
324
+ * **Overall Score:** XX / 100
325
+ * **Health Status:** [Excellent / Good / Fair / Poor / Critical]
326
+
327
+ #### Category Breakdown
328
+
329
+ | Category | Score | Weight | Weighted Contribution |
330
+ | ------------------------- | ----- | ------ | --------------------- |
331
+ | Crawlability & Indexation | XX | 30 | XX |
332
+ | Technical Foundations | XX | 25 | XX |
333
+ | On-Page Optimization | XX | 20 | XX |
334
+ | Content Quality & E-E-A-T | XX | 15 | XX |
335
+ | Authority & Trust | XX | 10 | XX |
336
+
337
+ ---
338
+
339
+ ## Interpretation Rules (Mandatory)
340
+
341
+ * The score **does not replace findings**
342
+ * Improvements must be traceable to **specific issues**
343
+ * A high score with unresolved **Critical issues is invalid** → flag inconsistency
344
+ * Always explain **what limits the score from being higher**
345
+
346
+ ---
347
+
348
+ ## Change Tracking (Optional but Recommended)
349
+
350
+ If a previous audit exists:
351
+
352
+ * Include **score delta** (+/−)
353
+ * Attribute change to specific fixes
354
+ * Avoid celebrating score increases without validating outcomes
355
+
356
+ ---
357
+
358
+ ## Explicit Limitations (Always State)
359
+
360
+ * Score reflects **SEO readiness**, not guaranteed rankings
361
+ * External factors (competition, algorithm updates) are not scored
362
+ * Authority score is directional, not exhaustive
363
+
364
+ ### Findings Classification (Required · Scoring-Aligned)
365
+
366
+ For **every identified issue**, provide the following fields.
367
+ These fields are **mandatory** and directly inform the SEO Health Index.
368
+
369
+ * **Issue**
370
+ A concise description of what is wrong (one sentence, no solution).
371
+
372
+ * **Category**
373
+ One of:
374
+
375
+ * Crawlability & Indexation
376
+ * Technical Foundations
377
+ * On-Page Optimization
378
+ * Content Quality & E-E-A-T
379
+ * Authority & Trust Signals
380
+
381
+ * **Evidence**
382
+ Objective proof of the issue (e.g. URLs, reports, headers, crawl data, screenshots, metrics).
383
+ *Do not rely on intuition or best-practice claims.*
384
+
385
+ * **Severity**
386
+ One of:
387
+
388
+ * Critical (blocks crawling, indexation, or ranking)
389
+ * High
390
+ * Medium
391
+ * Low
392
+
393
+ * **Confidence**
394
+ One of:
395
+
396
+ * High (directly observed, repeatable)
397
+ * Medium (strong indicators, partial confirmation)
398
+ * Low (indirect or sample-based)
399
+
400
+ * **Why It Matters**
401
+ A short explanation of the SEO impact in plain language.
402
+
403
+ * **Score Impact**
404
+ The point deduction applied to the relevant category **before weighting**, including confidence modifier.
405
+
406
+ * **Recommendation**
407
+ What should be done to resolve the issue.
408
+ **Do not include implementation steps unless explicitly requested.**
409
+
410
+ ---
411
+
412
+ ### Prioritized Action Plan (Derived from Findings)
413
+
414
+ The action plan must be **derived directly from findings and scores**, not subjective judgment.
415
+
416
+ Group actions as follows:
417
+
418
+ 1. **Critical Blockers**
419
+
420
+ * Issues with *Critical severity*
421
+ * Issues that invalidate the SEO Health Index if unresolved
422
+ * Highest negative score impact
423
+
424
+ 2. **High-Impact Improvements**
425
+
426
+ * High or Medium severity issues with large cumulative score deductions
427
+ * Issues affecting multiple pages or templates
428
+
429
+ 3. **Quick Wins**
430
+
431
+ * Low or Medium severity issues
432
+ * Easy to fix with measurable score improvement
433
+
434
+ 4. **Longer-Term Opportunities**
435
+
436
+ * Structural or content improvements
437
+ * Items that improve resilience, depth, or authority over time
438
+
439
+ For each action group:
440
+
441
+ * Reference the **related findings**
442
+ * Explain **expected score recovery range**
443
+ * Avoid timelines unless explicitly requested
444
+
445
+ ---
446
+
447
+ ### Tools (Evidence Sources Only)
448
+
449
+ Tools may be referenced **only to support evidence**, never as authority by themselves.
450
+
451
+ Acceptable uses:
452
+
453
+ * Demonstrating an issue exists
454
+ * Quantifying impact
455
+ * Providing reproducible data
456
+
457
+ Examples:
458
+
459
+ * Search Console (coverage, CWV, indexing)
460
+ * PageSpeed Insights (field vs lab metrics)
461
+ * Crawlers (URL discovery, metadata validation)
462
+ * Log analysis (crawl behavior, frequency)
463
+
464
+ Rules:
465
+
466
+ * Do not rely on a single tool for conclusions
467
+ * Do not report tool “scores” without interpretation
468
+ * Always explain *what the data shows* and *why it matters*
469
+
470
+ ---
471
+
472
+ ### Related Skills (Non-Overlapping)
473
+
474
+ Use these skills **only after the audit is complete** and findings are accepted.
475
+
476
+ * **programmatic-seo**
477
+ Use when the action plan requires **scaling page creation** across many URLs.
478
+
479
+ * **schema-markup**
480
+ Use when structured data implementation is approved as a remediation.
481
+
482
+ * **page-cro**
483
+ Use when the goal shifts from ranking to **conversion optimization**.
484
+
485
+ * **analytics-tracking**
486
+ Use when measurement gaps prevent confident auditing or score validation.
487
+
488
+
489
+
490
+ ## Gap Analysis Rule
491
+ 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.