@fenixforce/edition-pro 0.1.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 (173) hide show
  1. package/dist/api/approval-routes.d.ts +15 -0
  2. package/dist/api/fleet-routes.d.ts +23 -0
  3. package/dist/api/integration-routes.d.ts +17 -0
  4. package/dist/api/middleware.d.ts +37 -0
  5. package/dist/boot.d.ts +37 -0
  6. package/dist/business/approval-queue.d.ts +94 -0
  7. package/dist/business/arena.d.ts +71 -0
  8. package/dist/business/best-of-n.d.ts +68 -0
  9. package/dist/business/brainstorm.d.ts +42 -0
  10. package/dist/business/compile-checker.d.ts +50 -0
  11. package/dist/business/debate.d.ts +38 -0
  12. package/dist/business/fleet-budget.d.ts +69 -0
  13. package/dist/business/fleet-config.d.ts +125 -0
  14. package/dist/business/fleet.d.ts +85 -0
  15. package/dist/business/handoff.d.ts +56 -0
  16. package/dist/business/hat-system.d.ts +57 -0
  17. package/dist/business/index.d.ts +44 -0
  18. package/dist/business/integration-registry.d.ts +66 -0
  19. package/dist/business/node-pipeline.d.ts +62 -0
  20. package/dist/business/oracle.d.ts +64 -0
  21. package/dist/business/roles/index.d.ts +7 -0
  22. package/dist/business/roles/judge.d.ts +24 -0
  23. package/dist/business/roles/planner.d.ts +30 -0
  24. package/dist/business/roles/types.d.ts +37 -0
  25. package/dist/business/roles/worker.d.ts +25 -0
  26. package/dist/business/router.d.ts +75 -0
  27. package/dist/business/shared-memory.d.ts +85 -0
  28. package/dist/business/status-detector.d.ts +52 -0
  29. package/dist/business/swarm-registry.d.ts +63 -0
  30. package/dist/business/templates.d.ts +55 -0
  31. package/dist/business/workspace-manager.d.ts +105 -0
  32. package/dist/index.d.ts +21 -0
  33. package/dist/index.js +638 -0
  34. package/dist/infrastructure/pty-agent.d.ts +74 -0
  35. package/dist/migrations/migrate.d.ts +7 -0
  36. package/dist/migrations/runner.d.ts +49 -0
  37. package/dist/workspace/worktree.d.ts +69 -0
  38. package/package.json +37 -0
  39. package/skills/builtin/academic-researcher/SKILL.md +51 -0
  40. package/skills/builtin/advanced-recon/SKILL.md +75 -0
  41. package/skills/builtin/agent-governance/SKILL.md +122 -0
  42. package/skills/builtin/algorithmic-art/SKILL.md +55 -0
  43. package/skills/builtin/api-attack-surface-mapper/SKILL.md +88 -0
  44. package/skills/builtin/api-development/SKILL.md +147 -0
  45. package/skills/builtin/api-exploit-prover/SKILL.md +74 -0
  46. package/skills/builtin/api-integration/SKILL.md +73 -0
  47. package/skills/builtin/api-security-tester/SKILL.md +82 -0
  48. package/skills/builtin/api-test-executor/SKILL.md +62 -0
  49. package/skills/builtin/app-store-optimization/SKILL.md +46 -0
  50. package/skills/builtin/audio-tour-guide/SKILL.md +18 -0
  51. package/skills/builtin/auth-flow-operator/SKILL.md +70 -0
  52. package/skills/builtin/autonomous-rag/SKILL.md +21 -0
  53. package/skills/builtin/backend-development/SKILL.md +265 -0
  54. package/skills/builtin/binary-analysis-analyst/SKILL.md +61 -0
  55. package/skills/builtin/binary-analysis-core/SKILL.md +65 -0
  56. package/skills/builtin/binary-recon/SKILL.md +64 -0
  57. package/skills/builtin/blackboard-coordination/SKILL.md +56 -0
  58. package/skills/builtin/blog-to-podcast/SKILL.md +18 -0
  59. package/skills/builtin/blog-writing/SKILL.md +36 -0
  60. package/skills/builtin/brainstorming/SKILL.md +69 -0
  61. package/skills/builtin/brand-design/SKILL.md +42 -0
  62. package/skills/builtin/ci-cd-pipelines/SKILL.md +210 -0
  63. package/skills/builtin/cloud-infrastructure/SKILL.md +140 -0
  64. package/skills/builtin/code-review/SKILL.md +88 -0
  65. package/skills/builtin/code-review-analyst/SKILL.md +96 -0
  66. package/skills/builtin/code-review-recon/SKILL.md +64 -0
  67. package/skills/builtin/code-review-verifier/SKILL.md +55 -0
  68. package/skills/builtin/coding-agent-team/SKILL.md +13 -0
  69. package/skills/builtin/competitor-intelligence/SKILL.md +39 -0
  70. package/skills/builtin/content-engine/SKILL.md +82 -0
  71. package/skills/builtin/context7-docs/SKILL.md +145 -0
  72. package/skills/builtin/copywriting/SKILL.md +38 -0
  73. package/skills/builtin/corrective-rag/SKILL.md +19 -0
  74. package/skills/builtin/cost-optimization/SKILL.md +131 -0
  75. package/skills/builtin/crypto-vulnerability-analyst/SKILL.md +64 -0
  76. package/skills/builtin/customer-support/SKILL.md +48 -0
  77. package/skills/builtin/customer-voice-support/SKILL.md +43 -0
  78. package/skills/builtin/data-analysis/SKILL.md +57 -0
  79. package/skills/builtin/data-visualization/SKILL.md +33 -0
  80. package/skills/builtin/database-design/SKILL.md +119 -0
  81. package/skills/builtin/decision-helper/SKILL.md +84 -0
  82. package/skills/builtin/deep-research/SKILL.md +68 -0
  83. package/skills/builtin/deepwiki-research/SKILL.md +115 -0
  84. package/skills/builtin/dependency-audit/SKILL.md +46 -0
  85. package/skills/builtin/doc-coauthoring/SKILL.md +48 -0
  86. package/skills/builtin/docker-deployment/SKILL.md +243 -0
  87. package/skills/builtin/docx-generation/SKILL.md +135 -0
  88. package/skills/builtin/dry-run-harness/SKILL.md +61 -0
  89. package/skills/builtin/editor/SKILL.md +44 -0
  90. package/skills/builtin/email-drafter/SKILL.md +42 -0
  91. package/skills/builtin/error-handling/SKILL.md +82 -0
  92. package/skills/builtin/eval-harness/SKILL.md +197 -0
  93. package/skills/builtin/evaluation-framework/SKILL.md +51 -0
  94. package/skills/builtin/exploit-writer/SKILL.md +63 -0
  95. package/skills/builtin/fact-checker/SKILL.md +51 -0
  96. package/skills/builtin/filesystem-context/SKILL.md +47 -0
  97. package/skills/builtin/financial-coach/SKILL.md +18 -0
  98. package/skills/builtin/finding-chain-correlator/SKILL.md +70 -0
  99. package/skills/builtin/finding-verifier/SKILL.md +65 -0
  100. package/skills/builtin/frontend-design/SKILL.md +104 -0
  101. package/skills/builtin/frontend-development/SKILL.md +227 -0
  102. package/skills/builtin/frontend-slides/SKILL.md +155 -0
  103. package/skills/builtin/fullstack-project/SKILL.md +286 -0
  104. package/skills/builtin/game-development/SKILL.md +60 -0
  105. package/skills/builtin/git-workflow/SKILL.md +44 -0
  106. package/skills/builtin/i18n-localization/SKILL.md +38 -0
  107. package/skills/builtin/image-prompt-engineering/SKILL.md +37 -0
  108. package/skills/builtin/investment-research/SKILL.md +33 -0
  109. package/skills/builtin/investor-materials/SKILL.md +90 -0
  110. package/skills/builtin/javascript-surface-analyzer/SKILL.md +66 -0
  111. package/skills/builtin/markdown-reports/SKILL.md +68 -0
  112. package/skills/builtin/market-research/SKILL.md +69 -0
  113. package/skills/builtin/mcp-builder/SKILL.md +86 -0
  114. package/skills/builtin/meeting-notes/SKILL.md +47 -0
  115. package/skills/builtin/memory-safety-analyst/SKILL.md +61 -0
  116. package/skills/builtin/meta-controller/SKILL.md +44 -0
  117. package/skills/builtin/mixture-of-agents/SKILL.md +53 -0
  118. package/skills/builtin/monitoring-observability/SKILL.md +169 -0
  119. package/skills/builtin/negotiation-simulator/SKILL.md +24 -0
  120. package/skills/builtin/nestjs-development/SKILL.md +56 -0
  121. package/skills/builtin/nextjs-development/SKILL.md +55 -0
  122. package/skills/builtin/parallel-dispatch/SKILL.md +83 -0
  123. package/skills/builtin/pdf-generation/SKILL.md +169 -0
  124. package/skills/builtin/personal-finance/SKILL.md +17 -0
  125. package/skills/builtin/pev-workflow/SKILL.md +62 -0
  126. package/skills/builtin/planning-with-files/SKILL.md +59 -0
  127. package/skills/builtin/pptx-generation/SKILL.md +117 -0
  128. package/skills/builtin/prisma-orm/SKILL.md +48 -0
  129. package/skills/builtin/rag-database-routing/SKILL.md +38 -0
  130. package/skills/builtin/rapid-prototyping/SKILL.md +152 -0
  131. package/skills/builtin/react-development/SKILL.md +244 -0
  132. package/skills/builtin/react-native-mobile/SKILL.md +113 -0
  133. package/skills/builtin/refactoring/SKILL.md +39 -0
  134. package/skills/builtin/reflexive-metacognition/SKILL.md +29 -0
  135. package/skills/builtin/riper-workflow/SKILL.md +214 -0
  136. package/skills/builtin/security-audit/SKILL.md +113 -0
  137. package/skills/builtin/security-self-audit/SKILL.md +311 -0
  138. package/skills/builtin/self-evolving-agent/SKILL.md +28 -0
  139. package/skills/builtin/self-improvement-loop/SKILL.md +58 -0
  140. package/skills/builtin/semantic-search/SKILL.md +93 -0
  141. package/skills/builtin/seo-audit-team/SKILL.md +27 -0
  142. package/skills/builtin/seo-optimization/SKILL.md +49 -0
  143. package/skills/builtin/server-management/SKILL.md +190 -0
  144. package/skills/builtin/social-media-content/SKILL.md +50 -0
  145. package/skills/builtin/sprint-planner/SKILL.md +49 -0
  146. package/skills/builtin/strategic-compact/SKILL.md +61 -0
  147. package/skills/builtin/strategy-advisor/SKILL.md +51 -0
  148. package/skills/builtin/structured-thinking/SKILL.md +70 -0
  149. package/skills/builtin/subagent-development/SKILL.md +105 -0
  150. package/skills/builtin/system-design/SKILL.md +66 -0
  151. package/skills/builtin/systematic-debugging/SKILL.md +87 -0
  152. package/skills/builtin/tailwind-css/SKILL.md +55 -0
  153. package/skills/builtin/taint-flow-tracer/SKILL.md +89 -0
  154. package/skills/builtin/teaching-agent-team/SKILL.md +32 -0
  155. package/skills/builtin/tech-debt-manager/SKILL.md +67 -0
  156. package/skills/builtin/technical-documentation/SKILL.md +47 -0
  157. package/skills/builtin/test-driven-development/SKILL.md +70 -0
  158. package/skills/builtin/theme-factory/SKILL.md +244 -0
  159. package/skills/builtin/threat-model-generator/SKILL.md +105 -0
  160. package/skills/builtin/trust-layer/SKILL.md +43 -0
  161. package/skills/builtin/typescript-patterns/SKILL.md +61 -0
  162. package/skills/builtin/ui-ux-design/SKILL.md +75 -0
  163. package/skills/builtin/verification-before-completion/SKILL.md +41 -0
  164. package/skills/builtin/verification-loop/SKILL.md +120 -0
  165. package/skills/builtin/waf-bypass-agent/SKILL.md +97 -0
  166. package/skills/builtin/web-artifacts-builder/SKILL.md +117 -0
  167. package/skills/builtin/web-assessment-executor/SKILL.md +66 -0
  168. package/skills/builtin/web-exploit-prover/SKILL.md +58 -0
  169. package/skills/builtin/web-scraping/SKILL.md +63 -0
  170. package/skills/builtin/webapp-testing/SKILL.md +86 -0
  171. package/skills/builtin/webhook-development/SKILL.md +62 -0
  172. package/skills/builtin/writing-skills/SKILL.md +67 -0
  173. package/skills/builtin/xlsx-generation/SKILL.md +116 -0
@@ -0,0 +1,60 @@
1
+ ---
2
+ name: game-development
3
+ description: "Use this skill when building games, game loops, physics, rendering, or game state machines. Triggers: 'game', 'game loop', 'physics', 'collision', 'sprite', 'game engine', 'canvas game', 'WebGL', or any request to build interactive games."
4
+ license: MIT
5
+ ---
6
+
7
+ # Game Development
8
+
9
+ ## What This Skill Does
10
+
11
+ Build browser-based games. Game loops, state machines, physics, collision detection, rendering, input handling, and audio.
12
+
13
+ ## Game Loop
14
+
15
+ ```typescript
16
+ let lastTime = 0;
17
+
18
+ function gameLoop(currentTime: number) {
19
+ const deltaTime = (currentTime - lastTime) / 1000;
20
+ lastTime = currentTime;
21
+
22
+ update(deltaTime); // Physics, AI, game logic
23
+ render(); // Draw everything
24
+
25
+ requestAnimationFrame(gameLoop);
26
+ }
27
+
28
+ requestAnimationFrame(gameLoop);
29
+ ```
30
+
31
+ ## Game State Machine
32
+
33
+ ```typescript
34
+ type GameState = "menu" | "playing" | "paused" | "gameover";
35
+
36
+ const stateHandlers: Record<GameState, { update: Function; render: Function }> = {
37
+ menu: { update: updateMenu, render: renderMenu },
38
+ playing: { update: updateGame, render: renderGame },
39
+ paused: { update: updatePause, render: renderPause },
40
+ gameover: { update: updateGameOver, render: renderGameOver },
41
+ };
42
+ ```
43
+
44
+ ## Tools
45
+
46
+ | Type | Library |
47
+ |------|---------|
48
+ | 2D Canvas | Native Canvas API |
49
+ | 2D Framework | Phaser, PixiJS |
50
+ | 3D | Three.js, Babylon.js |
51
+ | Physics | Matter.js (2D), Cannon.js (3D) |
52
+ | Audio | Tone.js, Howler.js |
53
+
54
+ ## Rules
55
+
56
+ - Fixed timestep for physics (decouple from frame rate)
57
+ - Separate update logic from render logic
58
+ - Use object pooling for frequently created/destroyed objects (bullets, particles)
59
+ - Input handling should be event-driven, not polled every frame
60
+ - Fetch Context7 docs for whichever game library you're using
@@ -0,0 +1,44 @@
1
+ ---
2
+ name: git-workflow
3
+ description: "Use this skill when the user asks about git branching strategy, commit conventions, merge vs rebase, conflict resolution, or git workflow best practices. Triggers: 'git', 'branch', 'commit', 'merge', 'rebase', 'conflict', 'PR', 'pull request', 'git flow', 'trunk-based', or any git workflow question."
4
+ license: MIT
5
+ ---
6
+
7
+ # Git Workflow
8
+
9
+ ## Branching Strategy (Trunk-Based, Simplified)
10
+
11
+ ```
12
+ main (production) ← feature/xyz ← commits
13
+ ← fix/abc ← commits
14
+ ```
15
+
16
+ - `main`: always deployable
17
+ - `feature/*`: short-lived (1-3 days max), branched from main
18
+ - `fix/*`: bug fixes, branched from main
19
+ - No develop branch. No release branches. Keep it simple.
20
+
21
+ ## Commit Conventions
22
+
23
+ ```
24
+ type(scope): description
25
+
26
+ feat(auth): add JWT refresh token endpoint
27
+ fix(api): handle null response from payment provider
28
+ docs(readme): add deployment instructions
29
+ refactor(users): extract validation into shared module
30
+ test(orders): add edge case tests for discount calculation
31
+ chore(deps): update dependencies
32
+ ```
33
+
34
+ Types: feat, fix, docs, refactor, test, chore, perf, ci
35
+
36
+ ## Rules
37
+
38
+ - Commits are atomic: one logical change per commit
39
+ - Commit messages describe WHAT changed and WHY (not HOW)
40
+ - Rebase feature branches on main before PR (clean history)
41
+ - Squash merge to main (one commit per feature in main history)
42
+ - Never force-push to main
43
+ - Delete branches after merge
44
+ - PR description explains: what, why, how to test, screenshots if UI
@@ -0,0 +1,38 @@
1
+ ---
2
+ name: i18n-localization
3
+ description: "Use this skill for internationalization, translation, locale management, or RTL support. Triggers: 'i18n', 'internationalization', 'translation', 'locale', 'multilingual', 'RTL', 'localize', or requests to make an application work in multiple languages."
4
+ license: MIT
5
+ ---
6
+
7
+ # Internationalization & Localization
8
+
9
+ ## What This Skill Does
10
+
11
+ Make applications work in multiple languages and locales. Translation file management, date/number formatting, pluralization, RTL layout, and locale detection.
12
+
13
+ ## Key Patterns
14
+
15
+ - Extract all user-facing strings into translation files (JSON or YAML)
16
+ - Use ICU message format for pluralization and interpolation
17
+ - Format dates, numbers, and currencies with Intl API
18
+ - Support RTL layouts with logical CSS properties (margin-inline-start, not margin-left)
19
+ - Detect locale from: URL path > cookie > Accept-Language header > default
20
+
21
+ ## Translation File Structure
22
+ ```json
23
+ {
24
+ "common": {
25
+ "save": "Save",
26
+ "cancel": "Cancel",
27
+ "items": "{count, plural, one {# item} other {# items}}"
28
+ }
29
+ }
30
+ ```
31
+
32
+ ## Rules
33
+
34
+ - Never concatenate translated strings (word order varies by language)
35
+ - Never hardcode text in components
36
+ - Test with a 30% longer pseudo-locale (German is ~30% longer than English)
37
+ - Support at minimum: LTR and RTL, date formats, number formats, pluralization
38
+ - Fetch Context7 docs for your i18n library (react-intl, next-intl, i18next)
@@ -0,0 +1,37 @@
1
+ ---
2
+ name: image-prompt-engineering
3
+ description: "Use this skill when the user asks to generate AI images, write image prompts, or create visual content using DALL-E, Midjourney, Stable Diffusion, or similar tools. Triggers: 'image prompt', 'generate image', 'AI art', 'DALL-E', 'Midjourney', 'Stable Diffusion', 'visual', or requests for AI-generated imagery."
4
+ license: MIT
5
+ ---
6
+
7
+ # Image Prompt Engineering
8
+
9
+ ## What This Skill Does
10
+
11
+ Write effective prompts for AI image generation. Structure, style keywords, composition guidance, and iteration patterns for DALL-E, Midjourney, and Stable Diffusion.
12
+
13
+ ## Prompt Structure
14
+
15
+ ```
16
+ [Subject] + [Action/Pose] + [Setting/Background] + [Style] + [Lighting] + [Technical]
17
+ ```
18
+
19
+ Example: "A software developer working at a standing desk, modern minimalist office with floor-to-ceiling windows, editorial photography style, soft natural light from the left, shallow depth of field, 85mm lens"
20
+
21
+ ## Style Keywords
22
+
23
+ | Category | Keywords |
24
+ |----------|----------|
25
+ | Photography | editorial, candid, portrait, macro, aerial, street photography |
26
+ | Art styles | watercolor, oil painting, digital art, vector illustration, line art |
27
+ | Mood | moody, vibrant, ethereal, gritty, serene, dramatic |
28
+ | Lighting | golden hour, studio lighting, neon, backlit, chiaroscuro, flat lighting |
29
+ | Technical | 4K, high detail, shallow depth of field, wide angle, tilt-shift |
30
+
31
+ ## Rules
32
+
33
+ - Be specific about composition ("centered", "rule of thirds", "looking at camera")
34
+ - Specify what you do NOT want with negative prompts where supported
35
+ - Iterate: start broad, then refine based on results
36
+ - Include aspect ratio when relevant (16:9, 1:1, 9:16)
37
+ - For consistency across multiple images, reuse the same style block
@@ -0,0 +1,33 @@
1
+ # Investment Research
2
+ ## Analysis Framework
3
+ 1. **Company Analysis**: revenue, margins, growth rate, competitive position, management
4
+ 2. **Valuation**: P/E, P/S, EV/EBITDA compared to sector peers
5
+ 3. **Risk Assessment**: market risk, sector risk, company-specific risk, regulatory risk
6
+ 4. **Portfolio Fit**: correlation with existing holdings, diversification impact
7
+
8
+ ## Output Format
9
+ ```markdown
10
+ ## Company: [Name]
11
+ **Sector**: [Sector] | **Market Cap**: [Cap]
12
+
13
+ ## Financial Highlights
14
+ [Key metrics with YoY trends]
15
+
16
+ ## Competitive Position
17
+ [Strengths, moat, threats]
18
+
19
+ ## Risk Factors
20
+ [Ranked by likelihood × impact]
21
+
22
+ ## Valuation
23
+ [Current vs historical vs peers]
24
+
25
+ ## Recommendation
26
+ [With explicit assumptions and what would change the thesis]
27
+ ```
28
+
29
+ ## Rules
30
+ - Always include risk factors alongside opportunities
31
+ - Historical data is context, not prediction
32
+ - State assumptions explicitly
33
+ - Note: this is informational analysis, not financial advice.
@@ -0,0 +1,90 @@
1
+ # Investor Materials
2
+
3
+ Build investor-facing materials that are consistent, credible, and easy to defend.
4
+
5
+ ## When to Activate
6
+
7
+ - creating or revising a pitch deck
8
+ - writing an investor memo or one-pager
9
+ - building a financial model, milestone plan, or use-of-funds table
10
+ - answering accelerator or incubator application questions
11
+ - aligning multiple fundraising docs around one source of truth
12
+
13
+ ## Golden Rule
14
+
15
+ All investor materials must agree with each other.
16
+
17
+ Create or confirm a single source of truth before writing:
18
+ - traction metrics
19
+ - pricing and revenue assumptions
20
+ - raise size and instrument
21
+ - use of funds
22
+ - team bios and titles
23
+ - milestones and timelines
24
+
25
+ If conflicting numbers appear, stop and resolve them before drafting.
26
+
27
+ ## Core Workflow
28
+
29
+ 1. inventory the canonical facts
30
+ 2. identify missing assumptions
31
+ 3. choose the asset type
32
+ 4. draft the asset with explicit logic
33
+ 5. cross-check every number against the source of truth
34
+
35
+ ## Asset Guidance
36
+
37
+ ### Pitch Deck
38
+ Recommended flow:
39
+ 1. company + wedge
40
+ 2. problem
41
+ 3. solution
42
+ 4. product / demo
43
+ 5. market
44
+ 6. business model
45
+ 7. traction
46
+ 8. team
47
+ 9. competition / differentiation
48
+ 10. ask
49
+ 11. use of funds / milestones
50
+ 12. appendix
51
+
52
+ If the user wants a web-native deck, pair this skill with `frontend-slides`.
53
+
54
+ ### One-Pager / Memo
55
+ - state what the company does in one clean sentence
56
+ - show why now
57
+ - include traction and proof points early
58
+ - make the ask precise
59
+ - keep claims easy to verify
60
+
61
+ ### Financial Model
62
+ Include:
63
+ - explicit assumptions
64
+ - bear / base / bull cases when useful
65
+ - clean layer-by-layer revenue logic
66
+ - milestone-linked spending
67
+ - sensitivity analysis where the decision hinges on assumptions
68
+
69
+ ### Accelerator Applications
70
+ - answer the exact question asked
71
+ - prioritize traction, insight, and team advantage
72
+ - avoid puffery
73
+ - keep internal metrics consistent with the deck and model
74
+
75
+ ## Red Flags to Avoid
76
+
77
+ - unverifiable claims
78
+ - fuzzy market sizing without assumptions
79
+ - inconsistent team roles or titles
80
+ - revenue math that does not sum cleanly
81
+ - inflated certainty where assumptions are fragile
82
+
83
+ ## Quality Gate
84
+
85
+ Before delivering:
86
+ - every number matches the current source of truth
87
+ - use of funds and revenue layers sum correctly
88
+ - assumptions are visible, not buried
89
+ - the story is clear without hype language
90
+ - the final asset is defensible in a partner meeting
@@ -0,0 +1,66 @@
1
+ # JavaScript Surface Analyzer
2
+
3
+ ## Purpose
4
+ Extract attacker-relevant intelligence from front-end code and convert it into testable hypotheses.
5
+
6
+ ## Inputs
7
+ - `target_url`
8
+ - `seed_pages` (optional)
9
+ - `auth_context` (optional)
10
+
11
+ ## Workflow
12
+ ### Phase 1: Asset Enumeration
13
+ 1. Collect static and dynamic script URLs.
14
+ 2. Expand via source maps and chunk manifests where available.
15
+ 3. Track script origin, load condition, and execution context.
16
+
17
+ ### Phase 2: Artifact Extraction
18
+ 1. Endpoints, route builders, and API clients.
19
+ 2. Header/token construction logic.
20
+ 3. Feature flags, debug modes, hidden route toggles.
21
+ 4. Secret candidates and key material references.
22
+
23
+ ### Phase 3: Sink Analysis
24
+ 1. DOM write sinks: `innerHTML`, `outerHTML`, template insertion.
25
+ 2. Code execution sinks: `eval`, `Function`, `setTimeout` string usage.
26
+ 3. URL/navigation sinks: dynamic redirects, iframe/src assignments.
27
+ 4. Storage sinks: local/session storage of sensitive artifacts.
28
+
29
+ ### Phase 4: Controllability Assessment
30
+ 1. Determine if attacker can influence source data.
31
+ 2. Trace sanitization or encoding at boundaries.
32
+ 3. Estimate exploit preconditions per sink.
33
+
34
+ ### Phase 5: Follow-up Planning
35
+ 1. Create endpoint verification cases.
36
+ 2. Create DOM-XSS and open redirect probes.
37
+ 3. Create token misuse and privilege abuse checks.
38
+
39
+ ## Minimum Extraction Targets
40
+ | Category | Required Extraction |
41
+ |---|---|
42
+ | API surface | method + path hints + caller context |
43
+ | Secrets | key/token candidates with confidence tag |
44
+ | Sinks | sink type + source controllability |
45
+ | Hidden features | flag name + activation condition |
46
+
47
+ ## Output Contract
48
+ ```json
49
+ {
50
+ "script_inventory": [],
51
+ "endpoint_candidates": [],
52
+ "secret_candidates": [],
53
+ "sink_map": [],
54
+ "hidden_features": [],
55
+ "follow_up_tests": []
56
+ }
57
+ ```
58
+
59
+ ## Constraints
60
+ - Treat secret candidates as sensitive.
61
+ - Mark uncertainty for heavily obfuscated code.
62
+
63
+ ## Quality Checklist
64
+ - [ ] Dynamic script loading is covered.
65
+ - [ ] Sink report includes controllability.
66
+ - [ ] Follow-up tests are concrete and scoped.
@@ -0,0 +1,68 @@
1
+ ---
2
+ name: markdown-reports
3
+ description: "Use this skill when the user asks to write a report, README, documentation, changelog, technical writing, or any structured long-form document delivered as Markdown. Triggers: 'report', 'README', 'documentation', 'write up', 'analysis document', 'changelog', 'guide', or any request for structured written content."
4
+ license: MIT
5
+ ---
6
+
7
+ # Markdown Reports
8
+
9
+ ## What This Skill Does
10
+
11
+ Write structured, professional documents in Markdown. Reports, READMEs, changelogs, guides, technical documentation. Clean formatting, logical structure, appropriate depth.
12
+
13
+ ## Document Structure
14
+
15
+ ### Report
16
+ ```markdown
17
+ # Title
18
+
19
+ ## Executive Summary
20
+ One paragraph covering what, why, and the key finding.
21
+
22
+ ## Background
23
+ Context needed to understand the report.
24
+
25
+ ## Findings
26
+ ### Finding 1: [Name]
27
+ Evidence, data, analysis.
28
+
29
+ ### Finding 2: [Name]
30
+ Evidence, data, analysis.
31
+
32
+ ## Recommendations
33
+ Actionable items ranked by priority.
34
+
35
+ ## Appendix
36
+ Supporting data, methodology details.
37
+ ```
38
+
39
+ ### README
40
+ ```markdown
41
+ # Project Name
42
+
43
+ One-line description.
44
+
45
+ ## Setup
46
+ Step-by-step from zero to running.
47
+
48
+ ## Usage
49
+ Key commands and examples.
50
+
51
+ ## Configuration
52
+ Environment variables, options.
53
+
54
+ ## Contributing
55
+ How to submit changes.
56
+
57
+ ## License
58
+ ```
59
+
60
+ ## Rules
61
+
62
+ - Lead with the conclusion, then support it
63
+ - Use headings hierarchically (H1 → H2 → H3)
64
+ - Tables for comparing items, not for single-column lists
65
+ - Code blocks with language identifiers for syntax highlighting
66
+ - Keep paragraphs under 5 sentences
67
+ - Every document needs a clear purpose stated in the first section
68
+ - Proofread for grammar and consistency before delivering.
@@ -0,0 +1,69 @@
1
+ # Market Research
2
+
3
+ Produce research that supports decisions, not research theater.
4
+
5
+ ## When to Activate
6
+
7
+ - researching a market, category, company, investor, or technology trend
8
+ - building TAM/SAM/SOM estimates
9
+ - comparing competitors or adjacent products
10
+ - preparing investor dossiers before outreach
11
+ - pressure-testing a thesis before building, funding, or entering a market
12
+
13
+ ## Research Standards
14
+
15
+ 1. Every important claim needs a source.
16
+ 2. Prefer recent data and call out stale data.
17
+ 3. Include contrarian evidence and downside cases.
18
+ 4. Translate findings into a decision, not just a summary.
19
+ 5. Separate fact, inference, and recommendation clearly.
20
+
21
+ ## Common Research Modes
22
+
23
+ ### Investor / Fund Diligence
24
+ Collect:
25
+ - fund size, stage, and typical check size
26
+ - relevant portfolio companies
27
+ - public thesis and recent activity
28
+ - reasons the fund is or is not a fit
29
+ - any obvious red flags or mismatches
30
+
31
+ ### Competitive Analysis
32
+ Collect:
33
+ - product reality, not marketing copy
34
+ - funding and investor history if public
35
+ - traction metrics if public
36
+ - distribution and pricing clues
37
+ - strengths, weaknesses, and positioning gaps
38
+
39
+ ### Market Sizing
40
+ Use:
41
+ - top-down estimates from reports or public datasets
42
+ - bottom-up sanity checks from realistic customer acquisition assumptions
43
+ - explicit assumptions for every leap in logic
44
+
45
+ ### Technology / Vendor Research
46
+ Collect:
47
+ - how it works
48
+ - trade-offs and adoption signals
49
+ - integration complexity
50
+ - lock-in, security, compliance, and operational risk
51
+
52
+ ## Output Format
53
+
54
+ Default structure:
55
+ 1. executive summary
56
+ 2. key findings
57
+ 3. implications
58
+ 4. risks and caveats
59
+ 5. recommendation
60
+ 6. sources
61
+
62
+ ## Quality Gate
63
+
64
+ Before delivering:
65
+ - all numbers are sourced or labeled as estimates
66
+ - old data is flagged
67
+ - the recommendation follows from the evidence
68
+ - risks and counterarguments are included
69
+ - the output makes a decision easier
@@ -0,0 +1,86 @@
1
+ ---
2
+ name: mcp-builder
3
+ description: "Use this skill when the user asks to create an MCP server, expose tools via MCP, or integrate external services as MCP resources. Triggers: 'MCP', 'Model Context Protocol', 'create MCP server', 'expose tool', 'MCP integration', or requests to make a service accessible to AI agents via MCP."
4
+ license: MIT
5
+ ---
6
+
7
+ # MCP Server Builder
8
+
9
+ ## What This Skill Does
10
+
11
+ Create Model Context Protocol servers that expose tools, resources, and prompts to AI agents. TypeScript implementation with stdio or streamable-http transport.
12
+
13
+ ## Before You Start
14
+
15
+ 1. **Context7:** Fetch MCP SDK docs (`@modelcontextprotocol/sdk`)
16
+ 2. **DeepWiki:** Research the service you're integrating with
17
+
18
+ ## Project Structure
19
+
20
+ ```
21
+ mcp-server-name/
22
+ ├── src/
23
+ │ ├── index.ts # Server setup, tool registration
24
+ │ ├── tools/ # Tool implementations
25
+ │ └── types.ts # Input/output schemas
26
+ ├── package.json
27
+ ├── tsconfig.json
28
+ └── README.md
29
+ ```
30
+
31
+ ## Minimal MCP Server
32
+
33
+ ```typescript
34
+ import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
35
+ import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
36
+ import { z } from "zod";
37
+
38
+ const server = new McpServer({ name: "my-server", version: "1.0.0" });
39
+
40
+ server.tool("greet", { name: z.string() }, async ({ name }) => ({
41
+ content: [{ type: "text", text: `Hello, ${name}!` }],
42
+ }));
43
+
44
+ const transport = new StdioServerTransport();
45
+ await server.connect(transport);
46
+ ```
47
+
48
+ ## Tool Design Rules
49
+
50
+ - One clear purpose per tool (agents struggle with multi-purpose tools)
51
+ - Descriptive names: `search_documents` not `search`
52
+ - Input validation with Zod schemas
53
+ - Return structured data, not raw HTML or unformatted text
54
+ - Include error messages that help the agent recover
55
+ - Keep tool count under 20 (agents lose track with too many)
56
+
57
+ ## Transport Options
58
+
59
+ | Transport | Use When |
60
+ |-----------|----------|
61
+ | stdio | Local tools, CLI integration |
62
+ | Streamable HTTP | Remote servers, cloud deployment |
63
+ | SSE | Legacy (being deprecated) |
64
+
65
+ ## Rules
66
+
67
+ - Always validate inputs with Zod
68
+ - Always return structured content blocks
69
+ - Always include a health/status tool for debugging
70
+ - Test with an actual MCP client before shipping
71
+ - Document every tool with description, parameters, and example usage
72
+
73
+ ## Multi-MCP Orchestration
74
+
75
+ A single agent can connect to multiple MCP servers simultaneously:
76
+ ```json
77
+ {
78
+ "mcp_servers": [
79
+ { "name": "github", "url": "https://mcp.github.com/sse" },
80
+ { "name": "calendar", "url": "https://gcal.mcp.claude.com/mcp" },
81
+ { "name": "deepwiki", "url": "https://mcp.deepwiki.com/mcp" }
82
+ ]
83
+ }
84
+ ```
85
+
86
+ The agent discovers tools from all servers and routes calls to the correct server based on tool name. When building MCP servers, consider how they compose with other servers the agent may have connected.
@@ -0,0 +1,47 @@
1
+ # Meeting Notes
2
+
3
+ ## Extraction Process
4
+
5
+ 1. Read through the full transcript or notes
6
+ 2. Identify key decisions made during the meeting
7
+ 3. Extract action items with owner and due date
8
+ 4. Summarize discussion topics at a high level
9
+ 5. Note open questions and parking lot items
10
+
11
+ ## Output Format
12
+
13
+ ```markdown
14
+ ## Meeting: [Title]
15
+ **Date**: [date]
16
+ **Attendees**: [names]
17
+ **Duration**: [time]
18
+
19
+ ## Decisions
20
+ - [Decision 1]: [context and rationale]
21
+ - [Decision 2]: [context and rationale]
22
+
23
+ ## Action Items
24
+ | Action | Owner | Due Date | Status |
25
+ |--------|-------|----------|--------|
26
+ | [task] | [name] | [date] | pending |
27
+
28
+ ## Discussion Summary
29
+ ### [Topic 1]
30
+ [Key points discussed, different viewpoints raised]
31
+
32
+ ### [Topic 2]
33
+ [Key points]
34
+
35
+ ## Open Questions
36
+ - [Question needing follow-up]
37
+
38
+ ## Next Meeting
39
+ [Date, agenda items carried forward]
40
+ ```
41
+
42
+ ## Rules
43
+
44
+ - Every action item must have an owner and due date
45
+ - Decisions should include brief rationale (not just what, but why)
46
+ - Distinguish between decisions (final) and discussion points (ongoing)
47
+ - Keep summaries concise — capture essence, not transcript