@monoes/routing 1.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 (77) hide show
  1. package/dist/capability-index.d.ts +15 -0
  2. package/dist/capability-index.d.ts.map +1 -0
  3. package/dist/capability-index.js +32 -0
  4. package/dist/capability-index.js.map +1 -0
  5. package/dist/cosine.d.ts +11 -0
  6. package/dist/cosine.d.ts.map +1 -0
  7. package/dist/cosine.js +41 -0
  8. package/dist/cosine.js.map +1 -0
  9. package/dist/encoder.d.ts +37 -0
  10. package/dist/encoder.d.ts.map +1 -0
  11. package/dist/encoder.js +75 -0
  12. package/dist/encoder.js.map +1 -0
  13. package/dist/index.d.ts +12 -0
  14. package/dist/index.d.ts.map +1 -0
  15. package/dist/index.js +9 -0
  16. package/dist/index.js.map +1 -0
  17. package/dist/keyword-pre-filter.d.ts +44 -0
  18. package/dist/keyword-pre-filter.d.ts.map +1 -0
  19. package/dist/keyword-pre-filter.js +109 -0
  20. package/dist/keyword-pre-filter.js.map +1 -0
  21. package/dist/llm-fallback.d.ts +18 -0
  22. package/dist/llm-fallback.d.ts.map +1 -0
  23. package/dist/llm-fallback.js +76 -0
  24. package/dist/llm-fallback.js.map +1 -0
  25. package/dist/prompts/classify.d.ts +5 -0
  26. package/dist/prompts/classify.d.ts.map +1 -0
  27. package/dist/prompts/classify.js +25 -0
  28. package/dist/prompts/classify.js.map +1 -0
  29. package/dist/route-layer.d.ts +25 -0
  30. package/dist/route-layer.d.ts.map +1 -0
  31. package/dist/route-layer.js +129 -0
  32. package/dist/route-layer.js.map +1 -0
  33. package/dist/routes/core.route.d.ts +3 -0
  34. package/dist/routes/core.route.d.ts.map +1 -0
  35. package/dist/routes/core.route.js +106 -0
  36. package/dist/routes/core.route.js.map +1 -0
  37. package/dist/routes/design.route.d.ts +3 -0
  38. package/dist/routes/design.route.d.ts.map +1 -0
  39. package/dist/routes/design.route.js +94 -0
  40. package/dist/routes/design.route.js.map +1 -0
  41. package/dist/routes/engineering.route.d.ts +3 -0
  42. package/dist/routes/engineering.route.d.ts.map +1 -0
  43. package/dist/routes/engineering.route.js +191 -0
  44. package/dist/routes/engineering.route.js.map +1 -0
  45. package/dist/routes/game-dev.route.d.ts +3 -0
  46. package/dist/routes/game-dev.route.d.ts.map +1 -0
  47. package/dist/routes/game-dev.route.js +109 -0
  48. package/dist/routes/game-dev.route.js.map +1 -0
  49. package/dist/routes/index.d.ts +13 -0
  50. package/dist/routes/index.d.ts.map +1 -0
  51. package/dist/routes/index.js +31 -0
  52. package/dist/routes/index.js.map +1 -0
  53. package/dist/routes/marketing.route.d.ts +3 -0
  54. package/dist/routes/marketing.route.d.ts.map +1 -0
  55. package/dist/routes/marketing.route.js +94 -0
  56. package/dist/routes/marketing.route.js.map +1 -0
  57. package/dist/routes/product.route.d.ts +3 -0
  58. package/dist/routes/product.route.d.ts.map +1 -0
  59. package/dist/routes/product.route.js +75 -0
  60. package/dist/routes/product.route.js.map +1 -0
  61. package/dist/routes/security.route.d.ts +3 -0
  62. package/dist/routes/security.route.d.ts.map +1 -0
  63. package/dist/routes/security.route.js +101 -0
  64. package/dist/routes/security.route.js.map +1 -0
  65. package/dist/routes/specialized.route.d.ts +3 -0
  66. package/dist/routes/specialized.route.d.ts.map +1 -0
  67. package/dist/routes/specialized.route.js +107 -0
  68. package/dist/routes/specialized.route.js.map +1 -0
  69. package/dist/routes/testing.route.d.ts +3 -0
  70. package/dist/routes/testing.route.d.ts.map +1 -0
  71. package/dist/routes/testing.route.js +115 -0
  72. package/dist/routes/testing.route.js.map +1 -0
  73. package/dist/types.d.ts +86 -0
  74. package/dist/types.d.ts.map +1 -0
  75. package/dist/types.js +2 -0
  76. package/dist/types.js.map +1 -0
  77. package/package.json +30 -0
@@ -0,0 +1,109 @@
1
+ export const gameDevRoutes = [
2
+ {
3
+ name: 'game-designer',
4
+ agentSlug: 'game-designer',
5
+ threshold: 0.73,
6
+ fallbackToLLM: true,
7
+ description: 'Game design, mechanics, game systems design',
8
+ utterances: [
9
+ 'design the core gameplay loop for the action RPG',
10
+ 'create the progression system for the mobile game',
11
+ 'design the economy and monetization system for the game',
12
+ 'create the combat mechanics design document',
13
+ 'design the tutorial flow for new player onboarding',
14
+ 'balance the difficulty curve for the puzzle levels',
15
+ 'design the multiplayer game modes and rules',
16
+ 'create the game design document for the new feature',
17
+ 'design the reward system for player retention',
18
+ 'balance the weapon stats for competitive fairness',
19
+ ],
20
+ },
21
+ {
22
+ name: 'unity-architect',
23
+ agentSlug: 'unity-architect',
24
+ threshold: 0.74,
25
+ fallbackToLLM: true,
26
+ description: 'Unity game development, C# scripting, Unity architecture',
27
+ utterances: [
28
+ 'architect the Unity game systems for the new project',
29
+ 'implement the character controller in Unity',
30
+ 'optimize the Unity scene for better frame rate',
31
+ 'create the Unity editor tools for the content team',
32
+ 'implement the save system in Unity',
33
+ 'design the component architecture for the game objects',
34
+ 'optimize the Unity build size and loading times',
35
+ 'implement the Unity multiplayer with Netcode',
36
+ 'create the animation state machine in Unity',
37
+ 'implement the Unity addressables for asset management',
38
+ ],
39
+ },
40
+ {
41
+ name: 'godot-gameplay-scripter',
42
+ agentSlug: 'godot-gameplay-scripter',
43
+ threshold: 0.74,
44
+ fallbackToLLM: true,
45
+ description: 'Godot game development, GDScript, Godot architecture',
46
+ utterances: [
47
+ 'implement the player movement in Godot with GDScript',
48
+ 'create the Godot state machine for the enemy AI',
49
+ 'implement the inventory system in Godot',
50
+ 'optimize the Godot scene tree structure',
51
+ 'create the Godot signals for game event communication',
52
+ 'implement the physics-based character controller in Godot',
53
+ 'create the Godot shader for the visual effect',
54
+ 'implement the Godot multiplayer with ENet',
55
+ ],
56
+ },
57
+ {
58
+ name: 'narrative-designer',
59
+ agentSlug: 'narrative-designer',
60
+ threshold: 0.72,
61
+ fallbackToLLM: true,
62
+ description: 'Game narrative, dialogue writing, world building, story design',
63
+ utterances: [
64
+ 'write the branching dialogue for the NPC interaction',
65
+ 'design the narrative structure for the game campaign',
66
+ 'create the lore and world building for the game universe',
67
+ 'write the character backstories and motivations',
68
+ 'design the quest narrative and objectives',
69
+ 'create the in-game text for the environmental storytelling',
70
+ 'design the dialogue system and conversation trees',
71
+ 'write the game script for the cutscene sequences',
72
+ ],
73
+ },
74
+ {
75
+ name: 'level-designer',
76
+ agentSlug: 'level-designer',
77
+ threshold: 0.73,
78
+ fallbackToLLM: true,
79
+ description: 'Level design, map creation, environment design',
80
+ utterances: [
81
+ 'design the level layout for the puzzle game stage',
82
+ 'create the encounter design for the dungeon level',
83
+ 'design the open world region with points of interest',
84
+ 'balance the level difficulty for the player skill curve',
85
+ 'design the platformer level with progressive challenges',
86
+ 'create the level metrics and flow analysis',
87
+ 'design the environmental hazards and obstacles',
88
+ 'create the level design document for the new zone',
89
+ ],
90
+ },
91
+ {
92
+ name: 'technical-artist',
93
+ agentSlug: 'technical-artist',
94
+ threshold: 0.73,
95
+ fallbackToLLM: true,
96
+ description: 'Technical art, shaders, VFX, art pipeline optimization',
97
+ utterances: [
98
+ 'create the shader for the water surface rendering',
99
+ 'optimize the art asset pipeline for faster iteration',
100
+ 'implement the particle VFX system for the ability effects',
101
+ 'create the procedural texture generation system',
102
+ 'optimize the LOD system for the 3D assets',
103
+ 'implement the post-processing stack for the visual style',
104
+ 'create the rigging and skinning tools for the character art',
105
+ 'optimize the texture atlases and sprite sheets',
106
+ ],
107
+ },
108
+ ];
109
+ //# sourceMappingURL=game-dev.route.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"game-dev.route.js","sourceRoot":"","sources":["../../src/routes/game-dev.route.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,aAAa,GAAY;IACpC;QACE,IAAI,EAAE,eAAe;QACrB,SAAS,EAAE,eAAe;QAC1B,SAAS,EAAE,IAAI;QACf,aAAa,EAAE,IAAI;QACnB,WAAW,EAAE,6CAA6C;QAC1D,UAAU,EAAE;YACV,kDAAkD;YAClD,mDAAmD;YACnD,yDAAyD;YACzD,6CAA6C;YAC7C,oDAAoD;YACpD,oDAAoD;YACpD,6CAA6C;YAC7C,qDAAqD;YACrD,+CAA+C;YAC/C,mDAAmD;SACpD;KACF;IACD;QACE,IAAI,EAAE,iBAAiB;QACvB,SAAS,EAAE,iBAAiB;QAC5B,SAAS,EAAE,IAAI;QACf,aAAa,EAAE,IAAI;QACnB,WAAW,EAAE,0DAA0D;QACvE,UAAU,EAAE;YACV,sDAAsD;YACtD,6CAA6C;YAC7C,gDAAgD;YAChD,oDAAoD;YACpD,oCAAoC;YACpC,wDAAwD;YACxD,iDAAiD;YACjD,8CAA8C;YAC9C,6CAA6C;YAC7C,uDAAuD;SACxD;KACF;IACD;QACE,IAAI,EAAE,yBAAyB;QAC/B,SAAS,EAAE,yBAAyB;QACpC,SAAS,EAAE,IAAI;QACf,aAAa,EAAE,IAAI;QACnB,WAAW,EAAE,sDAAsD;QACnE,UAAU,EAAE;YACV,sDAAsD;YACtD,iDAAiD;YACjD,yCAAyC;YACzC,yCAAyC;YACzC,uDAAuD;YACvD,2DAA2D;YAC3D,+CAA+C;YAC/C,2CAA2C;SAC5C;KACF;IACD;QACE,IAAI,EAAE,oBAAoB;QAC1B,SAAS,EAAE,oBAAoB;QAC/B,SAAS,EAAE,IAAI;QACf,aAAa,EAAE,IAAI;QACnB,WAAW,EAAE,gEAAgE;QAC7E,UAAU,EAAE;YACV,sDAAsD;YACtD,sDAAsD;YACtD,0DAA0D;YAC1D,iDAAiD;YACjD,2CAA2C;YAC3C,4DAA4D;YAC5D,mDAAmD;YACnD,kDAAkD;SACnD;KACF;IACD;QACE,IAAI,EAAE,gBAAgB;QACtB,SAAS,EAAE,gBAAgB;QAC3B,SAAS,EAAE,IAAI;QACf,aAAa,EAAE,IAAI;QACnB,WAAW,EAAE,gDAAgD;QAC7D,UAAU,EAAE;YACV,mDAAmD;YACnD,mDAAmD;YACnD,sDAAsD;YACtD,yDAAyD;YACzD,yDAAyD;YACzD,4CAA4C;YAC5C,gDAAgD;YAChD,mDAAmD;SACpD;KACF;IACD;QACE,IAAI,EAAE,kBAAkB;QACxB,SAAS,EAAE,kBAAkB;QAC7B,SAAS,EAAE,IAAI;QACf,aAAa,EAAE,IAAI;QACnB,WAAW,EAAE,wDAAwD;QACrE,UAAU,EAAE;YACV,mDAAmD;YACnD,sDAAsD;YACtD,2DAA2D;YAC3D,iDAAiD;YACjD,2CAA2C;YAC3C,0DAA0D;YAC1D,6DAA6D;YAC7D,gDAAgD;SACjD;KACF;CACF,CAAC"}
@@ -0,0 +1,13 @@
1
+ export { coreRoutes } from './core.route.js';
2
+ export { securityRoutes } from './security.route.js';
3
+ export { engineeringRoutes } from './engineering.route.js';
4
+ export { testingRoutes } from './testing.route.js';
5
+ export { designRoutes } from './design.route.js';
6
+ export { marketingRoutes } from './marketing.route.js';
7
+ export { productRoutes } from './product.route.js';
8
+ export { specializedRoutes } from './specialized.route.js';
9
+ export { gameDevRoutes } from './game-dev.route.js';
10
+ import type { Route } from '../types.js';
11
+ /** All routes combined — use this with RouteLayer for full agent coverage */
12
+ export declare const ALL_ROUTES: Route[];
13
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/routes/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAC7C,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAC3D,OAAO,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AACnD,OAAO,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AACjD,OAAO,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAC;AACvD,OAAO,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AACnD,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAC3D,OAAO,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAWpD,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AAEzC,6EAA6E;AAC7E,eAAO,MAAM,UAAU,EAAE,KAAK,EAU7B,CAAC"}
@@ -0,0 +1,31 @@
1
+ export { coreRoutes } from './core.route.js';
2
+ export { securityRoutes } from './security.route.js';
3
+ export { engineeringRoutes } from './engineering.route.js';
4
+ export { testingRoutes } from './testing.route.js';
5
+ export { designRoutes } from './design.route.js';
6
+ export { marketingRoutes } from './marketing.route.js';
7
+ export { productRoutes } from './product.route.js';
8
+ export { specializedRoutes } from './specialized.route.js';
9
+ export { gameDevRoutes } from './game-dev.route.js';
10
+ import { coreRoutes } from './core.route.js';
11
+ import { securityRoutes } from './security.route.js';
12
+ import { engineeringRoutes } from './engineering.route.js';
13
+ import { testingRoutes } from './testing.route.js';
14
+ import { designRoutes } from './design.route.js';
15
+ import { marketingRoutes } from './marketing.route.js';
16
+ import { productRoutes } from './product.route.js';
17
+ import { specializedRoutes } from './specialized.route.js';
18
+ import { gameDevRoutes } from './game-dev.route.js';
19
+ /** All routes combined — use this with RouteLayer for full agent coverage */
20
+ export const ALL_ROUTES = [
21
+ ...coreRoutes,
22
+ ...securityRoutes,
23
+ ...engineeringRoutes,
24
+ ...testingRoutes,
25
+ ...designRoutes,
26
+ ...marketingRoutes,
27
+ ...productRoutes,
28
+ ...specializedRoutes,
29
+ ...gameDevRoutes,
30
+ ];
31
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/routes/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAC7C,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAC3D,OAAO,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AACnD,OAAO,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AACjD,OAAO,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAC;AACvD,OAAO,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AACnD,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAC3D,OAAO,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAEpD,OAAO,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAC7C,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAC3D,OAAO,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AACnD,OAAO,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AACjD,OAAO,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAC;AACvD,OAAO,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AACnD,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAC3D,OAAO,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAGpD,6EAA6E;AAC7E,MAAM,CAAC,MAAM,UAAU,GAAY;IACjC,GAAG,UAAU;IACb,GAAG,cAAc;IACjB,GAAG,iBAAiB;IACpB,GAAG,aAAa;IAChB,GAAG,YAAY;IACf,GAAG,eAAe;IAClB,GAAG,aAAa;IAChB,GAAG,iBAAiB;IACpB,GAAG,aAAa;CACjB,CAAC"}
@@ -0,0 +1,3 @@
1
+ import { Route } from '../types.js';
2
+ export declare const marketingRoutes: Route[];
3
+ //# sourceMappingURL=marketing.route.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"marketing.route.d.ts","sourceRoot":"","sources":["../../src/routes/marketing.route.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AAEpC,eAAO,MAAM,eAAe,EAAE,KAAK,EA4FlC,CAAC"}
@@ -0,0 +1,94 @@
1
+ export const marketingRoutes = [
2
+ {
3
+ name: 'seo-specialist',
4
+ agentSlug: 'marketing-seo-specialist',
5
+ threshold: 0.72,
6
+ fallbackToLLM: true,
7
+ description: 'SEO optimization, keyword research, content strategy for search',
8
+ utterances: [
9
+ 'optimize the landing page for search engine rankings',
10
+ 'perform keyword research for the product category',
11
+ 'audit the technical SEO issues on the website',
12
+ 'create the content strategy for improving organic traffic',
13
+ 'optimize the meta titles and descriptions for the blog posts',
14
+ 'build the internal linking strategy for the content hub',
15
+ 'analyze the backlink profile and create a link building plan',
16
+ 'optimize the page speed for better core web vitals scores',
17
+ 'create the schema markup for the product pages',
18
+ 'analyze competitors SEO strategy and find ranking opportunities',
19
+ ],
20
+ },
21
+ {
22
+ name: 'content-creator',
23
+ agentSlug: 'marketing-content-creator',
24
+ threshold: 0.70,
25
+ fallbackToLLM: true,
26
+ description: 'Content creation, copywriting, blog posts',
27
+ utterances: [
28
+ 'write the blog post about the new product feature',
29
+ 'create the email newsletter for this month',
30
+ 'write the landing page copy for the product launch',
31
+ 'create the social media content calendar',
32
+ 'write the case study for the enterprise customer',
33
+ 'create the product description copy for the e-commerce page',
34
+ 'write the press release for the company announcement',
35
+ 'create the onboarding email sequence for new users',
36
+ 'write the help documentation for the new feature',
37
+ 'create the sales deck narrative and talking points',
38
+ ],
39
+ },
40
+ {
41
+ name: 'tiktok-strategist',
42
+ agentSlug: 'marketing-tiktok-strategist',
43
+ threshold: 0.75,
44
+ fallbackToLLM: true,
45
+ description: 'TikTok content strategy, viral content, short-form video',
46
+ utterances: [
47
+ 'create a TikTok content strategy for the brand',
48
+ 'write TikTok video scripts for the product launch',
49
+ 'analyze TikTok trends to capitalize on for the brand',
50
+ 'create the TikTok hashtag strategy for discovery',
51
+ 'plan the TikTok influencer collaboration campaign',
52
+ 'optimize the TikTok posting schedule for maximum reach',
53
+ 'create the TikTok sound strategy for brand recall',
54
+ 'design the TikTok challenge concept for user participation',
55
+ ],
56
+ },
57
+ {
58
+ name: 'linkedin-content-creator',
59
+ agentSlug: 'marketing-linkedin-content-creator',
60
+ threshold: 0.75,
61
+ fallbackToLLM: true,
62
+ description: 'LinkedIn B2B content, thought leadership, professional networking',
63
+ utterances: [
64
+ 'create the LinkedIn content strategy for the B2B brand',
65
+ 'write thought leadership posts for the company LinkedIn page',
66
+ 'create the LinkedIn newsletter for the industry insights',
67
+ 'write LinkedIn articles to build professional authority',
68
+ 'create the LinkedIn company page content calendar',
69
+ 'write the LinkedIn cold outreach message templates',
70
+ 'optimize the LinkedIn profile for the executive team',
71
+ 'create the LinkedIn event promotion content',
72
+ ],
73
+ },
74
+ {
75
+ name: 'growth-hacker',
76
+ agentSlug: 'marketing-growth-hacker',
77
+ threshold: 0.71,
78
+ fallbackToLLM: true,
79
+ description: 'Growth hacking, viral loops, user acquisition experiments',
80
+ utterances: [
81
+ 'design the viral referral program for user acquisition',
82
+ 'create the growth experiment roadmap for Q3',
83
+ 'analyze the conversion funnel and identify improvement opportunities',
84
+ 'design the onboarding optimization to improve activation rates',
85
+ 'create the product-led growth strategy',
86
+ 'analyze cohort retention and design re-engagement campaigns',
87
+ 'design the A/B test framework for conversion optimization',
88
+ 'identify the viral coefficient and design growth loops',
89
+ 'create the growth metrics dashboard and KPI framework',
90
+ 'design the freemium to paid conversion optimization strategy',
91
+ ],
92
+ },
93
+ ];
94
+ //# sourceMappingURL=marketing.route.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"marketing.route.js","sourceRoot":"","sources":["../../src/routes/marketing.route.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,eAAe,GAAY;IACtC;QACE,IAAI,EAAE,gBAAgB;QACtB,SAAS,EAAE,0BAA0B;QACrC,SAAS,EAAE,IAAI;QACf,aAAa,EAAE,IAAI;QACnB,WAAW,EAAE,iEAAiE;QAC9E,UAAU,EAAE;YACV,sDAAsD;YACtD,mDAAmD;YACnD,+CAA+C;YAC/C,2DAA2D;YAC3D,8DAA8D;YAC9D,yDAAyD;YACzD,8DAA8D;YAC9D,2DAA2D;YAC3D,gDAAgD;YAChD,iEAAiE;SAClE;KACF;IACD;QACE,IAAI,EAAE,iBAAiB;QACvB,SAAS,EAAE,2BAA2B;QACtC,SAAS,EAAE,IAAI;QACf,aAAa,EAAE,IAAI;QACnB,WAAW,EAAE,2CAA2C;QACxD,UAAU,EAAE;YACV,mDAAmD;YACnD,4CAA4C;YAC5C,oDAAoD;YACpD,0CAA0C;YAC1C,kDAAkD;YAClD,6DAA6D;YAC7D,sDAAsD;YACtD,oDAAoD;YACpD,kDAAkD;YAClD,oDAAoD;SACrD;KACF;IACD;QACE,IAAI,EAAE,mBAAmB;QACzB,SAAS,EAAE,6BAA6B;QACxC,SAAS,EAAE,IAAI;QACf,aAAa,EAAE,IAAI;QACnB,WAAW,EAAE,0DAA0D;QACvE,UAAU,EAAE;YACV,gDAAgD;YAChD,mDAAmD;YACnD,sDAAsD;YACtD,kDAAkD;YAClD,mDAAmD;YACnD,wDAAwD;YACxD,mDAAmD;YACnD,4DAA4D;SAC7D;KACF;IACD;QACE,IAAI,EAAE,0BAA0B;QAChC,SAAS,EAAE,oCAAoC;QAC/C,SAAS,EAAE,IAAI;QACf,aAAa,EAAE,IAAI;QACnB,WAAW,EAAE,mEAAmE;QAChF,UAAU,EAAE;YACV,wDAAwD;YACxD,8DAA8D;YAC9D,0DAA0D;YAC1D,yDAAyD;YACzD,mDAAmD;YACnD,oDAAoD;YACpD,sDAAsD;YACtD,6CAA6C;SAC9C;KACF;IACD;QACE,IAAI,EAAE,eAAe;QACrB,SAAS,EAAE,yBAAyB;QACpC,SAAS,EAAE,IAAI;QACf,aAAa,EAAE,IAAI;QACnB,WAAW,EAAE,2DAA2D;QACxE,UAAU,EAAE;YACV,wDAAwD;YACxD,6CAA6C;YAC7C,sEAAsE;YACtE,gEAAgE;YAChE,wCAAwC;YACxC,6DAA6D;YAC7D,2DAA2D;YAC3D,wDAAwD;YACxD,uDAAuD;YACvD,8DAA8D;SAC/D;KACF;CACF,CAAC"}
@@ -0,0 +1,3 @@
1
+ import { Route } from '../types.js';
2
+ export declare const productRoutes: Route[];
3
+ //# sourceMappingURL=product.route.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"product.route.d.ts","sourceRoot":"","sources":["../../src/routes/product.route.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AAEpC,eAAO,MAAM,aAAa,EAAE,KAAK,EAyEhC,CAAC"}
@@ -0,0 +1,75 @@
1
+ export const productRoutes = [
2
+ {
3
+ name: 'product-manager',
4
+ agentSlug: 'product-manager',
5
+ threshold: 0.70,
6
+ fallbackToLLM: true,
7
+ description: 'Product management, requirements, roadmap planning',
8
+ utterances: [
9
+ 'create the product requirements document for this feature',
10
+ 'prioritize the product backlog for the next sprint',
11
+ 'write the user stories for the new onboarding flow',
12
+ 'create the product roadmap for the next 6 months',
13
+ 'define the acceptance criteria for this feature',
14
+ 'analyze user feedback and synthesize product insights',
15
+ 'create the go-to-market plan for the product launch',
16
+ 'write the product specification for the API redesign',
17
+ 'analyze the competitive landscape for the product',
18
+ 'define the success metrics and KPIs for the feature',
19
+ ],
20
+ },
21
+ {
22
+ name: 'sprint-prioritizer',
23
+ agentSlug: 'product-sprint-prioritizer',
24
+ threshold: 0.71,
25
+ fallbackToLLM: true,
26
+ description: 'Sprint planning, backlog prioritization, capacity planning',
27
+ utterances: [
28
+ 'prioritize the sprint backlog based on business value',
29
+ 'plan the next sprint with the engineering team capacity',
30
+ 'score the backlog items using RICE framework',
31
+ 'create the sprint goal and success criteria',
32
+ 'identify the dependencies between the backlog items',
33
+ 'balance the technical debt items with feature work in the sprint',
34
+ 'estimate the story points for the backlog items',
35
+ 'create the sprint retrospective action items',
36
+ ],
37
+ },
38
+ {
39
+ name: 'project-shepherd',
40
+ agentSlug: 'project-management-project-shepherd',
41
+ threshold: 0.70,
42
+ fallbackToLLM: true,
43
+ description: 'Project management, delivery tracking, risk management',
44
+ utterances: [
45
+ 'track the project milestones and identify at-risk deliverables',
46
+ 'create the project status report for stakeholders',
47
+ 'identify and mitigate project risks and blockers',
48
+ 'manage the project scope and change control process',
49
+ 'create the project communication plan for the team',
50
+ 'track the project budget and resource utilization',
51
+ 'facilitate the project retrospective meeting',
52
+ 'create the resource allocation plan for the project',
53
+ 'manage the vendor relationships and deliverables',
54
+ 'create the project closure report and lessons learned',
55
+ ],
56
+ },
57
+ {
58
+ name: 'feedback-synthesizer',
59
+ agentSlug: 'product-feedback-synthesizer',
60
+ threshold: 0.71,
61
+ fallbackToLLM: true,
62
+ description: 'User feedback analysis, NPS analysis, customer insights',
63
+ utterances: [
64
+ 'synthesize the customer support tickets into product insights',
65
+ 'analyze the NPS survey results and identify themes',
66
+ 'create the user feedback summary for the product team',
67
+ 'identify the most requested features from user feedback',
68
+ 'analyze the churn reasons from exit survey responses',
69
+ 'synthesize the beta tester feedback for the release decision',
70
+ 'create the customer satisfaction analysis report',
71
+ 'identify patterns in the user complaints and feature requests',
72
+ ],
73
+ },
74
+ ];
75
+ //# sourceMappingURL=product.route.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"product.route.js","sourceRoot":"","sources":["../../src/routes/product.route.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,aAAa,GAAY;IACpC;QACE,IAAI,EAAE,iBAAiB;QACvB,SAAS,EAAE,iBAAiB;QAC5B,SAAS,EAAE,IAAI;QACf,aAAa,EAAE,IAAI;QACnB,WAAW,EAAE,oDAAoD;QACjE,UAAU,EAAE;YACV,2DAA2D;YAC3D,oDAAoD;YACpD,oDAAoD;YACpD,kDAAkD;YAClD,iDAAiD;YACjD,uDAAuD;YACvD,qDAAqD;YACrD,sDAAsD;YACtD,mDAAmD;YACnD,qDAAqD;SACtD;KACF;IACD;QACE,IAAI,EAAE,oBAAoB;QAC1B,SAAS,EAAE,4BAA4B;QACvC,SAAS,EAAE,IAAI;QACf,aAAa,EAAE,IAAI;QACnB,WAAW,EAAE,4DAA4D;QACzE,UAAU,EAAE;YACV,uDAAuD;YACvD,yDAAyD;YACzD,8CAA8C;YAC9C,6CAA6C;YAC7C,qDAAqD;YACrD,kEAAkE;YAClE,iDAAiD;YACjD,8CAA8C;SAC/C;KACF;IACD;QACE,IAAI,EAAE,kBAAkB;QACxB,SAAS,EAAE,qCAAqC;QAChD,SAAS,EAAE,IAAI;QACf,aAAa,EAAE,IAAI;QACnB,WAAW,EAAE,wDAAwD;QACrE,UAAU,EAAE;YACV,gEAAgE;YAChE,mDAAmD;YACnD,kDAAkD;YAClD,qDAAqD;YACrD,oDAAoD;YACpD,mDAAmD;YACnD,8CAA8C;YAC9C,qDAAqD;YACrD,kDAAkD;YAClD,uDAAuD;SACxD;KACF;IACD;QACE,IAAI,EAAE,sBAAsB;QAC5B,SAAS,EAAE,8BAA8B;QACzC,SAAS,EAAE,IAAI;QACf,aAAa,EAAE,IAAI;QACnB,WAAW,EAAE,yDAAyD;QACtE,UAAU,EAAE;YACV,+DAA+D;YAC/D,oDAAoD;YACpD,uDAAuD;YACvD,yDAAyD;YACzD,sDAAsD;YACtD,8DAA8D;YAC9D,kDAAkD;YAClD,+DAA+D;SAChE;KACF;CACF,CAAC"}
@@ -0,0 +1,3 @@
1
+ import { Route } from '../types.js';
2
+ export declare const securityRoutes: Route[];
3
+ //# sourceMappingURL=security.route.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"security.route.d.ts","sourceRoot":"","sources":["../../src/routes/security.route.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AAEpC,eAAO,MAAM,cAAc,EAAE,KAAK,EAmGjC,CAAC"}
@@ -0,0 +1,101 @@
1
+ export const securityRoutes = [
2
+ {
3
+ name: 'security-engineer',
4
+ agentSlug: 'engineering-security-engineer',
5
+ threshold: 0.72,
6
+ fallbackToLLM: true,
7
+ description: 'Application security, vulnerability scanning, CVE analysis',
8
+ utterances: [
9
+ 'audit the authentication system for vulnerabilities',
10
+ 'check for SQL injection risks in the API',
11
+ 'review JWT token handling and security',
12
+ 'scan for CVEs in npm dependencies',
13
+ 'implement input sanitization to prevent XSS',
14
+ 'find cross-site scripting vulnerabilities in the frontend',
15
+ 'review the OAuth flow for security issues',
16
+ 'check for privilege escalation paths in the role system',
17
+ 'validate CORS configuration against OWASP guidelines',
18
+ 'review cryptographic key management practices',
19
+ 'check for insecure direct object references in the endpoints',
20
+ 'audit the session management implementation',
21
+ 'review security headers in HTTP responses',
22
+ 'check for sensitive data exposure in API responses',
23
+ ],
24
+ },
25
+ {
26
+ name: 'security-architect',
27
+ agentSlug: 'security-architect',
28
+ threshold: 0.72,
29
+ fallbackToLLM: true,
30
+ description: 'Security architecture design, threat modeling',
31
+ utterances: [
32
+ 'design a zero-trust security architecture',
33
+ 'create a threat model for the payment system',
34
+ 'design security boundaries between microservices',
35
+ 'architect the authentication and authorization system',
36
+ 'define the security posture for the new infrastructure',
37
+ 'design secrets management and rotation policies',
38
+ 'create a data classification and access control framework',
39
+ 'design the security monitoring and alerting architecture',
40
+ 'architect the network segmentation strategy',
41
+ 'define the cryptography standards and key hierarchy',
42
+ 'design the identity and access management system',
43
+ ],
44
+ },
45
+ {
46
+ name: 'security-auditor',
47
+ agentSlug: 'security-auditor',
48
+ threshold: 0.72,
49
+ fallbackToLLM: true,
50
+ description: 'Security audit, compliance review, penetration testing',
51
+ utterances: [
52
+ 'perform a security audit of the codebase',
53
+ 'run a penetration test on the API endpoints',
54
+ 'audit the access control implementation for compliance',
55
+ 'review the application against OWASP Top 10',
56
+ 'conduct a security assessment of the infrastructure',
57
+ 'audit logging and monitoring for security events',
58
+ 'review the incident response procedures',
59
+ 'assess the risk of the third-party integrations',
60
+ 'audit the data retention and deletion policies',
61
+ 'review the disaster recovery security controls',
62
+ ],
63
+ },
64
+ {
65
+ name: 'blockchain-security-auditor',
66
+ agentSlug: 'blockchain-security-auditor',
67
+ threshold: 0.75,
68
+ fallbackToLLM: true,
69
+ description: 'Smart contract security, blockchain vulnerability analysis',
70
+ utterances: [
71
+ 'audit the Solidity smart contract for reentrancy vulnerabilities',
72
+ 'check for integer overflow in the token contract',
73
+ 'review the ERC-20 implementation for security flaws',
74
+ 'audit the DeFi protocol for flash loan attack vectors',
75
+ 'check for front-running vulnerabilities in the DEX',
76
+ 'review the access control in the smart contract',
77
+ 'audit the oracle integration for manipulation risks',
78
+ 'check for gas optimization and DoS vectors in the contract',
79
+ 'review the upgradeable proxy pattern for security issues',
80
+ 'audit the multisig wallet implementation',
81
+ ],
82
+ },
83
+ {
84
+ name: 'threat-detection-engineer',
85
+ agentSlug: 'engineering-threat-detection-engineer',
86
+ threshold: 0.73,
87
+ fallbackToLLM: true,
88
+ description: 'Threat detection, SIEM, security monitoring',
89
+ utterances: [
90
+ 'build the anomaly detection system for user behavior',
91
+ 'implement threat detection rules in the SIEM',
92
+ 'create alerts for suspicious API access patterns',
93
+ 'design the intrusion detection pipeline',
94
+ 'implement log correlation for threat identification',
95
+ 'build the security incident timeline reconstruction tool',
96
+ 'create detection signatures for known attack patterns',
97
+ 'implement real-time alerting for credential stuffing attacks',
98
+ ],
99
+ },
100
+ ];
101
+ //# sourceMappingURL=security.route.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"security.route.js","sourceRoot":"","sources":["../../src/routes/security.route.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,cAAc,GAAY;IACrC;QACE,IAAI,EAAE,mBAAmB;QACzB,SAAS,EAAE,+BAA+B;QAC1C,SAAS,EAAE,IAAI;QACf,aAAa,EAAE,IAAI;QACnB,WAAW,EAAE,4DAA4D;QACzE,UAAU,EAAE;YACV,qDAAqD;YACrD,0CAA0C;YAC1C,wCAAwC;YACxC,mCAAmC;YACnC,6CAA6C;YAC7C,2DAA2D;YAC3D,2CAA2C;YAC3C,yDAAyD;YACzD,sDAAsD;YACtD,+CAA+C;YAC/C,8DAA8D;YAC9D,6CAA6C;YAC7C,2CAA2C;YAC3C,oDAAoD;SACrD;KACF;IACD;QACE,IAAI,EAAE,oBAAoB;QAC1B,SAAS,EAAE,oBAAoB;QAC/B,SAAS,EAAE,IAAI;QACf,aAAa,EAAE,IAAI;QACnB,WAAW,EAAE,+CAA+C;QAC5D,UAAU,EAAE;YACV,2CAA2C;YAC3C,8CAA8C;YAC9C,kDAAkD;YAClD,uDAAuD;YACvD,wDAAwD;YACxD,iDAAiD;YACjD,2DAA2D;YAC3D,0DAA0D;YAC1D,6CAA6C;YAC7C,qDAAqD;YACrD,kDAAkD;SACnD;KACF;IACD;QACE,IAAI,EAAE,kBAAkB;QACxB,SAAS,EAAE,kBAAkB;QAC7B,SAAS,EAAE,IAAI;QACf,aAAa,EAAE,IAAI;QACnB,WAAW,EAAE,wDAAwD;QACrE,UAAU,EAAE;YACV,0CAA0C;YAC1C,6CAA6C;YAC7C,wDAAwD;YACxD,6CAA6C;YAC7C,qDAAqD;YACrD,kDAAkD;YAClD,yCAAyC;YACzC,iDAAiD;YACjD,gDAAgD;YAChD,gDAAgD;SACjD;KACF;IACD;QACE,IAAI,EAAE,6BAA6B;QACnC,SAAS,EAAE,6BAA6B;QACxC,SAAS,EAAE,IAAI;QACf,aAAa,EAAE,IAAI;QACnB,WAAW,EAAE,4DAA4D;QACzE,UAAU,EAAE;YACV,kEAAkE;YAClE,kDAAkD;YAClD,qDAAqD;YACrD,uDAAuD;YACvD,oDAAoD;YACpD,iDAAiD;YACjD,qDAAqD;YACrD,4DAA4D;YAC5D,0DAA0D;YAC1D,0CAA0C;SAC3C;KACF;IACD;QACE,IAAI,EAAE,2BAA2B;QACjC,SAAS,EAAE,uCAAuC;QAClD,SAAS,EAAE,IAAI;QACf,aAAa,EAAE,IAAI;QACnB,WAAW,EAAE,6CAA6C;QAC1D,UAAU,EAAE;YACV,sDAAsD;YACtD,8CAA8C;YAC9C,kDAAkD;YAClD,yCAAyC;YACzC,qDAAqD;YACrD,0DAA0D;YAC1D,uDAAuD;YACvD,8DAA8D;SAC/D;KACF;CACF,CAAC"}
@@ -0,0 +1,3 @@
1
+ import { Route } from '../types.js';
2
+ export declare const specializedRoutes: Route[];
3
+ //# sourceMappingURL=specialized.route.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"specialized.route.d.ts","sourceRoot":"","sources":["../../src/routes/specialized.route.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AAEpC,eAAO,MAAM,iBAAiB,EAAE,KAAK,EAyGpC,CAAC"}
@@ -0,0 +1,107 @@
1
+ export const specializedRoutes = [
2
+ {
3
+ name: 'mcp-builder',
4
+ agentSlug: 'specialized-mcp-builder',
5
+ threshold: 0.75,
6
+ fallbackToLLM: true,
7
+ description: 'MCP server development, tool integration, Claude extensions',
8
+ utterances: [
9
+ 'build a new MCP server for the file system integration',
10
+ 'create the MCP tool definitions for the database operations',
11
+ 'implement the MCP transport layer for the custom server',
12
+ 'add new tools to the existing MCP server',
13
+ 'build the MCP server for the GitHub integration',
14
+ 'create the MCP schema validation for the tool inputs',
15
+ 'implement the MCP resource endpoints for the knowledge base',
16
+ 'debug the MCP connection issues in the Claude integration',
17
+ ],
18
+ },
19
+ {
20
+ name: 'compliance-auditor',
21
+ agentSlug: 'compliance-auditor',
22
+ threshold: 0.73,
23
+ fallbackToLLM: true,
24
+ description: 'Regulatory compliance, GDPR, SOC2, audit preparation',
25
+ utterances: [
26
+ 'audit the application for GDPR compliance requirements',
27
+ 'prepare the evidence package for the SOC2 audit',
28
+ 'review the data processing agreements for compliance',
29
+ 'create the data retention policy documentation',
30
+ 'audit the privacy policy against current regulations',
31
+ 'prepare for the PCI-DSS compliance assessment',
32
+ 'review the third-party data sharing agreements',
33
+ 'create the compliance training materials for the team',
34
+ 'audit the access control logs for compliance reporting',
35
+ 'prepare the HIPAA compliance documentation',
36
+ ],
37
+ },
38
+ {
39
+ name: 'lsp-index-engineer',
40
+ agentSlug: 'lsp-index-engineer',
41
+ threshold: 0.76,
42
+ fallbackToLLM: true,
43
+ description: 'LSP server development, code intelligence, language tooling',
44
+ utterances: [
45
+ 'build the LSP server for the custom language',
46
+ 'implement code completion in the language server',
47
+ 'add go-to-definition support to the LSP server',
48
+ 'implement the syntax highlighting grammar for the language',
49
+ 'build the symbol indexing for the code intelligence system',
50
+ 'optimize the LSP server response time for large codebases',
51
+ 'implement the reference finding in the language server',
52
+ 'create the diagnostic reporting for the LSP server',
53
+ ],
54
+ },
55
+ {
56
+ name: 'agents-orchestrator',
57
+ agentSlug: 'agents-orchestrator',
58
+ threshold: 0.70,
59
+ fallbackToLLM: true,
60
+ description: 'Multi-agent orchestration, swarm coordination, agent workflows',
61
+ utterances: [
62
+ 'orchestrate a swarm of agents to complete the complex task',
63
+ 'coordinate the parallel execution of multiple specialized agents',
64
+ 'design the agent workflow for the multi-step process',
65
+ 'manage the handoff between agents in the pipeline',
66
+ 'orchestrate the research and implementation agents',
67
+ 'coordinate agents to build, test, and review the feature',
68
+ 'design the agent communication and memory sharing protocol',
69
+ 'manage the distributed task execution across the agent pool',
70
+ ],
71
+ },
72
+ {
73
+ name: 'salesforce-architect',
74
+ agentSlug: 'specialized-salesforce-architect',
75
+ threshold: 0.76,
76
+ fallbackToLLM: true,
77
+ description: 'Salesforce development, CRM customization, Apex development',
78
+ utterances: [
79
+ 'design the Salesforce architecture for the CRM implementation',
80
+ 'write the Apex trigger for the opportunity update workflow',
81
+ 'create the Salesforce Flow for the lead routing process',
82
+ 'implement the Salesforce integration with the ERP system',
83
+ 'design the Salesforce custom objects for the data model',
84
+ 'optimize the SOQL queries in the Apex classes',
85
+ 'create the Lightning Web Components for the custom UI',
86
+ 'configure the Salesforce reports and dashboards',
87
+ ],
88
+ },
89
+ {
90
+ name: 'document-generator',
91
+ agentSlug: 'specialized-document-generator',
92
+ threshold: 0.70,
93
+ fallbackToLLM: true,
94
+ description: 'Technical documentation, API docs, architecture docs generation',
95
+ utterances: [
96
+ 'generate the API documentation from the OpenAPI spec',
97
+ 'create the architecture document for the new system',
98
+ 'generate the README for the open source library',
99
+ 'create the technical specification document',
100
+ 'generate the database schema documentation',
101
+ 'create the deployment guide for the service',
102
+ 'generate the developer onboarding documentation',
103
+ 'create the changelog from the git commit history',
104
+ ],
105
+ },
106
+ ];
107
+ //# sourceMappingURL=specialized.route.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"specialized.route.js","sourceRoot":"","sources":["../../src/routes/specialized.route.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,iBAAiB,GAAY;IACxC;QACE,IAAI,EAAE,aAAa;QACnB,SAAS,EAAE,yBAAyB;QACpC,SAAS,EAAE,IAAI;QACf,aAAa,EAAE,IAAI;QACnB,WAAW,EAAE,6DAA6D;QAC1E,UAAU,EAAE;YACV,wDAAwD;YACxD,6DAA6D;YAC7D,yDAAyD;YACzD,0CAA0C;YAC1C,iDAAiD;YACjD,sDAAsD;YACtD,6DAA6D;YAC7D,2DAA2D;SAC5D;KACF;IACD;QACE,IAAI,EAAE,oBAAoB;QAC1B,SAAS,EAAE,oBAAoB;QAC/B,SAAS,EAAE,IAAI;QACf,aAAa,EAAE,IAAI;QACnB,WAAW,EAAE,sDAAsD;QACnE,UAAU,EAAE;YACV,wDAAwD;YACxD,iDAAiD;YACjD,sDAAsD;YACtD,gDAAgD;YAChD,sDAAsD;YACtD,+CAA+C;YAC/C,gDAAgD;YAChD,uDAAuD;YACvD,wDAAwD;YACxD,4CAA4C;SAC7C;KACF;IACD;QACE,IAAI,EAAE,oBAAoB;QAC1B,SAAS,EAAE,oBAAoB;QAC/B,SAAS,EAAE,IAAI;QACf,aAAa,EAAE,IAAI;QACnB,WAAW,EAAE,6DAA6D;QAC1E,UAAU,EAAE;YACV,8CAA8C;YAC9C,kDAAkD;YAClD,gDAAgD;YAChD,4DAA4D;YAC5D,4DAA4D;YAC5D,2DAA2D;YAC3D,wDAAwD;YACxD,oDAAoD;SACrD;KACF;IACD;QACE,IAAI,EAAE,qBAAqB;QAC3B,SAAS,EAAE,qBAAqB;QAChC,SAAS,EAAE,IAAI;QACf,aAAa,EAAE,IAAI;QACnB,WAAW,EAAE,gEAAgE;QAC7E,UAAU,EAAE;YACV,4DAA4D;YAC5D,kEAAkE;YAClE,sDAAsD;YACtD,mDAAmD;YACnD,oDAAoD;YACpD,0DAA0D;YAC1D,4DAA4D;YAC5D,6DAA6D;SAC9D;KACF;IACD;QACE,IAAI,EAAE,sBAAsB;QAC5B,SAAS,EAAE,kCAAkC;QAC7C,SAAS,EAAE,IAAI;QACf,aAAa,EAAE,IAAI;QACnB,WAAW,EAAE,6DAA6D;QAC1E,UAAU,EAAE;YACV,+DAA+D;YAC/D,4DAA4D;YAC5D,yDAAyD;YACzD,0DAA0D;YAC1D,yDAAyD;YACzD,+CAA+C;YAC/C,uDAAuD;YACvD,iDAAiD;SAClD;KACF;IACD;QACE,IAAI,EAAE,oBAAoB;QAC1B,SAAS,EAAE,gCAAgC;QAC3C,SAAS,EAAE,IAAI;QACf,aAAa,EAAE,IAAI;QACnB,WAAW,EAAE,iEAAiE;QAC9E,UAAU,EAAE;YACV,sDAAsD;YACtD,qDAAqD;YACrD,iDAAiD;YACjD,6CAA6C;YAC7C,4CAA4C;YAC5C,6CAA6C;YAC7C,iDAAiD;YACjD,kDAAkD;SACnD;KACF;CACF,CAAC"}
@@ -0,0 +1,3 @@
1
+ import { Route } from '../types.js';
2
+ export declare const testingRoutes: Route[];
3
+ //# sourceMappingURL=testing.route.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"testing.route.d.ts","sourceRoot":"","sources":["../../src/routes/testing.route.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AAEpC,eAAO,MAAM,aAAa,EAAE,KAAK,EAiHhC,CAAC"}