@atlashub/smartstack-cli 3.37.0 → 3.38.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 (216) hide show
  1. package/dist/index.js +16 -24
  2. package/dist/index.js.map +1 -1
  3. package/dist/mcp-entry.mjs +201 -256
  4. package/dist/mcp-entry.mjs.map +1 -1
  5. package/package.json +1 -1
  6. package/scripts/extract-api-endpoints.ts +5 -5
  7. package/scripts/generate-doc-with-mock-ui.ts +10 -17
  8. package/templates/agents/ba-reader.md +9 -9
  9. package/templates/agents/ba-writer.md +12 -15
  10. package/templates/agents/code-reviewer.md +1 -1
  11. package/templates/agents/docs-context-reader.md +1 -1
  12. package/templates/agents/gitflow/merge.md +0 -4
  13. package/templates/agents/gitflow/pr.md +0 -4
  14. package/templates/agents/gitflow/start.md +30 -5
  15. package/templates/mcp-scaffolding/frontend/nav-routes.ts.hbs +20 -20
  16. package/templates/mcp-scaffolding/frontend/routes.tsx.hbs +16 -24
  17. package/templates/mcp-scaffolding/migrations/seed-roles.cs.hbs +2 -2
  18. package/templates/skills/_resources/mcp-validate-documentation-spec.md +3 -3
  19. package/templates/skills/_shared.md +15 -17
  20. package/templates/skills/ai-prompt/SKILL.md +1 -1
  21. package/templates/skills/ai-prompt/steps/step-00-init.md +47 -0
  22. package/templates/skills/apex/SKILL.md +3 -4
  23. package/templates/skills/apex/_shared.md +10 -20
  24. package/templates/skills/apex/references/analysis-methods.md +141 -0
  25. package/templates/skills/apex/references/challenge-questions.md +1 -21
  26. package/templates/skills/apex/references/core-seed-data.md +35 -57
  27. package/templates/skills/apex/references/examine-build-validation.md +87 -0
  28. package/templates/skills/apex/references/execution-frontend-gates.md +177 -0
  29. package/templates/skills/apex/references/execution-frontend-patterns.md +105 -0
  30. package/templates/skills/apex/references/execution-layer1-rules.md +96 -0
  31. package/templates/skills/apex/references/initialization-challenge-flow.md +110 -0
  32. package/templates/skills/apex/references/planning-layer-mapping.md +151 -0
  33. package/templates/skills/apex/references/post-checks.md +145 -40
  34. package/templates/skills/apex/references/smartstack-api.md +35 -51
  35. package/templates/skills/apex/references/smartstack-frontend.md +17 -17
  36. package/templates/skills/apex/references/smartstack-layers.md +38 -62
  37. package/templates/skills/apex/steps/step-00-init.md +14 -26
  38. package/templates/skills/apex/steps/step-01-analyze.md +10 -143
  39. package/templates/skills/apex/steps/step-02-plan.md +10 -92
  40. package/templates/skills/apex/steps/step-03-execute.md +47 -249
  41. package/templates/skills/apex/steps/step-04-examine.md +14 -78
  42. package/templates/skills/apex/steps/step-05-deep-review.md +2 -2
  43. package/templates/skills/apex/steps/step-08-run-tests.md +2 -0
  44. package/templates/skills/application/SKILL.md +6 -7
  45. package/templates/skills/application/references/backend-controller-hierarchy.md +16 -16
  46. package/templates/skills/application/references/backend-seeding-and-dto-output.md +83 -0
  47. package/templates/skills/application/references/backend-table-prefix-mapping.md +79 -0
  48. package/templates/skills/application/references/backend-verification.md +1 -1
  49. package/templates/skills/application/references/frontend-i18n-and-output.md +67 -0
  50. package/templates/skills/application/references/frontend-route-naming.md +117 -0
  51. package/templates/skills/application/references/frontend-route-wiring-app-tsx.md +107 -0
  52. package/templates/skills/application/references/frontend-verification.md +12 -12
  53. package/templates/skills/application/references/init-parameter-detection.md +120 -0
  54. package/templates/skills/application/references/migration-checklist-troubleshooting.md +100 -0
  55. package/templates/skills/application/references/nav-fallback-procedure.md +5 -6
  56. package/templates/skills/application/references/provider-template.md +2 -6
  57. package/templates/skills/application/references/roles-client-project-handling.md +55 -0
  58. package/templates/skills/application/references/roles-fallback-procedure.md +149 -0
  59. package/templates/skills/application/references/test-coverage-requirements.md +213 -0
  60. package/templates/skills/application/references/test-frontend.md +3 -3
  61. package/templates/skills/application/steps/step-00-init.md +11 -141
  62. package/templates/skills/application/steps/step-01-navigation.md +3 -3
  63. package/templates/skills/application/steps/step-02-permissions.md +4 -4
  64. package/templates/skills/application/steps/step-03-roles.md +18 -175
  65. package/templates/skills/application/steps/step-03b-provider.md +1 -2
  66. package/templates/skills/application/steps/step-04-backend.md +19 -110
  67. package/templates/skills/application/steps/step-05-frontend.md +17 -143
  68. package/templates/skills/application/steps/step-06-migration.md +12 -60
  69. package/templates/skills/application/steps/step-07-tests.md +9 -76
  70. package/templates/skills/application/templates-backend.md +29 -27
  71. package/templates/skills/application/templates-frontend.md +48 -48
  72. package/templates/skills/application/templates-seed.md +57 -131
  73. package/templates/skills/business-analyse/SKILL.md +27 -30
  74. package/templates/skills/business-analyse/_architecture.md +6 -6
  75. package/templates/skills/business-analyse/_shared.md +60 -88
  76. package/templates/skills/business-analyse/questionnaire/04-data.md +3 -3
  77. package/templates/skills/business-analyse/questionnaire/06-security.md +1 -1
  78. package/templates/skills/business-analyse/questionnaire/13-cross-module.md +1 -1
  79. package/templates/skills/business-analyse/react/application-viewer.md +12 -12
  80. package/templates/skills/business-analyse/react/components.md +8 -12
  81. package/templates/skills/business-analyse/react/schema.md +11 -11
  82. package/templates/skills/business-analyse/references/agent-module-prompt.md +2 -3
  83. package/templates/skills/business-analyse/references/analysis-semantic-checks.md +190 -0
  84. package/templates/skills/business-analyse/references/cache-warming-strategy.md +2 -2
  85. package/templates/skills/business-analyse/references/cadrage-challenge-patterns.md +41 -0
  86. package/templates/skills/business-analyse/references/cadrage-coverage-matrix.md +74 -0
  87. package/templates/skills/business-analyse/references/cadrage-shared-modules.md +69 -0
  88. package/templates/skills/business-analyse/references/cadrage-structure-cards.md +1 -1
  89. package/templates/skills/business-analyse/references/compilation-structure-cards.md +297 -0
  90. package/templates/skills/business-analyse/references/consolidation-structural-checks.md +2 -2
  91. package/templates/skills/business-analyse/references/deploy-modes.md +5 -5
  92. package/templates/skills/business-analyse/references/detection-strategies.md +7 -7
  93. package/templates/skills/business-analyse/references/handoff-file-templates.md +14 -22
  94. package/templates/skills/business-analyse/references/handoff-mappings.md +4 -4
  95. package/templates/skills/business-analyse/references/handoff-seeddata-generation.md +312 -0
  96. package/templates/skills/business-analyse/references/init-schema-deployment.md +3 -3
  97. package/templates/skills/business-analyse/references/naming-conventions.md +22 -24
  98. package/templates/skills/business-analyse/references/prd-generation.md +2 -2
  99. package/templates/skills/business-analyse/references/review-data-mapping.md +2 -2
  100. package/templates/skills/business-analyse/references/robustness-checks.md +1 -1
  101. package/templates/skills/business-analyse/references/spec-auto-inference.md +3 -3
  102. package/templates/skills/business-analyse/references/team-orchestration.md +49 -6
  103. package/templates/skills/business-analyse/references/ui-dashboard-spec.md +1 -1
  104. package/templates/skills/business-analyse/references/ui-resource-cards.md +18 -18
  105. package/templates/skills/business-analyse/references/validate-incremental-html.md +2 -2
  106. package/templates/skills/business-analyse/references/validation-checklist.md +2 -2
  107. package/templates/skills/business-analyse/schemas/application-schema.json +4 -5
  108. package/templates/skills/business-analyse/schemas/project-schema.json +1 -6
  109. package/templates/skills/business-analyse/schemas/sections/metadata-schema.json +2 -3
  110. package/templates/skills/business-analyse/schemas/sections/specification-schema.json +4 -4
  111. package/templates/skills/business-analyse/steps/step-00-init.md +8 -17
  112. package/templates/skills/business-analyse/steps/step-01-cadrage.md +35 -198
  113. package/templates/skills/business-analyse/steps/step-01b-applications.md +16 -20
  114. package/templates/skills/business-analyse/steps/step-02-decomposition.md +1 -1
  115. package/templates/skills/business-analyse/steps/step-03a1-setup.md +4 -4
  116. package/templates/skills/business-analyse/steps/step-03a2-analysis.md +1 -1
  117. package/templates/skills/business-analyse/steps/step-03b-ui.md +4 -4
  118. package/templates/skills/business-analyse/steps/step-03c-compile.md +66 -140
  119. package/templates/skills/business-analyse/steps/step-03d-validate.md +2 -2
  120. package/templates/skills/business-analyse/steps/step-04a-collect.md +2 -2
  121. package/templates/skills/business-analyse/steps/step-04b-analyze.md +42 -160
  122. package/templates/skills/business-analyse/steps/step-04c-decide.md +1 -1
  123. package/templates/skills/business-analyse/steps/step-05a-handoff.md +74 -104
  124. package/templates/skills/business-analyse/steps/step-05b-deploy.md +13 -11
  125. package/templates/skills/business-analyse/steps/step-06-review.md +3 -3
  126. package/templates/skills/business-analyse/templates/tpl-frd.md +13 -13
  127. package/templates/skills/business-analyse/templates/tpl-handoff.md +12 -12
  128. package/templates/skills/business-analyse/templates-frd.md +25 -25
  129. package/templates/skills/business-analyse/templates-react.md +15 -21
  130. package/templates/skills/controller/SKILL.md +1 -1
  131. package/templates/skills/controller/postman-templates.md +1 -1
  132. package/templates/skills/controller/references/controller-code-templates.md +2 -2
  133. package/templates/skills/controller/references/mcp-scaffold-workflow.md +209 -0
  134. package/templates/skills/controller/references/permission-sync-templates.md +13 -16
  135. package/templates/skills/controller/steps/step-00-init.md +11 -11
  136. package/templates/skills/controller/steps/step-03-generate.md +64 -103
  137. package/templates/skills/controller/templates.md +67 -71
  138. package/templates/skills/debug/SKILL.md +13 -218
  139. package/templates/skills/debug/steps/step-00-init.md +57 -0
  140. package/templates/skills/debug/steps/step-01-analyze.md +219 -0
  141. package/templates/skills/debug/steps/step-02-resolve.md +85 -0
  142. package/templates/skills/documentation/SKILL.md +49 -345
  143. package/templates/skills/documentation/data-schema.md +11 -8
  144. package/templates/skills/documentation/steps/step-00-init.md +70 -0
  145. package/templates/skills/documentation/steps/step-01-scan.md +113 -0
  146. package/templates/skills/documentation/steps/step-02-generate.md +231 -0
  147. package/templates/skills/documentation/steps/step-03-validate.md +238 -0
  148. package/templates/skills/documentation/templates.md +480 -322
  149. package/templates/skills/efcore/references/both-contexts.md +32 -0
  150. package/templates/skills/efcore/references/database-operations.md +67 -0
  151. package/templates/skills/efcore/references/destructive-operations.md +38 -0
  152. package/templates/skills/efcore/references/reset-operations.md +81 -0
  153. package/templates/skills/efcore/references/seed-methods.md +86 -0
  154. package/templates/skills/efcore/references/shared-init-functions.md +250 -0
  155. package/templates/skills/efcore/references/sql-objects-injection.md +61 -0
  156. package/templates/skills/efcore/references/troubleshooting.md +81 -0
  157. package/templates/skills/efcore/steps/db/step-deploy.md +1 -32
  158. package/templates/skills/efcore/steps/db/step-reset.md +7 -103
  159. package/templates/skills/efcore/steps/db/step-seed.md +10 -132
  160. package/templates/skills/efcore/steps/db/step-status.md +5 -44
  161. package/templates/skills/efcore/steps/migration/step-03-validate.md +8 -62
  162. package/templates/skills/efcore/steps/rebase-snapshot/step-03-create.md +1 -57
  163. package/templates/skills/efcore/steps/shared/step-00-init.md +11 -254
  164. package/templates/skills/efcore/steps/squash/step-03-create.md +1 -58
  165. package/templates/skills/feature-full/SKILL.md +1 -1
  166. package/templates/skills/feature-full/steps/step-00-init.md +57 -0
  167. package/templates/skills/feature-full/steps/step-01-implementation.md +1 -1
  168. package/templates/skills/gitflow/SKILL.md +1 -1
  169. package/templates/skills/gitflow/_shared.md +23 -0
  170. package/templates/skills/gitflow/references/commit-message-generation.md +58 -0
  171. package/templates/skills/gitflow/references/commit-migration-validation.md +49 -0
  172. package/templates/skills/gitflow/references/finish-cleanup.md +51 -0
  173. package/templates/skills/gitflow/references/finish-version-bumping.md +45 -0
  174. package/templates/skills/gitflow/references/init-environment-detection.md +41 -0
  175. package/templates/skills/gitflow/references/init-questions.md +185 -0
  176. package/templates/skills/gitflow/references/init-structure-creation.md +71 -0
  177. package/templates/skills/gitflow/references/init-version-detection.md +21 -0
  178. package/templates/skills/gitflow/references/init-workspace-detection.md +43 -0
  179. package/templates/skills/gitflow/references/merge-ci-status.md +36 -0
  180. package/templates/skills/gitflow/references/merge-execution.md +62 -0
  181. package/templates/skills/gitflow/references/merge-pr-context.md +76 -0
  182. package/templates/skills/gitflow/references/pr-build-checks.md +60 -0
  183. package/templates/skills/gitflow/references/pr-generation.md +58 -0
  184. package/templates/skills/gitflow/references/start-branch-normalization.md +28 -0
  185. package/templates/skills/gitflow/references/start-worktree-creation.md +50 -0
  186. package/templates/skills/gitflow/references/sync-push-verify.md +44 -0
  187. package/templates/skills/gitflow/references/sync-rebase-conflicts.md +38 -0
  188. package/templates/skills/gitflow/steps/step-commit.md +12 -91
  189. package/templates/skills/gitflow/steps/step-finish.md +15 -159
  190. package/templates/skills/gitflow/steps/step-init.md +24 -326
  191. package/templates/skills/gitflow/steps/step-merge.md +17 -176
  192. package/templates/skills/gitflow/steps/step-pr.md +10 -116
  193. package/templates/skills/gitflow/steps/step-start.md +16 -109
  194. package/templates/skills/gitflow/steps/step-sync.md +6 -69
  195. package/templates/skills/ralph-loop/SKILL.md +6 -0
  196. package/templates/skills/ralph-loop/references/category-completeness.md +185 -0
  197. package/templates/skills/ralph-loop/references/compact-loop.md +1 -1
  198. package/templates/skills/ralph-loop/references/init-resume-recovery.md +127 -0
  199. package/templates/skills/ralph-loop/references/module-transition.md +151 -0
  200. package/templates/skills/ralph-loop/references/multi-module-queue.md +171 -0
  201. package/templates/skills/ralph-loop/references/parallel-execution.md +246 -0
  202. package/templates/skills/ralph-loop/references/task-transform-legacy.md +6 -9
  203. package/templates/skills/ralph-loop/references/team-orchestration.md +45 -3
  204. package/templates/skills/ralph-loop/steps/step-00-init.md +36 -109
  205. package/templates/skills/ralph-loop/steps/step-01-task.md +15 -163
  206. package/templates/skills/ralph-loop/steps/step-02-execute.md +8 -154
  207. package/templates/skills/ralph-loop/steps/step-04-check.md +21 -73
  208. package/templates/skills/review-code/references/owasp-api-top10.md +5 -5
  209. package/templates/skills/review-code/references/smartstack-conventions.md +11 -11
  210. package/templates/skills/validate-feature/references/api-smoke-tests.md +140 -0
  211. package/templates/skills/validate-feature/references/db-validation-checks.md +180 -0
  212. package/templates/skills/validate-feature/steps/step-01-compile.md +5 -2
  213. package/templates/skills/validate-feature/steps/step-04-api-smoke.md +34 -145
  214. package/templates/skills/validate-feature/steps/step-05-db-validation.md +74 -260
  215. package/templates/skills/workflow/SKILL.md +1 -1
  216. package/templates/skills/workflow/steps/step-00-init.md +57 -0
package/dist/index.js CHANGED
@@ -117390,10 +117390,10 @@ createRoot(document.getElementById('root')!).render(
117390
117390
  recordFile(state, "frontend", main_relPath, main_result.hash);
117391
117391
  const appTsx = `import { useRoutes, Navigate } from 'react-router-dom';
117392
117392
  import { mergeRoutes } from '@atlashub/smartstack';
117393
- import type { RouteConfig, ContextRouteExtensions } from '@atlashub/smartstack';
117393
+ import type { RouteConfig, ApplicationRouteExtensions } from '@atlashub/smartstack';
117394
117394
 
117395
117395
  /**
117396
- * Client-specific routes (outside SmartStack locked contexts)
117396
+ * Client-specific routes (outside SmartStack locked applications)
117397
117397
  * Add your custom routes here. Locked SmartStack paths cannot be overridden.
117398
117398
  */
117399
117399
  const clientRoutes: RouteConfig[] = [
@@ -117404,21 +117404,20 @@ const clientRoutes: RouteConfig[] = [
117404
117404
  ];
117405
117405
 
117406
117406
  /**
117407
- * Context-scoped route extensions
117408
- * Add your business/platform/personal routes here.
117409
- * Paths are RELATIVE to the context root.
117410
- * Example: 'rh/timemanagement/list' (NOT '/business/rh/timemanagement/list')
117407
+ * Application-scoped route extensions
117408
+ * Add your routes here.
117409
+ * Paths are RELATIVE to the application root.
117410
+ * Example: 'users/list' (NOT '/administration/users/list')
117411
117411
  */
117412
- const contextRoutes: ContextRouteExtensions = {
117413
- // business: [],
117414
- // platform: [],
117415
- // personal: [],
117412
+ const applicationRoutes: ApplicationRouteExtensions = {
117413
+ // sales: [],
117414
+ // administration: [],
117416
117415
  };
117417
117416
 
117418
117417
  /**
117419
- * Merged routes combining client, context extensions, and SmartStack core routes
117418
+ * Merged routes combining client, application extensions, and SmartStack core routes
117420
117419
  */
117421
- const routes = mergeRoutes(clientRoutes, contextRoutes);
117420
+ const routes = mergeRoutes(clientRoutes, applicationRoutes);
117422
117421
 
117423
117422
  /**
117424
117423
  * App - Main application component
@@ -127009,7 +127008,6 @@ function generateFilesTasks(prd, ctx, frontendFiles, i18nFiles, testFiles) {
127009
127008
  function generateFrontendTask(prd, ctx, frontendFiles) {
127010
127009
  if (frontendFiles.length === 0) return [];
127011
127010
  const apiDepId = ctx.lastIdByCategory["api"] ?? ctx.lastIdByCategory["application"];
127012
- const ctxName = capitalize(prd.project?.application ? "Business" : "Business");
127013
127011
  const app = prd.project?.application ?? ctx.moduleCode;
127014
127012
  const wireframes = [...new Set(frontendFiles.flatMap((f) => f.linkedWireframes ?? []))];
127015
127013
  return [createTask(
@@ -127017,7 +127015,7 @@ function generateFrontendTask(prd, ctx, frontendFiles) {
127017
127015
  "frontend",
127018
127016
  `[frontend] Generate COMPLETE frontend for module ${ctx.moduleCode} via MCP (${frontendFiles.length} files)`,
127019
127017
  apiDepId ? [apiDepId] : [],
127020
- `Pages in src/pages/${ctxName}/${app}/${ctx.moduleCode}/; MCP scaffold_api_client + scaffold_routes; SmartTable for lists; CSS variables ONLY; 4-language i18n; npm run typecheck passes`,
127018
+ `Pages in src/pages/${app}/${ctx.moduleCode}/; MCP scaffold_api_client + scaffold_routes; SmartTable for lists; CSS variables ONLY; 4-language i18n; npm run typecheck passes`,
127021
127019
  frontendFiles.map((f) => f.path),
127022
127020
  {
127023
127021
  _frontendMeta: {
@@ -127085,10 +127083,9 @@ function applyGuardrails(prd, ctx, tasks, frontendFiles, i18nFiles) {
127085
127083
  ));
127086
127084
  }
127087
127085
  if (frontendFiles.length === 0 && !tasks.some((t) => t.category === "frontend") && (sections.length > 0 || apiEndpoints.length > 0)) {
127088
- const ctxName = "Business";
127089
127086
  const app = prd.project?.application ?? ctx.moduleCode;
127090
127087
  const derivedFiles = sections.map((s) => ({
127091
- path: `web/src/pages/${ctxName}/${app}/${ctx.moduleCode}/${s.code}.tsx`,
127088
+ path: `web/src/pages/${app}/${ctx.moduleCode}/${s.code}.tsx`,
127092
127089
  type: "Page"
127093
127090
  }));
127094
127091
  if (apiEndpoints.length > 0) {
@@ -127100,7 +127097,7 @@ function applyGuardrails(prd, ctx, tasks, frontendFiles, i18nFiles) {
127100
127097
  "frontend",
127101
127098
  `[frontend] Generate COMPLETE frontend for ${ctx.moduleCode} via MCP (${derivedFiles.length} files)`,
127102
127099
  depId ? [depId] : [],
127103
- `Pages in src/pages/${ctxName}/${app}/${ctx.moduleCode}/; SmartTable for lists; CSS variables ONLY; 4-language i18n; npm run typecheck passes`,
127100
+ `Pages in src/pages/${app}/${ctx.moduleCode}/; SmartTable for lists; CSS variables ONLY; 4-language i18n; npm run typecheck passes`,
127104
127101
  derivedFiles.map((f) => f.path),
127105
127102
  {
127106
127103
  _frontendMeta: {
@@ -127132,7 +127129,7 @@ function applyGuardrails(prd, ctx, tasks, frontendFiles, i18nFiles) {
127132
127129
  const navCount = coreSeedData.filter((s) => s.entity === "NavigationModule").reduce((n, s) => n + (s.count ?? 1), 0);
127133
127130
  const permCount = coreSeedData.filter((s) => s.entity === "Permission").reduce((n, s) => n + (s.count ?? 1), 0);
127134
127131
  const roleCount = coreSeedData.filter((s) => s.entity === "RolePermission").reduce((n, s) => n + (s.count ?? 1), 0);
127135
- const navRoute = `business.${(prd.project?.application ?? "app").toLowerCase()}.${ctx.moduleCode.toLowerCase()}`;
127132
+ const navRoute = `${(prd.project?.application ?? "app").toLowerCase()}.${ctx.moduleCode.toLowerCase()}`;
127136
127133
  injected.push(createTask(
127137
127134
  ctx,
127138
127135
  "infrastructure",
@@ -127145,7 +127142,6 @@ function applyGuardrails(prd, ctx, tasks, frontendFiles, i18nFiles) {
127145
127142
  source: "guardrail-derived",
127146
127143
  coreSeedData,
127147
127144
  navRoute,
127148
- contextCode: "business",
127149
127145
  appCode: prd.project?.application,
127150
127146
  appLabels: null
127151
127147
  }
@@ -127158,7 +127154,7 @@ function applyGuardrails(prd, ctx, tasks, frontendFiles, i18nFiles) {
127158
127154
  const seedDataFiles = filesToCreate["seedData"] ?? [];
127159
127155
  if (!hasProvider && (seedDataFiles.length > 0 || coreSeedData && coreSeedData.length > 0)) {
127160
127156
  const depId = ctx.lastIdByCategory["infrastructure"] ?? ctx.lastIdByCategory["domain"];
127161
- const navRoute = `business.${(prd.project?.application ?? "app").toLowerCase()}.${ctx.moduleCode.toLowerCase()}`;
127157
+ const navRoute = `${(prd.project?.application ?? "app").toLowerCase()}.${ctx.moduleCode.toLowerCase()}`;
127162
127158
  injected.push(createTask(
127163
127159
  ctx,
127164
127160
  "infrastructure",
@@ -127169,7 +127165,6 @@ function applyGuardrails(prd, ctx, tasks, frontendFiles, i18nFiles) {
127169
127165
  {
127170
127166
  _providerMeta: {
127171
127167
  navRoute,
127172
- contextCode: "business",
127173
127168
  appCode: prd.project?.application
127174
127169
  }
127175
127170
  }
@@ -127292,9 +127287,6 @@ function resolveSection(entityToSection, filePaths, description) {
127292
127287
  }
127293
127288
  return void 0;
127294
127289
  }
127295
- function capitalize(s) {
127296
- return s.charAt(0).toUpperCase() + s.slice(1);
127297
- }
127298
127290
 
127299
127291
  // src/utils/prd-extractor.ts
127300
127292
  function extractPrd(moduleFeature, featureJsonPath, namespace) {