@thierrynakoa/fire-flow 10.0.0

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 (215) hide show
  1. package/.claude-plugin/plugin.json +64 -0
  2. package/ARCHITECTURE-DIAGRAM.md +440 -0
  3. package/COMMAND-REFERENCE.md +172 -0
  4. package/DOMINION-FLOW-OVERVIEW.md +421 -0
  5. package/LICENSE +21 -0
  6. package/QUICK-START.md +351 -0
  7. package/README.md +398 -0
  8. package/TROUBLESHOOTING.md +264 -0
  9. package/agents/fire-codebase-mapper.md +484 -0
  10. package/agents/fire-debugger.md +535 -0
  11. package/agents/fire-executor.md +949 -0
  12. package/agents/fire-fact-checker.md +276 -0
  13. package/agents/fire-learncoding-explainer.md +237 -0
  14. package/agents/fire-learncoding-walker.md +147 -0
  15. package/agents/fire-planner.md +675 -0
  16. package/agents/fire-project-researcher.md +155 -0
  17. package/agents/fire-research-synthesizer.md +166 -0
  18. package/agents/fire-researcher.md +723 -0
  19. package/agents/fire-reviewer.md +499 -0
  20. package/agents/fire-roadmapper.md +203 -0
  21. package/agents/fire-verifier.md +880 -0
  22. package/bin/cli.js +208 -0
  23. package/commands/fire-0-orient.md +476 -0
  24. package/commands/fire-1-new.md +281 -0
  25. package/commands/fire-1a-discuss.md +455 -0
  26. package/commands/fire-2-plan.md +527 -0
  27. package/commands/fire-3-execute.md +1303 -0
  28. package/commands/fire-4-verify.md +845 -0
  29. package/commands/fire-5-handoff.md +515 -0
  30. package/commands/fire-6-resume.md +501 -0
  31. package/commands/fire-7-review.md +409 -0
  32. package/commands/fire-add-new-skill.md +598 -0
  33. package/commands/fire-analytics.md +499 -0
  34. package/commands/fire-assumptions.md +78 -0
  35. package/commands/fire-autonomous.md +528 -0
  36. package/commands/fire-brainstorm.md +413 -0
  37. package/commands/fire-complete-milestone.md +270 -0
  38. package/commands/fire-dashboard.md +375 -0
  39. package/commands/fire-debug.md +663 -0
  40. package/commands/fire-discover.md +616 -0
  41. package/commands/fire-double-check.md +460 -0
  42. package/commands/fire-execute-plan.md +182 -0
  43. package/commands/fire-learncoding.md +242 -0
  44. package/commands/fire-loop-resume.md +272 -0
  45. package/commands/fire-loop-stop.md +198 -0
  46. package/commands/fire-loop.md +1168 -0
  47. package/commands/fire-map-codebase.md +313 -0
  48. package/commands/fire-new-milestone.md +356 -0
  49. package/commands/fire-reflect.md +235 -0
  50. package/commands/fire-research.md +246 -0
  51. package/commands/fire-search.md +330 -0
  52. package/commands/fire-security-audit-repo.md +293 -0
  53. package/commands/fire-security-scan.md +484 -0
  54. package/commands/fire-session-summary.md +252 -0
  55. package/commands/fire-skills-diff.md +506 -0
  56. package/commands/fire-skills-history.md +388 -0
  57. package/commands/fire-skills-rollback.md +408 -0
  58. package/commands/fire-skills-sync.md +470 -0
  59. package/commands/fire-test.md +520 -0
  60. package/commands/fire-todos.md +335 -0
  61. package/commands/fire-transition.md +186 -0
  62. package/commands/fire-update.md +312 -0
  63. package/commands/fire-verify-uat.md +146 -0
  64. package/commands/fire-vuln-scan.md +493 -0
  65. package/hooks/hooks.json +16 -0
  66. package/hooks/run-hook.cmd +69 -0
  67. package/hooks/run-hook.sh +8 -0
  68. package/hooks/run-session-end.cmd +49 -0
  69. package/hooks/run-session-end.sh +7 -0
  70. package/hooks/session-end.sh +90 -0
  71. package/hooks/session-start.sh +111 -0
  72. package/package.json +52 -0
  73. package/plugin.json +7 -0
  74. package/references/auto-skill-extraction.md +136 -0
  75. package/references/behavioral-directives.md +365 -0
  76. package/references/blocker-tracking.md +155 -0
  77. package/references/checkpoints.md +165 -0
  78. package/references/circuit-breaker.md +410 -0
  79. package/references/context-engineering.md +587 -0
  80. package/references/decision-time-guidance.md +289 -0
  81. package/references/error-classification.md +326 -0
  82. package/references/execution-mode-intelligence.md +242 -0
  83. package/references/git-integration.md +217 -0
  84. package/references/honesty-protocols.md +304 -0
  85. package/references/integration-architecture.md +470 -0
  86. package/references/issue-to-pr-pipeline.md +150 -0
  87. package/references/metrics-and-trends.md +234 -0
  88. package/references/playwright-e2e-testing.md +326 -0
  89. package/references/questioning.md +125 -0
  90. package/references/research-improvements.md +110 -0
  91. package/references/skills-usage-guide.md +429 -0
  92. package/references/tdd.md +131 -0
  93. package/references/testing-enforcement.md +192 -0
  94. package/references/ui-brand.md +383 -0
  95. package/references/validation-checklist.md +456 -0
  96. package/references/verification-patterns.md +187 -0
  97. package/references/warrior-principles.md +173 -0
  98. package/skills-library/SKILLS-INDEX.md +588 -0
  99. package/skills-library/_general/frontend/html-visual-reports.md +292 -0
  100. package/skills-library/_general/methodology/debug-swarm-researcher-escape-hatch.md +240 -0
  101. package/skills-library/_general/methodology/learncoding-agentic-pattern.md +114 -0
  102. package/skills-library/_general/methodology/shell-autonomous-loop-fixplan.md +238 -0
  103. package/skills-library/basics/api-rest-basics.md +162 -0
  104. package/skills-library/basics/env-variables.md +96 -0
  105. package/skills-library/basics/error-handling-basics.md +125 -0
  106. package/skills-library/basics/git-commit-conventions.md +106 -0
  107. package/skills-library/basics/readme-template.md +108 -0
  108. package/skills-library/common-tasks/async-await-patterns.md +157 -0
  109. package/skills-library/common-tasks/auth-jwt-basics.md +164 -0
  110. package/skills-library/common-tasks/database-schema-design.md +166 -0
  111. package/skills-library/common-tasks/file-upload-basics.md +166 -0
  112. package/skills-library/common-tasks/form-validation.md +159 -0
  113. package/skills-library/debugging/FAILURE_TAXONOMY_CLASSIFICATION.md +117 -0
  114. package/skills-library/debugging/THREE_AGENT_HYPOTHESIS_DEBUGGING.md +86 -0
  115. package/skills-library/methodology/BREATH_BASED_PARALLEL_EXECUTION.md +678 -0
  116. package/skills-library/methodology/CONFIDENCE_GATED_EXECUTION.md +243 -0
  117. package/skills-library/methodology/EVIDENCE_BASED_VALIDATION.md +308 -0
  118. package/skills-library/methodology/MULTI_PERSPECTIVE_CODE_REVIEW.md +330 -0
  119. package/skills-library/methodology/PATH_VERIFICATION_GATE.md +211 -0
  120. package/skills-library/methodology/REFLEXION_MEMORY_PATTERN.md +183 -0
  121. package/skills-library/methodology/RESEARCH_BACKED_WORKFLOW_UPGRADE.md +263 -0
  122. package/skills-library/methodology/SABBATH_REST_PATTERN.md +267 -0
  123. package/skills-library/methodology/STONE_AND_SCAFFOLD.md +220 -0
  124. package/skills-library/performance/cache-augmented-generation.md +172 -0
  125. package/skills-library/quality-safety/debugging-steps.md +147 -0
  126. package/skills-library/quality-safety/deployment-checklist.md +155 -0
  127. package/skills-library/quality-safety/security-checklist.md +204 -0
  128. package/skills-library/quality-safety/testing-basics.md +180 -0
  129. package/skills-library/security/agent-security-scanner.md +445 -0
  130. package/skills-library/specialists/api-architecture/api-designer.md +49 -0
  131. package/skills-library/specialists/api-architecture/graphql-architect.md +49 -0
  132. package/skills-library/specialists/api-architecture/mcp-developer.md +51 -0
  133. package/skills-library/specialists/api-architecture/microservices-architect.md +50 -0
  134. package/skills-library/specialists/api-architecture/websocket-engineer.md +48 -0
  135. package/skills-library/specialists/backend/django-expert.md +52 -0
  136. package/skills-library/specialists/backend/fastapi-expert.md +52 -0
  137. package/skills-library/specialists/backend/laravel-specialist.md +52 -0
  138. package/skills-library/specialists/backend/nestjs-expert.md +51 -0
  139. package/skills-library/specialists/backend/rails-expert.md +53 -0
  140. package/skills-library/specialists/backend/spring-boot-engineer.md +56 -0
  141. package/skills-library/specialists/data-ml/fine-tuning-expert.md +48 -0
  142. package/skills-library/specialists/data-ml/ml-pipeline.md +47 -0
  143. package/skills-library/specialists/data-ml/pandas-pro.md +47 -0
  144. package/skills-library/specialists/data-ml/rag-architect.md +51 -0
  145. package/skills-library/specialists/data-ml/spark-engineer.md +47 -0
  146. package/skills-library/specialists/frontend/angular-architect.md +52 -0
  147. package/skills-library/specialists/frontend/flutter-expert.md +51 -0
  148. package/skills-library/specialists/frontend/nextjs-developer.md +54 -0
  149. package/skills-library/specialists/frontend/react-native-expert.md +50 -0
  150. package/skills-library/specialists/frontend/vue-expert.md +51 -0
  151. package/skills-library/specialists/infrastructure/chaos-engineer.md +74 -0
  152. package/skills-library/specialists/infrastructure/cloud-architect.md +70 -0
  153. package/skills-library/specialists/infrastructure/database-optimizer.md +64 -0
  154. package/skills-library/specialists/infrastructure/devops-engineer.md +70 -0
  155. package/skills-library/specialists/infrastructure/kubernetes-specialist.md +52 -0
  156. package/skills-library/specialists/infrastructure/monitoring-expert.md +70 -0
  157. package/skills-library/specialists/infrastructure/sre-engineer.md +70 -0
  158. package/skills-library/specialists/infrastructure/terraform-engineer.md +51 -0
  159. package/skills-library/specialists/languages/cpp-pro.md +74 -0
  160. package/skills-library/specialists/languages/csharp-developer.md +69 -0
  161. package/skills-library/specialists/languages/dotnet-core-expert.md +54 -0
  162. package/skills-library/specialists/languages/golang-pro.md +51 -0
  163. package/skills-library/specialists/languages/java-architect.md +49 -0
  164. package/skills-library/specialists/languages/javascript-pro.md +68 -0
  165. package/skills-library/specialists/languages/kotlin-specialist.md +68 -0
  166. package/skills-library/specialists/languages/php-pro.md +49 -0
  167. package/skills-library/specialists/languages/python-pro.md +52 -0
  168. package/skills-library/specialists/languages/react-expert.md +51 -0
  169. package/skills-library/specialists/languages/rust-engineer.md +50 -0
  170. package/skills-library/specialists/languages/sql-pro.md +56 -0
  171. package/skills-library/specialists/languages/swift-expert.md +69 -0
  172. package/skills-library/specialists/languages/typescript-pro.md +51 -0
  173. package/skills-library/specialists/platform/atlassian-mcp.md +52 -0
  174. package/skills-library/specialists/platform/embedded-systems.md +53 -0
  175. package/skills-library/specialists/platform/game-developer.md +53 -0
  176. package/skills-library/specialists/platform/salesforce-developer.md +53 -0
  177. package/skills-library/specialists/platform/shopify-expert.md +49 -0
  178. package/skills-library/specialists/platform/wordpress-pro.md +49 -0
  179. package/skills-library/specialists/quality/code-documenter.md +51 -0
  180. package/skills-library/specialists/quality/code-reviewer.md +67 -0
  181. package/skills-library/specialists/quality/debugging-wizard.md +51 -0
  182. package/skills-library/specialists/quality/fullstack-guardian.md +51 -0
  183. package/skills-library/specialists/quality/legacy-modernizer.md +50 -0
  184. package/skills-library/specialists/quality/playwright-expert.md +65 -0
  185. package/skills-library/specialists/quality/spec-miner.md +56 -0
  186. package/skills-library/specialists/quality/test-master.md +65 -0
  187. package/skills-library/specialists/security/secure-code-guardian.md +55 -0
  188. package/skills-library/specialists/security/security-reviewer.md +53 -0
  189. package/skills-library/specialists/workflow/architecture-designer.md +53 -0
  190. package/skills-library/specialists/workflow/cli-developer.md +70 -0
  191. package/skills-library/specialists/workflow/feature-forge.md +65 -0
  192. package/skills-library/specialists/workflow/prompt-engineer.md +54 -0
  193. package/skills-library/specialists/workflow/the-fool.md +62 -0
  194. package/templates/ASSUMPTIONS.md +125 -0
  195. package/templates/BLOCKERS.md +73 -0
  196. package/templates/DECISION_LOG.md +116 -0
  197. package/templates/UAT.md +96 -0
  198. package/templates/blueprint.md +94 -0
  199. package/templates/brainstorm.md +185 -0
  200. package/templates/conscience.md +92 -0
  201. package/templates/fire-handoff.md +159 -0
  202. package/templates/metrics.md +67 -0
  203. package/templates/phase-prompt.md +142 -0
  204. package/templates/record.md +131 -0
  205. package/templates/review-report.md +117 -0
  206. package/templates/skills-index.md +157 -0
  207. package/templates/verification.md +149 -0
  208. package/templates/vision.md +79 -0
  209. package/validation-config.yml +793 -0
  210. package/version.json +7 -0
  211. package/workflows/execute-phase.md +732 -0
  212. package/workflows/handoff-session.md +678 -0
  213. package/workflows/new-project.md +578 -0
  214. package/workflows/plan-phase.md +592 -0
  215. package/workflows/verify-phase.md +874 -0
@@ -0,0 +1,588 @@
1
+ # Dominion Flow Skills Library Index
2
+
3
+ **Total Skills:** 237 markdown files + Remotion skill (37 rules)
4
+ **Categories:** 19 categories + _general scope (7 subcategories) + video-animation (Remotion)
5
+ **Last Updated:** 2026-03-01
6
+ **Source:** Imported from WARRIOR workflow skills library
7
+
8
+ ---
9
+
10
+ ## Quick Search Tips
11
+
12
+ - **Find by topic:** Use `Ctrl+F` / `Cmd+F` to search this document
13
+ - **Browse by category:** Jump to any category section below
14
+ - **File naming:** Uppercase files are guides/references, lowercase are implementation patterns
15
+ - **Location:** `C:/Users/FirstName/.claude/plugins/dominion-flow/skills-library/`
16
+
17
+ ---
18
+
19
+ ## Beginner Skills Library
20
+
21
+ Three tiers of foundational skills for students and new developers. Each skill is self-contained with real code examples.
22
+
23
+ ### Tier 1 — Basics (Start Here)
24
+
25
+ | Skill | Description |
26
+ |-------|-------------|
27
+ | [env-variables](basics/env-variables.md) | Keep secrets out of your code using `.env` files |
28
+ | [git-commit-conventions](basics/git-commit-conventions.md) | Write clear, readable commit messages |
29
+ | [readme-template](basics/readme-template.md) | Document your project so others can use it |
30
+ | [error-handling-basics](basics/error-handling-basics.md) | Catch errors gracefully instead of crashing |
31
+ | [api-rest-basics](basics/api-rest-basics.md) | Build and call REST APIs the right way |
32
+
33
+ ### Tier 2 — Common Tasks
34
+
35
+ | Skill | Description |
36
+ |-------|-------------|
37
+ | [auth-jwt-basics](common-tasks/auth-jwt-basics.md) | User login with JWT tokens and protected routes |
38
+ | [database-schema-design](common-tasks/database-schema-design.md) | Design tables that don't break as you grow |
39
+ | [async-await-patterns](common-tasks/async-await-patterns.md) | Write async code without callback hell |
40
+ | [form-validation](common-tasks/form-validation.md) | Validate user input on both client and server |
41
+ | [file-upload-basics](common-tasks/file-upload-basics.md) | Handle file uploads safely |
42
+
43
+ ### Tier 3 — Quality & Safety
44
+
45
+ | Skill | Description |
46
+ |-------|-------------|
47
+ | [testing-basics](quality-safety/testing-basics.md) | Write tests that actually catch bugs |
48
+ | [security-checklist](quality-safety/security-checklist.md) | The most common security mistakes and how to avoid them |
49
+ | [debugging-steps](quality-safety/debugging-steps.md) | Systematic debugging — stop guessing, start finding |
50
+ | [deployment-checklist](quality-safety/deployment-checklist.md) | What to verify before going live |
51
+
52
+ ---
53
+
54
+ ## Categories Overview
55
+
56
+ | Category | Skills | Description |
57
+ |----------|--------|-------------|
58
+ | [Root Level](#root-level-skills) | 8 | Top-level guides and cross-cutting references |
59
+ | [advanced-features](#advanced-features) | 11 | Admin tools, gamification, plugins, newsletters, SEO |
60
+ | [api-patterns](#api-patterns) | 0 | API design patterns (reserved) |
61
+ | [automation](#automation) | 2 | Auto-populate, form automation, session memory lifecycle |
62
+ | [complexity-metrics](#complexity-metrics) | 2 | Code complexity analysis and management |
63
+ | [database-solutions](#database-solutions) | 17 | Schema design, migrations, PostgreSQL, RLS, PG-to-MySQL translation, PL/pgSQL variable conflicts |
64
+ | [deployment-security](#deployment-security) | 18 | Production deployment, VPS, security hardening |
65
+ | [document-processing](#document-processing) | 5 | PDF forms, file downloads, document AI |
66
+ | [ecommerce](#ecommerce) | 15 | Stripe, products, donations, GTA compliance |
67
+ | [form-solutions](#form-solutions) | 2 | SurveyJS, fillable PDFs |
68
+ | [infrastructure](#infrastructure) | 2 | Tauri sidecar bundling, dynamic port IPC, desktop packaging |
69
+ | [integrations](#integrations) | 43 | Stripe, PayPal, Zoom, YouTube, Cloudflare, RealtimeSTT, Claude Code |
70
+ | [lms-patterns](#lms-patterns) | 44 | Learning management, themes, quizzes, community |
71
+ | [methodology](#methodology) | 13 | WARRIOR workflow, session patterns, debugging, agent learning |
72
+ | [patterns-standards](#patterns-standards) | 7 | Coding patterns, error resilience, i18n, plugin structure |
73
+ | [security](#security) | 1 | SQL injection, path traversal, input validation |
74
+ | [testing](#testing) | 1 | Playwright security tests, E2E regression |
75
+ | [theology](#theology) | 1 | Biblical pattern analysis for LLM systems |
76
+ | [video-media](#video-media) | 16 | Video players, YouTube, Vimeo, progress tracking, crash-resilient recording |
77
+ | [_general/frontend](#general-frontend) | 5 | General-scope frontend patterns (any project) |
78
+ | [_general/database-solutions](#general-database-solutions) | 2 | General-scope database persistence and vector DB patterns (any project) |
79
+ | [_general/performance](#general-performance) | 1 | General-scope performance and caching patterns (any project) |
80
+ | [_general/patterns-standards](#general-patterns-standards) | 6 | General-scope design patterns (any project) |
81
+ | [_general/methodology](#general-methodology) | 7 | General-scope development methodology |
82
+ | [_general/integrations](#general-integrations) | 2 | General-scope MCP and tool integration patterns |
83
+
84
+ ---
85
+
86
+ ## Recent Additions (2026-03-01)
87
+
88
+ | Skill | Category | Scope | Description |
89
+ |-------|----------|-------|-------------|
90
+ | cache-augmented-generation | performance | General | Pre-load stable docs into cached prompt prefix instead of RAG — eliminates retrieval overhead for small corpora |
91
+ | qdrant-blue-green-aliases | database-solutions | General | Atomic collection alias swaps for zero-downtime Qdrant reindexing and migrations |
92
+ | mcp-composite-tool-orchestration | integrations | General | Consolidate 3-5 sequential MCP tool calls into single composite operations — 58-72% token savings |
93
+ | claude-code-local-mcp-integration | integrations | General | Register, configure, debug, and test local stdio MCP servers with Claude Code |
94
+ | persistent-analysis-storage | database-solutions | General | Dual-storage (localStorage + DB) with favorites, public sharing (nanoid slugs), cursor pagination |
95
+ | canvas-bubble-animation-grouping | frontend | General | Absolute-positioned canvas with 3 layout algorithms (golden spiral, rectangular grid, binary filter) + Framer Motion spring animations for 150+ item data exploration |
96
+ | react-flow-animated-layout-switching | frontend | General | CSS transitions on React Flow nodes for smooth layout algorithm switching without Framer Motion |
97
+ | svg-sparkline-no-charting-library | frontend | General | Pure SVG sparkline chart — 0KB dependency, full interactivity, percentage-based responsive |
98
+ | framer-motion-layoutid-grouping | frontend | General | FLIP animations for data re-sorting/re-grouping with Framer Motion layoutId + spring physics |
99
+ | domain-specific-layout-algorithms | patterns-standards | General | Pure-function layout registry encoding domain spatial metaphors (mirror arcs, parallel lanes, narrative parabolas) |
100
+ | autonomous-multi-phase-build **v2.0** | methodology | General | Atomic phase contract with per-phase tsc+build verification, status tracking, auto-fix loop |
101
+ | session-memory-lifecycle | automation | Project | Auto-capture session memories on end + auto-inject on start via Claude Code hooks + Qdrant |
102
+
103
+ ---
104
+
105
+ ## Root Level Skills
106
+
107
+ | Skill | Description |
108
+ |-------|-------------|
109
+ | appointment-scheduler-design | Design patterns for appointment scheduling systems |
110
+ | AVAILABLE_TOOLS_REFERENCE | Complete reference of available Claude Code tools and plugins |
111
+ | toolbox/code-graph-and-web-scraping-mcps | CodeGraphContext (Neo4j graph) + Firecrawl (web scraping) MCP servers for refactoring |
112
+ | installer-wizard-patterns | Patterns for building installer/setup wizards |
113
+ | LMS_ZOOM_LEARNING_PATHS_INTEGRATION | Integration guide for Zoom with LMS learning paths |
114
+ | lms-theme-system | Theme system architecture for LMS platforms |
115
+ | SKILLS_LIBRARY_INDEX | Original WARRIOR skills library index |
116
+ | supabase-connection-pooler-fix | Fix for Supabase connection pooling issues |
117
+ | wordpress-style-theme-components | WordPress-inspired theme component patterns |
118
+
119
+ ---
120
+
121
+ ## advanced-features
122
+
123
+ Admin tools, gamification, newsletters, and advanced platform capabilities.
124
+
125
+ | Skill | Description |
126
+ |-------|-------------|
127
+ | ADMIN_PASSWORD_MANAGEMENT_WORDPRESS_STYLE | Admin password reset and management (WordPress-style flows) |
128
+ | bookmark-chapters-system | Visual bookmarks/chapters system for video players |
129
+ | COMMUNITY_SYSTEM_GUIDE | Full-featured social learning platform for LMS |
130
+ | EMAIL_CAMPAIGN_LIMITS | Email campaign rate limits and best practices |
131
+ | GAMIFICATION_SYSTEM | Points, badges, achievements, and leaderboards |
132
+ | HOME_PAGE_BUILDER_GUIDE | Visual page builder for home page customization |
133
+ | PLUGIN_SYSTEM_ARCHITECTURE | WordPress-style plugin/hook system for MERN |
134
+ | PRD_NEWSLETTER_SYSTEM | Newsletter management with Puck visual editor |
135
+ | PRD_NEWSLETTER_TEMPLATE_SYSTEM | Visual newsletter template creation system |
136
+ | PUCK_PAGE_TEMPLATES_SYSTEM | Page template management with Puck editor |
137
+ | SEO_SETTINGS_MANAGEMENT | SEO configuration and meta tag management |
138
+
139
+ ---
140
+
141
+ ## automation
142
+
143
+ Form automation and data population systems.
144
+
145
+ | Skill | Description |
146
+ |-------|-------------|
147
+ | AUTO_POPULATE_COMPLETE_GUIDE | Auto-populate GTA tax forms with intelligent financial data (80% time savings) |
148
+
149
+ ---
150
+
151
+ ## complexity-metrics
152
+
153
+ Code complexity analysis and development velocity optimization.
154
+
155
+ | Skill | Description |
156
+ |-------|-------------|
157
+ | complexity-divider | Complexity metrics as feedback loop for 300-700% velocity gains |
158
+ | work-with-complexity | Complexity-aware guardrails for implementation work |
159
+
160
+ ---
161
+
162
+ ## database-solutions
163
+
164
+ Database schema design, migrations, and PostgreSQL patterns.
165
+
166
+ | Skill | Description |
167
+ |-------|-------------|
168
+ | CONDITIONAL_SQL_MIGRATION_PATTERN | Safe conditional SQL migrations pattern |
169
+ | DATABASE_SCHEMA | MongoDB/Mongoose schema definitions for LMS |
170
+ | DATABASE_SCHEMA_VERIFICATION_GUIDE | Guide for verifying database schema integrity |
171
+ | DATABASE_STRATEGY | Database architecture and strategy decisions |
172
+ | ES_MODULE_SEED_SCRIPT_PATTERN | ES module pattern for database seed scripts |
173
+ | MIGRATION_GUIDE | Database migration procedures and rollback |
174
+ | POSTGRES_SQL_TEMPLATE_BINDING_ERROR | Fix for PostgreSQL template binding errors |
175
+ | POSTGRESQL_LICENSE_TABLE_DESIGN | License table design for PostgreSQL |
176
+ | RLS_SECURITY_GUIDE | Row Level Security implementation guide |
177
+ | SCHEMA_ENHANCEMENTS_GUIDE | Schema enhancement patterns and procedures |
178
+ | SCHEMA_MIGRATION_GUIDE | Comprehensive schema migration guide |
179
+ | SCHEMA_VERIFICATION_QUICK_REFERENCE | Quick reference for schema verification |
180
+ | mariadb-aggregate-function-replacement | MariaDB 10.4 aggregate function replacement with depth-tracking parens |
181
+ | postgresql-to-mysql-runtime-translation | Runtime SQL translation layer for PG-to-MySQL migration (20+ rules) |
182
+ | regex-alternation-ordering-sql-types | Regex alternation ordering to prevent partial matches in SQL type casts |
183
+ | reserved-word-context-aware-quoting | Context-aware reserved word quoting with SAFE_BEFORE set |
184
+ | PLPGSQL_VARIABLE_CONFLICT_FIX | Fix PL/pgSQL RETURNS TABLE column name clashes with #variable_conflict use_column |
185
+
186
+ ---
187
+
188
+ ## deployment-security
189
+
190
+ Production deployment, VPS setup, and security hardening.
191
+
192
+ | Skill | Description |
193
+ |-------|-------------|
194
+ | CPANEL_NODE_DEPLOYMENT | Node.js deployment on cPanel hosting |
195
+ | DEPLOYMENT | General deployment procedures |
196
+ | DEPLOYMENT_CHECKLIST | Pre-deployment verification checklist |
197
+ | DEPLOYMENT_PLAN | Deployment planning and staging |
198
+ | express-secure-file-downloads | Secure file download implementation for Express |
199
+ | KNEX_DATABASE_ABSTRACTION | Database abstraction layer with Knex.js |
200
+ | LICENSE_KEY_SYSTEM | Software licensing and key validation |
201
+ | PHP_INSTALLER_WIZARD_GUIDE | PHP-based installer wizard implementation |
202
+ | PRODUCTION_DEPLOYMENT_GUIDE | Production deployment best practices |
203
+ | PRODUCTION_HARDENING_DOCUMENTATION | Security hardening for production systems |
204
+ | react-production-deployment-desktop-guide | React production deployment for desktop apps |
205
+ | SECURITY | Security implementation and best practices |
206
+ | self-hosted-supabase-coolify-guide | Self-hosted Supabase with Coolify |
207
+ | SUPABASE_EDGE_FUNCTIONS | Supabase Edge Functions development |
208
+ | unique-features-ai-strategy-plaid-security | AI strategy and Plaid security integration |
209
+ | VERCEL_GITHUB_DEPLOYMENT_GUIDE | Vercel deployment with GitHub integration |
210
+ | VPS_DEPLOYMENT_READINESS | VPS deployment preparation checklist |
211
+ | vps-deployment | VPS deployment procedures and configuration |
212
+
213
+ ---
214
+
215
+ ## document-processing
216
+
217
+ PDF forms, file downloads, and document AI integration.
218
+
219
+ | Skill | Description |
220
+ |-------|-------------|
221
+ | document-ai-landingai-integration | Document AI with LandingAI integration |
222
+ | express-secure-file-downloads | Secure file downloads in Express.js |
223
+ | express-secure-file-downloads-mern | MERN stack secure file downloads |
224
+ | pdf-forms-integration/README | PDF forms integration overview |
225
+ | pdf-forms-integration/SKILL | PDF forms integration implementation |
226
+
227
+ ---
228
+
229
+ ## ecommerce
230
+
231
+ E-commerce, Stripe payments, donations, and GTA compliance.
232
+
233
+ | Skill | Description |
234
+ |-------|-------------|
235
+ | ADMIN_PRODUCTS_GUIDE | Admin product management interface |
236
+ | cart-item-count-indicator | Shopping cart item count badge |
237
+ | DONATION_RECEIPT_IMPLEMENTATION_GUIDE | Donation receipt generation guide |
238
+ | ECOMMERCE_API_REFERENCE | E-commerce API endpoints reference |
239
+ | ECOMMERCE_COMPLETION_SUMMARY | E-commerce implementation completion report |
240
+ | ECOMMERCE_IMPLEMENTATION_GUIDE | Complete e-commerce implementation guide |
241
+ | ECOMMERCE_QUICK_REFERENCE | Quick reference for e-commerce features |
242
+ | ECOMMERCE_TESTING_CHECKLIST | E-commerce testing procedures |
243
+ | ECOMMERCE_WORKFLOW_GUIDE | E-commerce workflow documentation |
244
+ | GTA_501C3_DONATION_RECEIPT_REQUIREMENTS | GTA 501(c)(3) donation receipt requirements |
245
+ | GTA_COMPLIANCE_INDEX | Index of GTA compliance documents |
246
+ | GTA_COMPLIANCE_SUMMARY | Summary of GTA compliance requirements |
247
+ | GTA_REQUIRED_RECEIPT_LANGUAGE | Required language for GTA-compliant receipts |
248
+ | PRODUCT_CREATION_EXPANDED | Expanded product creation workflow |
249
+ | stripe-payment-integration-complete | Complete Stripe payment integration solution |
250
+
251
+ ---
252
+
253
+ ## form-solutions
254
+
255
+ Form builders, surveys, and fillable document systems.
256
+
257
+ | Skill | Description |
258
+ |-------|-------------|
259
+ | FILLABLE_PDF_IMPLEMENTATION | Fillable PDF form implementation guide |
260
+ | SURVEYJS_QUESTIONNAIRE_SYSTEM | SurveyJS-based questionnaire system |
261
+
262
+ ---
263
+
264
+ ## integrations
265
+
266
+ Third-party API integrations: payments, meetings, video, security, voice/STT.
267
+
268
+ | Skill | Description |
269
+ |-------|-------------|
270
+ | realtimestt-openwakeword-cuda-windows | 7 gotchas integrating RealtimeSTT + OpenWakeWord + CUDA on Windows (wake word, MKL, float16, PyQt6 import order, debounce) |
271
+ | cloudflare-turnstile-debugging | Debugging Cloudflare Turnstile CAPTCHA |
272
+ | cloudflare-turnstile-implementation | Cloudflare Turnstile implementation guide |
273
+ | PAYPAL_DIAGNOSTIC_REPORT | PayPal integration diagnostic report |
274
+ | PAYPAL_FIX_DEBUG_REPORT | PayPal debugging and fix report |
275
+ | PAYPAL_FIX_QUICK_REFERENCE | Quick fixes for PayPal issues |
276
+ | PAYPAL_SDK_IMPLEMENTATION_REPORT | PayPal SDK implementation guide |
277
+ | PAYPAL_TESTING_GUIDE | PayPal integration testing procedures |
278
+ | rss-podcast-integration | RSS feed and podcast integration |
279
+ | STRIPE_CHANGES_QUICK_REFERENCE | Stripe API changes quick reference |
280
+ | STRIPE_DEBUG_COMPLETE | Complete Stripe debugging guide |
281
+ | STRIPE_DONATIONS_COMPLETE_IMPLEMENTATION | Stripe donations full implementation |
282
+ | STRIPE_DONATIONS_IMPLEMENTATION_PLAN | Stripe donations implementation plan |
283
+ | STRIPE_ELEMENTS_FIX | Stripe Elements component fixes |
284
+ | STRIPE_FIX_SESSION_SUMMARY | Stripe session fix summary |
285
+ | STRIPE_PAYMENT_FIX_COMPLETE | Complete Stripe payment fix guide |
286
+ | STRIPE_PAYMENT_FIXES | Collection of Stripe payment fixes |
287
+ | STRIPE_SESSION_PACKAGE_CHECKOUT | Stripe session-based package checkout |
288
+ | STRIPE_TEST_CARDS | Stripe test card numbers reference |
289
+ | stripe-payment-integration-complete | Complete Stripe integration solution |
290
+ | VIRTUAL_MEETINGS_IMPLEMENTATION | Virtual meetings system implementation |
291
+ | WORDPRESS_LMS_DATA_RECOVERY | WordPress LMS data recovery |
292
+ | YOUTUBE_API_SETUP | YouTube API configuration guide |
293
+ | YOUTUBE_BOOKMARKING_EXPLANATION | YouTube bookmarking system explained |
294
+ | YOUTUBE_BOOKMARKING_SOLUTION | YouTube bookmarking implementation |
295
+ | YOUTUBE_OAUTH_SETUP_GUIDE | YouTube OAuth setup guide |
296
+ | YOUTUBE_VIDEO_FIX_COMPLETE | YouTube video playback fixes |
297
+ | ZOOM_API_INTEGRATION_GUIDE | Complete Zoom API integration guide |
298
+ | ZOOM_API_TESTING_GUIDE | Zoom API testing procedures |
299
+ | ZOOM_CREDENTIAL_FIX | Zoom credential configuration fix |
300
+ | ZOOM_CREDENTIALS_VERIFICATION | Zoom credentials verification guide |
301
+ | ZOOM_INTEGRATION_SUMMARY | Zoom integration summary |
302
+ | ZOOM_MEETING_LIFECYCLE | Zoom meeting lifecycle management |
303
+ | ZOOM_NEXT_STEPS | Zoom integration next steps |
304
+ | ZOOM_OAUTH2_SETUP | Zoom OAuth2 setup guide |
305
+ | ZOOM_RECORDINGS_IMPLEMENTATION | Zoom recordings integration |
306
+ | ZOOM_REQUIRED_SCOPES | Required Zoom API scopes |
307
+ | ZOOM_SCOPES_CLEANUP | Zoom scopes cleanup guide |
308
+ | ZOOM_TESTING_CHECKLIST | Zoom integration testing checklist |
309
+ | ZOOM_WEBHOOK_INTEGRATION_AUTO_PUBLISH | Zoom webhook auto-publish integration |
310
+ | zoom-meetings-crud-imported | Zoom meetings CRUD operations |
311
+ | zoom-meetings-import | Zoom meetings import functionality |
312
+ | CLAUDE_CODE_TOKEN_ANALYTICS | Parse Claude Code stats-cache.json for token usage dashboards with cost/cache savings |
313
+
314
+ ---
315
+
316
+ ## infrastructure
317
+
318
+ Desktop app bundling, sidecar management, port configuration.
319
+
320
+ | Skill | Description |
321
+ |-------|-------------|
322
+ | TAURI_NCC_SIDECAR_BUNDLING | Bundle Node.js Express backend as Tauri sidecar using @vercel/ncc with native addon support |
323
+ | TAURI_DYNAMIC_PORT_IPC | Dynamic port discovery in Rust with frontend IPC for Tauri sidecar processes |
324
+
325
+ ---
326
+
327
+ ## lms-patterns
328
+
329
+ Learning Management System patterns, themes, quizzes, and community.
330
+
331
+ | Skill | Description |
332
+ |-------|-------------|
333
+ | APPOINTMENT_SCHEDULER_RESEARCH | Appointment scheduler research |
334
+ | COMMUNITY_API_QUICK_REFERENCE | Community API quick reference |
335
+ | COMMUNITY_IMPLEMENTATION_QUICK_GUIDE | Community implementation quick guide |
336
+ | COMMUNITY_SYSTEM_GUIDE | Full community system guide |
337
+ | COMPLETION_MODE_MIGRATION_GUIDE | Course completion mode migration |
338
+ | installer/CPANEL_INSTALLATION_GUIDE | cPanel installation guide |
339
+ | installer/DATABASE_ABSTRACTION | Database abstraction layer |
340
+ | installer/IMPLEMENTATION_ROADMAP | Installer implementation roadmap |
341
+ | installer/INSTALLER_ARCHITECTURE | Installer architecture design |
342
+ | installer/LICENSING_SYSTEM | Software licensing system |
343
+ | installer/research/LMS_INSTALLER_ANALYSIS | LMS installer analysis |
344
+ | installer/research/WORDPRESS_INSTALLER_ANALYSIS | WordPress installer analysis |
345
+ | installer/STARTER_CONTENT_PACK | Starter content pack system |
346
+ | installer/THEME_INSTALLER_INTEGRATION | Theme installer integration |
347
+ | installer/themes/CLASSIC_THEME | Classic theme specification |
348
+ | installer/themes/COLORFUL_MODERN_THEME | Colorful modern theme |
349
+ | LMS_IMPLEMENTATION_ROADMAP | LMS implementation roadmap |
350
+ | LMS_INDEX | LMS documentation index |
351
+ | LMS_QUICK_REFERENCE | LMS quick reference |
352
+ | LMS_RESEARCH_SUMMARY | LMS research summary |
353
+ | LMS_SETUP_SUMMARY | LMS setup summary |
354
+ | LMS_STANDARDS_RESEARCH | LMS standards research |
355
+ | LMS_START_HERE_CHECKLIST | LMS getting started checklist |
356
+ | MEMBERSHIP_IMPLEMENTATION_GUIDE | Membership system implementation |
357
+ | MEMBERSHIP_QUICK_REFERENCE | Membership quick reference |
358
+ | MEMBERSHIP_SYSTEMS_RESEARCH | Membership systems research |
359
+ | OPENSOURCE_THEME_SYSTEMS | Open source theme systems research |
360
+ | PRD_ADMIN_REPORTING_SYSTEM | Admin reporting system PRD |
361
+ | QUIZ_DEPLOYMENT_GUIDE | Quiz system deployment guide |
362
+ | QUIZ_INTEGRATION_GUIDE | Quiz integration guide |
363
+ | QUIZ_SESSION_COMPLETE_OCT19 | Quiz session completion report |
364
+ | QUIZ_SYSTEM_SUMMARY | Quiz system summary |
365
+ | THEME_COMPLETE_DEVELOPER_GUIDE | Complete theme developer guide |
366
+ | THEME_DEVELOPER_HANDBOOK | Theme developer handbook |
367
+ | THEME_SYSTEM_DEVELOPER_GUIDE | Theme system developer guide |
368
+ | THEME_VITE_REQUIREMENTS | Theme Vite build requirements |
369
+ | theme-system/API_REFERENCE | Theme system API reference |
370
+ | theme-system/QUICK_START_GUIDE | Theme system quick start |
371
+ | theme-system/README | Theme system overview |
372
+ | theme-system/THEME_EXAMPLE_PRD | Theme example PRD |
373
+ | theme-system/THEME_PRD_TEMPLATE | Theme PRD template |
374
+ | theme-system/THEME_SYSTEM_ARCHITECTURE | Theme system architecture |
375
+ | UI_DESIGN_REPORTING_SYSTEM | UI design for reporting system |
376
+ | VIDEO_PROGRESS_DRIP_FEED_IMPLEMENTATION | Video progress drip feed |
377
+ | image-overflow-fix | Fix broken image alt text causing layout overflow in admin pages |
378
+
379
+ ---
380
+
381
+ ## methodology
382
+
383
+ Development methodology, WARRIOR workflow, and session patterns.
384
+
385
+ | Skill | Description |
386
+ |-------|-------------|
387
+ | ADVANCED_ORCHESTRATION_PATTERNS | Advanced AI orchestration patterns |
388
+ | CRITICAL_PATTERNS_DOCUMENTATION_COMPLETE | Critical patterns documentation |
389
+ | DELIVERABLES_SUMMARY | Project deliverables summary |
390
+ | MASTER_COMPLETION_SUMMARY | Master completion summary |
391
+ | MASTER_SESSION_COMPLETION | Session completion checklist |
392
+ | MERN_QUICK_REFERENCE | MERN stack quick reference |
393
+ | QUICK_REFERENCE | General quick reference |
394
+ | SESSION_COMPLETION_SUMMARY | Session completion summary |
395
+ | SESSION_SUMMARY | Session summary template |
396
+ | WARRIOR_WORKFLOW_DEBUGGING_PROTOCOL | WARRIOR debugging protocol - verify schema first |
397
+ | PATH_VERIFICATION_GATE | **[NEW v5.0]** Mandatory wrong-repo circuit breaker for subagent spawns |
398
+ | SDFT_ONPOLICY_SELF_DISTILLATION | **[NEW v5.0]** Predict-then-read protocol for agent handoff learning (MIT SDFT) |
399
+ | INSTRUMENTATION_OVER_RESTRICTION | **[NEW v8.0]** Boris Cherny principle: give tools + context, verify output — don't gate every action (2-3x quality) |
400
+
401
+ ---
402
+
403
+ ## patterns-standards
404
+
405
+ Coding patterns, error handling, and development standards.
406
+
407
+ | Skill | Description |
408
+ |-------|-------------|
409
+ | API_PATTERN_FIX_SUMMARY | API pattern fixes summary |
410
+ | claude-code-plugin-structure | **[NEW]** Claude Code local plugin structure, frontmatter, debugging |
411
+ | CRITICAL_CODING_PATTERNS | 5 critical patterns that prevent 80% of bugs |
412
+ | ERROR_RESILIENCE_IMPLEMENTATION | Error resilience implementation patterns |
413
+ | irs-tax-calculations-official-language | GTA tax calculation official language |
414
+ | react-i18next-setup | React internationalization with i18next |
415
+ | thesys-c1-generative-ui-integration | Thesys C1 generative UI integration |
416
+
417
+ ---
418
+
419
+ ## theology
420
+
421
+ Biblical analysis and theological computing patterns.
422
+
423
+ | Skill | Description |
424
+ |-------|-------------|
425
+ | BIBLICAL_PATTERN_ANALYSIS_LLM | Biblical pattern analysis for LLM systems - ELS, acrostics, typology |
426
+
427
+ ---
428
+
429
+ ## security
430
+
431
+ SQL injection prevention, path traversal, input validation, and security hardening.
432
+
433
+ | Skill | Description |
434
+ |-------|-------------|
435
+ | sql-injection-prevention-postgresjs | **[NEW]** Column whitelists + sanitizeSort() for postgres.js dynamic queries |
436
+
437
+ ---
438
+
439
+ ## testing
440
+
441
+ E2E testing, security regression, and test automation patterns.
442
+
443
+ | Skill | Description |
444
+ |-------|-------------|
445
+ | playwright-api-security-tests | **[NEW]** 26-test Playwright API security regression suite template |
446
+
447
+ ---
448
+
449
+ ## video-media
450
+
451
+ Video players, streaming, progress tracking, and media integration.
452
+
453
+ | Skill | Description |
454
+ |-------|-------------|
455
+ | bookmark-chapters-system | Visual bookmarks/chapters for video players |
456
+ | **crash-resilient-recording** | **v2.0 — 6-layer crash resilience: IndexedDB audio buffer, 10s chunks, ondataavailable upload, offline queue + reconnect flush, sendBeacon, heartbeat sweep** |
457
+ | COMPLETE_VIDEO_IMPLEMENTATION | Complete video implementation guide |
458
+ | fix-reactplayer-youtube-playback | ReactPlayer YouTube playback fixes |
459
+ | fix-youtube-bookmark-timestamps | YouTube bookmark timestamp fixes |
460
+ | importing-youtube-videos | YouTube video import guide |
461
+ | importing-youtube-videos-mern | MERN YouTube video import |
462
+ | VIDEO_COMPLETION_MODE_FEATURE | Video completion mode feature |
463
+ | VIDEO_PLAYER_ENHANCEMENTS | Video player enhancement features |
464
+ | VIDEO_PROGRESS_TRACKING | Video progress tracking system |
465
+ | VIDEO_SETUP_COMPLETE | Video setup completion guide |
466
+ | VIDEO_SETUP_COMPLETE_GUIDE | Complete video setup guide |
467
+ | VIDEO_UPLOAD_ARCHITECTURE_RESEARCH | Video upload architecture research |
468
+ | video-player-integration-guide | Video player integration guide |
469
+ | VIMEO_API_SETUP | Vimeo API setup guide |
470
+ | WARRIOR_VIDEO_STATUS | WARRIOR video implementation status |
471
+ | **remotion-best-practices** (external) | Programmatic video creation with React/Remotion — 37 rules covering animations, audio, 3D, captions, charts, transitions, text animations, Tailwind, voiceover. Location: `~/.claude/skills/remotion-best-practices/` (symlink to `~/.agents/skills/`) |
472
+
473
+ ---
474
+
475
+ ## _general/database-solutions {#general-database-solutions}
476
+
477
+ General-scope database persistence patterns applicable to any project.
478
+
479
+ | Skill | Description |
480
+ |-------|-------------|
481
+ | persistent-analysis-storage | Dual-storage (localStorage + PostgreSQL) with favorites, public sharing (nanoid slugs), cursor pagination, tabbed sidebar UI |
482
+ | qdrant-blue-green-aliases | **[NEW]** Atomic collection alias swaps for zero-downtime Qdrant reindexing — blue-green deployment pattern with rollback |
483
+
484
+ ---
485
+
486
+ ## _general/performance {#general-performance}
487
+
488
+ General-scope performance and caching patterns applicable to any project.
489
+
490
+ | Skill | Description |
491
+ |-------|-------------|
492
+ | cache-augmented-generation | **[NEW]** Pre-load stable document corpus into cached prompt prefix (Anthropic prompt caching) as alternative to RAG for small, stable corpora |
493
+
494
+ ---
495
+
496
+ ## _general/methodology {#general-methodology}
497
+
498
+ General-scope methodology skills applicable to any project.
499
+
500
+ | Skill | Description |
501
+ |-------|-------------|
502
+ | multi-project-autonomous-build | 3+ project parallel autonomous build workflow |
503
+ | autonomous-multi-phase-build **v2.0** | **[NEW]** Atomic phase contract with per-phase tsc+build verification, status tracking, auto-fix loop |
504
+ | llm-judge-memory-crud | **[NEW v12.0]** Mem0-style ADD/UPDATE/DELETE/NOOP pipeline for vector memory CRUD — transforms append-only vector DBs into self-maintaining systems |
505
+ | claude-md-archival | **[NEW]** Archive oversized CLAUDE.md to `history/claudemdbackup.md` — keeps working context lean while preserving full project history |
506
+ | git-worktrees-parallel | **[NEW]** Boris Cherny's #1 tip: 3-5 parallel worktrees each with own Claude session — `claude --worktree <name>`, subagent `isolation: worktree`, full workflow |
507
+ | shell-autonomous-loop-fixplan | **[NEW v1.0]** Shell-level autonomous loop (bash spawns fresh `claude --resume` per iteration) + `@fix_plan.md` persistent task tracking — context-limit-immune autonomy with circuit breaker, rate limiting, BLOCKED signal, session management. Inspired by bmalph/Ralph. |
508
+ | learncoding-agentic-pattern | **[NEW v1.0]** Simon Willison's Linear Walkthrough pattern — WHAT/WHY/PATTERN per file, Showboat snippet extraction (no hallucination), cognitive debt prevention. Anti-vibe-coding. BFS dependency graph traversal from entry point outward. |
509
+ | debug-swarm-researcher-escape-hatch | **[NEW v1.0]** When ALL debug swarm agents return BLOCKED — escape the loop, spawn a researcher (skills lib + MCP + WebSearch + GitHub), write findings to `.planning/research/`, re-inject into fresh swarm iteration. Doesn't count as an iteration. BLOCKED response contract + orchestrator escape logic included. |
510
+
511
+ ---
512
+
513
+ ## _general/patterns-standards {#general-patterns-standards}
514
+
515
+ General-scope design patterns applicable to any project.
516
+
517
+ | Skill | Description |
518
+ |-------|-------------|
519
+ | domain-specific-layout-algorithms | **[NEW]** Pure-function layout registry encoding domain spatial metaphors — mirror arcs, parallel lanes, narrative parabolas, concentric rings |
520
+ | fullstack-bible-study-platform | React + xyflow + Prisma + Qdrant Bible study platform blueprint |
521
+ | python-desktop-app-architecture | Full PyQt6 + pystray + STT/TTS desktop app blueprint |
522
+ | realtime-monitoring-dashboard | Vite + React + Express + SSE real-time dashboard blueprint |
523
+ | togglable-processing-pipeline | Config-driven feature pipeline with fail-fast ordering |
524
+
525
+ ---
526
+
527
+ ## _general/frontend {#general-frontend}
528
+
529
+ General-scope frontend skills applicable to any web project.
530
+
531
+ | Skill | Description |
532
+ |-------|-------------|
533
+ | canvas-bubble-animation-grouping | **[NEW]** Absolute-positioned canvas with 3 layout algorithms (golden spiral, rect grid, binary filter) + spring animations for 150+ items |
534
+ | react-flow-animated-layout-switching | **[NEW]** CSS transitions on `.react-flow__node` transform for smooth layout algorithm switching — scoped, 600ms, no Framer Motion needed |
535
+ | svg-sparkline-no-charting-library | **[NEW]** Pure SVG sparkline chart with viewBox percentage coordinates — 0KB dependency, hover tooltips, click handlers |
536
+ | framer-motion-layoutid-grouping | **[NEW]** FLIP animations for data re-sorting/re-grouping — stable layoutId, spring physics (stiffness 400, damping 30), whileHover/whileTap |
537
+ | pyqt6-settings-dialog | Dark-themed PyQt6 settings GUI replacing raw YAML editing |
538
+ | safari-sw-cache-poisoning | Nuclear SW purge pattern for Safari caching stale service workers for months/years, breaking all API calls |
539
+ | safari-csp-theme-color-debugging | Debugging Safari-specific CSP mismatches, theme-color bars, and animation failures on iOS |
540
+
541
+ ---
542
+
543
+ ## _general/integrations {#general-integrations}
544
+
545
+ General-scope MCP and tool integration patterns applicable to any project.
546
+
547
+ | Skill | Description |
548
+ |-------|-------------|
549
+ | mcp-composite-tool-orchestration | **[NEW]** Consolidate 3-5 sequential MCP tool calls into single composite operations — batch_read, multi_search, project_overview, trace_references, search_and_read. 58-72% token savings. |
550
+ | claude-code-local-mcp-integration | **[NEW]** Register, configure, debug, and test local stdio MCP servers with Claude Code — mcp.json setup, env vars, startup failure debugging, common failure modes |
551
+
552
+ ---
553
+
554
+ ## Usage Examples
555
+
556
+ ### Find a skill by topic
557
+ ```bash
558
+ # Search for Stripe-related skills
559
+ grep -r "Stripe" SKILLS-INDEX.md
560
+
561
+ # Search for deployment skills
562
+ grep -i "deploy" SKILLS-INDEX.md
563
+ ```
564
+
565
+ ### Read a specific skill
566
+ ```bash
567
+ # Using Claude Code's Read tool
568
+ Read: C:/Users/FirstName/.claude/plugins/dominion-flow/skills-library/integrations/STRIPE_TEST_CARDS.md
569
+ ```
570
+
571
+ ### List all skills in a category
572
+ ```bash
573
+ ls -la C:/Users/FirstName/.claude/plugins/dominion-flow/skills-library/integrations/
574
+ ```
575
+
576
+ ---
577
+
578
+ ## Contributing
579
+
580
+ To add new skills:
581
+ 1. Create a markdown file in the appropriate category folder
582
+ 2. Include a clear title and description in the first section
583
+ 3. Update this index with the new skill
584
+ 4. Commit changes to git
585
+
586
+ ---
587
+
588
+ *Generated from WARRIOR workflow skills library import*