@aiwg/cli 0.0.0-bootstrap.0 → 2026.7.17

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 (466) hide show
  1. package/README.md +21 -1
  2. package/bin/aiwg.mjs +349 -0
  3. package/dist/src/a2a/agent-card.js +145 -0
  4. package/dist/src/a2a/client.js +411 -0
  5. package/dist/src/a2a/hitl-cli.js +171 -0
  6. package/dist/src/a2a/hitl-driver.js +370 -0
  7. package/dist/src/a2a/hitl.js +181 -0
  8. package/dist/src/a2a/http.js +193 -0
  9. package/dist/src/a2a/jcs.js +128 -0
  10. package/dist/src/a2a/jws.js +187 -0
  11. package/dist/src/a2a/types.js +24 -0
  12. package/dist/src/a2a/webhook.js +240 -0
  13. package/dist/src/activity-log/cli.js +348 -0
  14. package/dist/src/activity-log/parser.js +81 -0
  15. package/dist/src/activity-log/types.js +50 -0
  16. package/dist/src/agents/agent-deployer.js +367 -0
  17. package/dist/src/agents/agent-packager.js +271 -0
  18. package/dist/src/agents/agent-validator.js +271 -0
  19. package/dist/src/agents/grounding/knowledge-base.js +161 -0
  20. package/dist/src/agents/grounding/types.js +12 -0
  21. package/dist/src/agents/index.js +10 -0
  22. package/dist/src/agents/packaged-agent-inventory.js +75 -0
  23. package/dist/src/agents/types.js +7 -0
  24. package/dist/src/api/index.d.ts +10 -0
  25. package/dist/src/api/index.js +10 -0
  26. package/dist/src/artifacts/address-parser.js +73 -0
  27. package/dist/src/artifacts/audit/cli.js +183 -0
  28. package/dist/src/artifacts/audit/drift.js +122 -0
  29. package/dist/src/artifacts/audit/types.js +12 -0
  30. package/dist/src/artifacts/backends/graphology-backend.js +160 -0
  31. package/dist/src/artifacts/backends/json-backend.js +129 -0
  32. package/dist/src/artifacts/backends/sqlite-backend.js +199 -0
  33. package/dist/src/artifacts/browser-export.js +622 -0
  34. package/dist/src/artifacts/capability-resolver.js +94 -0
  35. package/dist/src/artifacts/checksum-manifest.js +91 -0
  36. package/dist/src/artifacts/citation-parser.js +162 -0
  37. package/dist/src/artifacts/cli.js +1462 -0
  38. package/dist/src/artifacts/corpus-tools/citation-densify.js +311 -0
  39. package/dist/src/artifacts/corpus-tools/cli.js +393 -0
  40. package/dist/src/artifacts/corpus-tools/corpus-graph.js +225 -0
  41. package/dist/src/artifacts/corpus-tools/curator.js +186 -0
  42. package/dist/src/artifacts/corpus-tools/discovery-log.js +70 -0
  43. package/dist/src/artifacts/corpus-tools/funder-network.js +141 -0
  44. package/dist/src/artifacts/corpus-tools/induction-audit.js +233 -0
  45. package/dist/src/artifacts/corpus-tools/integrity-scan.js +202 -0
  46. package/dist/src/artifacts/corpus-tools/profile-communities.js +166 -0
  47. package/dist/src/artifacts/corpus-tools/profile-edges.js +72 -0
  48. package/dist/src/artifacts/corpus-tools/profile-embed.js +113 -0
  49. package/dist/src/artifacts/corpus-tools/profile-generate-fm.js +167 -0
  50. package/dist/src/artifacts/corpus-tools/profile-generate.js +181 -0
  51. package/dist/src/artifacts/corpus-tools/profile-metrics.js +98 -0
  52. package/dist/src/artifacts/corpus-tools/profile-status.js +86 -0
  53. package/dist/src/artifacts/corpus-tools/profile-temporal.js +139 -0
  54. package/dist/src/artifacts/corpus-tools/radar-init.js +93 -0
  55. package/dist/src/artifacts/corpus-tools/radar-report.js +118 -0
  56. package/dist/src/artifacts/corpus-tools/radar-shared.js +189 -0
  57. package/dist/src/artifacts/corpus-tools/radar-status.js +68 -0
  58. package/dist/src/artifacts/corpus-tools/sidecar-lint.js +233 -0
  59. package/dist/src/artifacts/corpus-tools/sidecar-repair.js +277 -0
  60. package/dist/src/artifacts/corpus-tools/snapshot.js +591 -0
  61. package/dist/src/artifacts/corpus-tools/source-types.js +164 -0
  62. package/dist/src/artifacts/corpus-tools/vision-extract.js +243 -0
  63. package/dist/src/artifacts/corpus-views/build.js +126 -0
  64. package/dist/src/artifacts/corpus-views/corpus-config.js +124 -0
  65. package/dist/src/artifacts/corpus-views/ref-parser.js +437 -0
  66. package/dist/src/artifacts/corpus-views/renderers.js +353 -0
  67. package/dist/src/artifacts/corpus-views/taxonomies.js +131 -0
  68. package/dist/src/artifacts/dep-graph.js +173 -0
  69. package/dist/src/artifacts/discover-facets.js +375 -0
  70. package/dist/src/artifacts/embedding-index.js +354 -0
  71. package/dist/src/artifacts/enrichment/cli.js +240 -0
  72. package/dist/src/artifacts/enrichment/prompt.js +47 -0
  73. package/dist/src/artifacts/enrichment/store.js +90 -0
  74. package/dist/src/artifacts/enrichment/types.js +12 -0
  75. package/dist/src/artifacts/fortemi-core-query-adapter.js +475 -0
  76. package/dist/src/artifacts/fortemi-core-sync.js +251 -0
  77. package/dist/src/artifacts/fortemi-shard-export.js +44 -0
  78. package/dist/src/artifacts/fulltext.js +108 -0
  79. package/dist/src/artifacts/graph-backend.js +51 -0
  80. package/dist/src/artifacts/graph-query.js +247 -0
  81. package/dist/src/artifacts/hybrid-query.js +225 -0
  82. package/dist/src/artifacts/index-builder.js +1089 -0
  83. package/dist/src/artifacts/index-reader.js +112 -0
  84. package/dist/src/artifacts/index-status.js +193 -0
  85. package/dist/src/artifacts/legacy-index-migration.js +169 -0
  86. package/dist/src/artifacts/move.js +154 -0
  87. package/dist/src/artifacts/operational-state.js +239 -0
  88. package/dist/src/artifacts/prebuilt-build-lock.js +49 -0
  89. package/dist/src/artifacts/query-engine.js +1955 -0
  90. package/dist/src/artifacts/source-graph.js +529 -0
  91. package/dist/src/artifacts/stats.js +169 -0
  92. package/dist/src/artifacts/types.js +606 -0
  93. package/dist/src/artifacts/views/cli.js +293 -0
  94. package/dist/src/artifacts/views/definition.js +170 -0
  95. package/dist/src/artifacts/views/store.js +149 -0
  96. package/dist/src/artifacts/views/types.js +8 -0
  97. package/dist/src/artifacts/watcher.js +255 -0
  98. package/dist/src/catalog/builtin-models.json +636 -0
  99. package/dist/src/catalog/cli.js +228 -0
  100. package/dist/src/catalog/cli.mjs +289 -0
  101. package/dist/src/catalog/index.js +15 -0
  102. package/dist/src/catalog/loader.js +217 -0
  103. package/dist/src/catalog/loader.mjs +251 -0
  104. package/dist/src/catalog/sources.json +41 -0
  105. package/dist/src/catalog/types.js +8 -0
  106. package/dist/src/channel/manager.mjs +504 -0
  107. package/dist/src/cli/agent-spawn.js +178 -0
  108. package/dist/src/cli/cli-extension-loader.js +245 -0
  109. package/dist/src/cli/command-log.js +275 -0
  110. package/dist/src/cli/config-loader.js +232 -0
  111. package/dist/src/cli/env.js +82 -0
  112. package/dist/src/cli/errors.js +150 -0
  113. package/dist/src/cli/find-package-root.js +40 -0
  114. package/dist/src/cli/git-hooks.js +250 -0
  115. package/dist/src/cli/handlers/agentcard.js +206 -0
  116. package/dist/src/cli/handlers/artifacts.js +76 -0
  117. package/dist/src/cli/handlers/best-practices-audit.js +280 -0
  118. package/dist/src/cli/handlers/cockpit.js +137 -0
  119. package/dist/src/cli/handlers/command-log.js +37 -0
  120. package/dist/src/cli/handlers/daemon.js +59 -0
  121. package/dist/src/cli/handlers/diagnose.js +300 -0
  122. package/dist/src/cli/handlers/execution-mode.js +105 -0
  123. package/dist/src/cli/handlers/feedback.js +341 -0
  124. package/dist/src/cli/handlers/help.js +147 -0
  125. package/dist/src/cli/handlers/index.js +302 -0
  126. package/dist/src/cli/handlers/init.js +179 -0
  127. package/dist/src/cli/handlers/install.js +129 -0
  128. package/dist/src/cli/handlers/issues.js +46 -0
  129. package/dist/src/cli/handlers/lint.js +42 -0
  130. package/dist/src/cli/handlers/local-executor.js +315 -0
  131. package/dist/src/cli/handlers/marketplace.js +168 -0
  132. package/dist/src/cli/handlers/mc.js +1010 -0
  133. package/dist/src/cli/handlers/models.js +352 -0
  134. package/dist/src/cli/handlers/packages.js +155 -0
  135. package/dist/src/cli/handlers/ralph-launcher.js +717 -0
  136. package/dist/src/cli/handlers/ralph.js +575 -0
  137. package/dist/src/cli/handlers/refresh.js +432 -0
  138. package/dist/src/cli/handlers/regenerate.js +336 -0
  139. package/dist/src/cli/handlers/repo-access.js +109 -0
  140. package/dist/src/cli/handlers/run.js +165 -0
  141. package/dist/src/cli/handlers/runtime-info.js +301 -0
  142. package/dist/src/cli/handlers/sandbox.js +197 -0
  143. package/dist/src/cli/handlers/scaffolding.js +149 -0
  144. package/dist/src/cli/handlers/script-runner.js +121 -0
  145. package/dist/src/cli/handlers/sdlc-accelerate.js +148 -0
  146. package/dist/src/cli/handlers/serve.js +1835 -0
  147. package/dist/src/cli/handlers/session.js +348 -0
  148. package/dist/src/cli/handlers/setup.js +440 -0
  149. package/dist/src/cli/handlers/skill-lint.js +367 -0
  150. package/dist/src/cli/handlers/skill-usage.js +74 -0
  151. package/dist/src/cli/handlers/steward.js +567 -0
  152. package/dist/src/cli/handlers/subcommands.js +1702 -0
  153. package/dist/src/cli/handlers/team.js +337 -0
  154. package/dist/src/cli/handlers/types.js +11 -0
  155. package/dist/src/cli/handlers/use.js +2772 -0
  156. package/dist/src/cli/handlers/utilities.js +703 -0
  157. package/dist/src/cli/handlers/version.js +134 -0
  158. package/dist/src/cli/handlers/workspace-context.js +93 -0
  159. package/dist/src/cli/handlers/workspace.js +126 -0
  160. package/dist/src/cli/help-generator.js +178 -0
  161. package/dist/src/cli/hooks/builtin/activity-log-hook.js +126 -0
  162. package/dist/src/cli/hooks/executor.js +96 -0
  163. package/dist/src/cli/hooks/index.js +15 -0
  164. package/dist/src/cli/hooks/registry.js +143 -0
  165. package/dist/src/cli/hooks/types.js +13 -0
  166. package/dist/src/cli/log.js +492 -0
  167. package/dist/src/cli/project-isolation/detect.js +70 -0
  168. package/dist/src/cli/project-isolation/index.js +7 -0
  169. package/dist/src/cli/project-isolation/signals.js +17 -0
  170. package/dist/src/cli/project-isolation/warning.js +102 -0
  171. package/dist/src/cli/prompt-utils.js +155 -0
  172. package/dist/src/cli/provider-deployment-plan.js +126 -0
  173. package/dist/src/cli/provider-resolution.js +119 -0
  174. package/dist/src/cli/router.js +305 -0
  175. package/dist/src/cli/scope-resolver.js +392 -0
  176. package/dist/src/cli/skill-usage.js +616 -0
  177. package/dist/src/cli/ui.js +224 -0
  178. package/dist/src/cli/watch-service.js +203 -0
  179. package/dist/src/cli/workflow-orchestrator.js +478 -0
  180. package/dist/src/cli/workspace-signals.js +321 -0
  181. package/dist/src/community/footer.js +14 -0
  182. package/dist/src/community/links.js +123 -0
  183. package/dist/src/community/milestones.js +46 -0
  184. package/dist/src/community/nudge-policy.js +93 -0
  185. package/dist/src/config/aiwg-config.js +883 -0
  186. package/dist/src/config/cli.js +703 -0
  187. package/dist/src/config/gitignore.js +156 -0
  188. package/dist/src/config/project-artifacts.js +76 -0
  189. package/dist/src/config/user-config.js +428 -0
  190. package/dist/src/config/user-registry.js +127 -0
  191. package/dist/src/config/workspace.js +276 -0
  192. package/dist/src/contributors/detect.js +39 -0
  193. package/dist/src/contributors/discover.js +172 -0
  194. package/dist/src/contributors/heuristic.js +186 -0
  195. package/dist/src/contributors/index.js +11 -0
  196. package/dist/src/contributors/types.js +13 -0
  197. package/dist/src/contributors/validation.js +116 -0
  198. package/dist/src/data/community.schema.json +43 -0
  199. package/dist/src/data/community.yaml +16 -0
  200. package/dist/src/extensions/capability-index.js +270 -0
  201. package/dist/src/extensions/claude-hooks-installer.js +268 -0
  202. package/dist/src/extensions/commands/definitions.js +3485 -0
  203. package/dist/src/extensions/deployment-registration.js +463 -0
  204. package/dist/src/extensions/index.js +22 -0
  205. package/dist/src/extensions/loader.js +132 -0
  206. package/dist/src/extensions/managed-marker.js +100 -0
  207. package/dist/src/extensions/manifest.js +196 -0
  208. package/dist/src/extensions/project-local-activity.js +114 -0
  209. package/dist/src/extensions/project-local-discovery.js +261 -0
  210. package/dist/src/extensions/project-local-doctor.js +281 -0
  211. package/dist/src/extensions/project-local-gitignore.js +176 -0
  212. package/dist/src/extensions/project-local-paths.js +121 -0
  213. package/dist/src/extensions/project-local-promote.js +218 -0
  214. package/dist/src/extensions/project-local-remove.js +373 -0
  215. package/dist/src/extensions/project-local-scaffold.js +252 -0
  216. package/dist/src/extensions/project-quickref.js +291 -0
  217. package/dist/src/extensions/registry.js +368 -0
  218. package/dist/src/extensions/shadow-resolver.js +271 -0
  219. package/dist/src/extensions/types.js +86 -0
  220. package/dist/src/extensions/upstream-registry.js +195 -0
  221. package/dist/src/extensions/validation.js +631 -0
  222. package/dist/src/features/catalog.js +88 -0
  223. package/dist/src/features/cli.js +197 -0
  224. package/dist/src/features/installer.js +57 -0
  225. package/dist/src/features/paths.js +14 -0
  226. package/dist/src/features/runtime.js +21 -0
  227. package/dist/src/features/status.js +134 -0
  228. package/dist/src/hooks/laziness-detection.js +532 -0
  229. package/dist/src/intake/git-history-analyzer.js +486 -0
  230. package/dist/src/intake/index.js +9 -0
  231. package/dist/src/issues/cli.js +327 -0
  232. package/dist/src/issues/index.js +5 -0
  233. package/dist/src/issues/live.js +154 -0
  234. package/dist/src/issues/local.js +666 -0
  235. package/dist/src/issues/sync.js +143 -0
  236. package/dist/src/issues/types.js +2 -0
  237. package/dist/src/issues/workflows.js +164 -0
  238. package/dist/src/kb/cli.js +173 -0
  239. package/dist/src/lint/cli.js +171 -0
  240. package/dist/src/lint/loader.js +225 -0
  241. package/dist/src/lint/reporters.js +141 -0
  242. package/dist/src/lint/runner.js +364 -0
  243. package/dist/src/lint/types.js +10 -0
  244. package/dist/src/marketplace/cache.js +110 -0
  245. package/dist/src/marketplace/identifier.js +63 -0
  246. package/dist/src/marketplace/registry.js +36 -0
  247. package/dist/src/marketplace/sources/clawhub.js +53 -0
  248. package/dist/src/marketplace/sources/git.js +45 -0
  249. package/dist/src/marketplace/types.js +9 -0
  250. package/dist/src/mcp/adapters/codex-runtime.js +224 -0
  251. package/dist/src/mcp/cli.mjs +1197 -0
  252. package/dist/src/mcp/elicitation.mjs +149 -0
  253. package/dist/src/mcp/helpers.mjs +287 -0
  254. package/dist/src/mcp/index.mjs +11 -0
  255. package/dist/src/mcp/profiles.js +263 -0
  256. package/dist/src/mcp/profiles.mjs +360 -0
  257. package/dist/src/mcp/registry.js +376 -0
  258. package/dist/src/mcp/registry.mjs +387 -0
  259. package/dist/src/mcp/server.mjs +633 -0
  260. package/dist/src/mcp/test-simple.mjs +271 -0
  261. package/dist/src/mcp/tools/command-run.mjs +101 -0
  262. package/dist/src/mcp/tools/discovery.mjs +291 -0
  263. package/dist/src/mcp/tools/interaction.mjs +87 -0
  264. package/dist/src/mcp/tools/orchestration.mjs +320 -0
  265. package/dist/src/mcp/tools/subsystems.mjs +640 -0
  266. package/dist/src/memory/cli.js +166 -0
  267. package/dist/src/memory/project-registry.js +282 -0
  268. package/dist/src/metrics/artifact-metrics.js +184 -0
  269. package/dist/src/metrics/context-budget.js +174 -0
  270. package/dist/src/metrics/token-counter.js +133 -0
  271. package/dist/src/models/config-loader.js +228 -0
  272. package/dist/src/models/index.js +22 -0
  273. package/dist/src/models/model-capabilities.v1.json +120 -0
  274. package/dist/src/models/model-catalog.v1.json +96 -0
  275. package/dist/src/models/model-discovery.js +521 -0
  276. package/dist/src/models/provider-models.js +73 -0
  277. package/dist/src/models/provider-policy.js +273 -0
  278. package/dist/src/models/resolver.js +245 -0
  279. package/dist/src/models/router.js +70 -0
  280. package/dist/src/models/types.js +8 -0
  281. package/dist/src/models/wrapper-deployment.js +178 -0
  282. package/dist/src/models/wrapper-route.js +54 -0
  283. package/dist/src/ops/cli.js +268 -0
  284. package/dist/src/ops/registry.js +623 -0
  285. package/dist/src/packages/adapters/clawhub.js +113 -0
  286. package/dist/src/packages/adapters/git.js +153 -0
  287. package/dist/src/packages/adapters/gitea.js +93 -0
  288. package/dist/src/packages/adapters/github.js +69 -0
  289. package/dist/src/packages/adapters/local-cache.js +89 -0
  290. package/dist/src/packages/package-registry.js +143 -0
  291. package/dist/src/packages/registry.js +238 -0
  292. package/dist/src/packages/types.js +11 -0
  293. package/dist/src/plugin/cross-framework-ops.js +475 -0
  294. package/dist/src/plugin/framework-config-loader.js +235 -0
  295. package/dist/src/plugin/framework-detector.js +186 -0
  296. package/dist/src/plugin/framework-isolator.js +341 -0
  297. package/dist/src/plugin/framework-migration.js +371 -0
  298. package/dist/src/plugin/metadata-validator.js +906 -0
  299. package/dist/src/plugin/plugin-installer.js +436 -0
  300. package/dist/src/plugin/plugin-status.js +369 -0
  301. package/dist/src/plugin/plugin-uninstaller.js +473 -0
  302. package/dist/src/plugin/registry-validator.js +344 -0
  303. package/dist/src/plugin/skill-command-translator.js +415 -0
  304. package/dist/src/plugin/workspace-creator.js +189 -0
  305. package/dist/src/plugin/workspace-migrator.js +821 -0
  306. package/dist/src/policy/authorization.js +390 -0
  307. package/dist/src/policy/repo-access.js +215 -0
  308. package/dist/src/provenance/cli.js +16 -0
  309. package/dist/src/providers/capability-matrix.js +300 -0
  310. package/dist/src/providers/capability-matrix.yaml +514 -0
  311. package/dist/src/providers/provider-definitions.js +977 -0
  312. package/dist/src/providers/provider-definitions.mjs +159 -0
  313. package/dist/src/providers/provider-inventory.js +169 -0
  314. package/dist/src/quality/feedback-ab.js +174 -0
  315. package/dist/src/quality/feedback-collector.js +176 -0
  316. package/dist/src/quality/feedback-tracker.js +123 -0
  317. package/dist/src/quality/patterns/adr.json +24 -0
  318. package/dist/src/quality/patterns/sad.json +24 -0
  319. package/dist/src/quality/patterns/test-plan.json +24 -0
  320. package/dist/src/quality/patterns/use-case.json +24 -0
  321. package/dist/src/quality/scoring.js +157 -0
  322. package/dist/src/reflections/cli.js +15 -0
  323. package/dist/src/release/plan.js +139 -0
  324. package/dist/src/research/cache/manager.js +227 -0
  325. package/dist/src/research/clients/arxiv.js +156 -0
  326. package/dist/src/research/clients/base.js +197 -0
  327. package/dist/src/research/clients/crossref.js +112 -0
  328. package/dist/src/research/clients/semantic-scholar.js +126 -0
  329. package/dist/src/research/clients/unpaywall.js +87 -0
  330. package/dist/src/research/index.js +14 -0
  331. package/dist/src/research/query-cli.js +336 -0
  332. package/dist/src/research/services/acquisition.js +313 -0
  333. package/dist/src/research/services/archival.js +225 -0
  334. package/dist/src/research/services/citation.js +279 -0
  335. package/dist/src/research/services/discovery.js +243 -0
  336. package/dist/src/research/services/documentation.js +269 -0
  337. package/dist/src/research/services/index.js +14 -0
  338. package/dist/src/research/services/provenance.js +279 -0
  339. package/dist/src/research/services/quality.js +370 -0
  340. package/dist/src/research/services/types.js +7 -0
  341. package/dist/src/research/storage-cli.js +20 -0
  342. package/dist/src/research/types.js +47 -0
  343. package/dist/src/resources/index.d.ts +2 -0
  344. package/dist/src/resources/index.js +2 -0
  345. package/dist/src/resources/web-release.d.ts +89 -0
  346. package/dist/src/resources/web-release.js +882 -0
  347. package/dist/src/rlm/cache/cli.js +162 -0
  348. package/dist/src/rlm/cache/hash.js +35 -0
  349. package/dist/src/rlm/cache/store.js +170 -0
  350. package/dist/src/rlm/cache/types.js +8 -0
  351. package/dist/src/rlm/cli.js +650 -0
  352. package/dist/src/serve/a2a-terminal-observer.js +120 -0
  353. package/dist/src/serve/agent-router.js +205 -0
  354. package/dist/src/serve/dispatch-router.js +171 -0
  355. package/dist/src/serve/executor-registry.js +715 -0
  356. package/dist/src/serve/mission-conductor.js +177 -0
  357. package/dist/src/serve/orchestrator-adapter.js +113 -0
  358. package/dist/src/serve/orchestrator-override.js +94 -0
  359. package/dist/src/serve/orchestrator-pty.js +133 -0
  360. package/dist/src/serve/pty-bridge.js +799 -0
  361. package/dist/src/serve/sandbox-registry.js +832 -0
  362. package/dist/src/serve/screen-reader.js +228 -0
  363. package/dist/src/serve/stack-adapters.js +68 -0
  364. package/dist/src/serve/telemetry.js +143 -0
  365. package/dist/src/skills/adapters/clawhub.js +250 -0
  366. package/dist/src/skills/adapters/local.js +335 -0
  367. package/dist/src/skills/adapters/openclaw.js +316 -0
  368. package/dist/src/skills/cli.js +334 -0
  369. package/dist/src/skills/registry.js +117 -0
  370. package/dist/src/skills/run.js +259 -0
  371. package/dist/src/skills/runtime.js +94 -0
  372. package/dist/src/skills/types.js +10 -0
  373. package/dist/src/smiths/agentsmith/demo.js +116 -0
  374. package/dist/src/smiths/agentsmith/examples.js +300 -0
  375. package/dist/src/smiths/agentsmith/generator.js +503 -0
  376. package/dist/src/smiths/agentsmith/index.js +11 -0
  377. package/dist/src/smiths/agentsmith/types.js +8 -0
  378. package/dist/src/smiths/commandsmith/example.js +220 -0
  379. package/dist/src/smiths/commandsmith/generator.js +288 -0
  380. package/dist/src/smiths/commandsmith/index.js +41 -0
  381. package/dist/src/smiths/commandsmith/templates.js +296 -0
  382. package/dist/src/smiths/commandsmith/types.js +7 -0
  383. package/dist/src/smiths/context-pipeline/aiwg-md.js +104 -0
  384. package/dist/src/smiths/context-pipeline/allowlist.js +195 -0
  385. package/dist/src/smiths/context-pipeline/claude-hook.js +127 -0
  386. package/dist/src/smiths/context-pipeline/discovery.js +187 -0
  387. package/dist/src/smiths/context-pipeline/external-links-section.js +49 -0
  388. package/dist/src/smiths/context-pipeline/finalization.js +147 -0
  389. package/dist/src/smiths/context-pipeline/generator.js +477 -0
  390. package/dist/src/smiths/context-pipeline/index.js +30 -0
  391. package/dist/src/smiths/context-pipeline/legacy-inject.js +103 -0
  392. package/dist/src/smiths/context-pipeline/managed-hook.js +95 -0
  393. package/dist/src/smiths/context-pipeline/overflow.js +212 -0
  394. package/dist/src/smiths/context-pipeline/parallelism-section.js +94 -0
  395. package/dist/src/smiths/context-pipeline/provider-policy.js +64 -0
  396. package/dist/src/smiths/context-pipeline/sanitizer.js +93 -0
  397. package/dist/src/smiths/context-pipeline/types.js +23 -0
  398. package/dist/src/smiths/context-pipeline/workspace-context.js +988 -0
  399. package/dist/src/smiths/hook-bridge/codex-translator.js +129 -0
  400. package/dist/src/smiths/hook-bridge/copilot-translator.js +64 -0
  401. package/dist/src/smiths/hook-bridge/factory-translator.js +43 -0
  402. package/dist/src/smiths/hook-bridge/hermes-translator.js +88 -0
  403. package/dist/src/smiths/hook-bridge/index.js +79 -0
  404. package/dist/src/smiths/hook-bridge/loader.js +116 -0
  405. package/dist/src/smiths/hook-bridge/shim.js +89 -0
  406. package/dist/src/smiths/hook-bridge/types.js +31 -0
  407. package/dist/src/smiths/index.js +39 -0
  408. package/dist/src/smiths/mcpsmith/analyzers/cli-analyzer.js +390 -0
  409. package/dist/src/smiths/mcpsmith/example.js +119 -0
  410. package/dist/src/smiths/mcpsmith/generator.js +236 -0
  411. package/dist/src/smiths/mcpsmith/index.js +17 -0
  412. package/dist/src/smiths/mcpsmith/types.js +10 -0
  413. package/dist/src/smiths/platform-paths.js +101 -0
  414. package/dist/src/smiths/skillsmith/codex-sidecar.js +85 -0
  415. package/dist/src/smiths/skillsmith/collision-detector.js +249 -0
  416. package/dist/src/smiths/skillsmith/demo.js +83 -0
  417. package/dist/src/smiths/skillsmith/examples.js +161 -0
  418. package/dist/src/smiths/skillsmith/generator.js +316 -0
  419. package/dist/src/smiths/skillsmith/index.js +12 -0
  420. package/dist/src/smiths/skillsmith/namespace-adapter.js +180 -0
  421. package/dist/src/smiths/skillsmith/platform-resolver.js +157 -0
  422. package/dist/src/smiths/skillsmith/types.js +9 -0
  423. package/dist/src/smiths/toolsmith/index.js +10 -0
  424. package/dist/src/smiths/toolsmith/runtime-discovery.mjs +710 -0
  425. package/dist/src/smiths/toolsmith/types.js +8 -0
  426. package/dist/src/storage/backends/fortemi.js +227 -0
  427. package/dist/src/storage/backends/fs.js +134 -0
  428. package/dist/src/storage/backends/logseq.js +309 -0
  429. package/dist/src/storage/backends/obsidian.js +233 -0
  430. package/dist/src/storage/cli.js +468 -0
  431. package/dist/src/storage/config.js +272 -0
  432. package/dist/src/storage/index.js +108 -0
  433. package/dist/src/storage/subsystem-cli.js +201 -0
  434. package/dist/src/storage/types.js +33 -0
  435. package/dist/src/testing/corpus/corpus-builder.js +383 -0
  436. package/dist/src/testing/corpus/ground-truth-manager.js +460 -0
  437. package/dist/src/testing/corpus/index.js +10 -0
  438. package/dist/src/testing/fixtures/index.js +9 -0
  439. package/dist/src/testing/fixtures/test-data-factory.js +472 -0
  440. package/dist/src/testing/generators/index.js +11 -0
  441. package/dist/src/testing/generators/test-case-generator.js +393 -0
  442. package/dist/src/testing/generators/test-code-generator.js +384 -0
  443. package/dist/src/testing/generators/use-case-parser.js +325 -0
  444. package/dist/src/testing/index.js +11 -0
  445. package/dist/src/tracker/capability-protocol.js +118 -0
  446. package/dist/src/update/checker.mjs +396 -0
  447. package/dist/src/update/notifier.mjs +235 -0
  448. package/dist/src/writing/content-diversifier.js +804 -0
  449. package/dist/src/writing/example-generator.js +959 -0
  450. package/dist/src/writing/example-templates.js +99 -0
  451. package/dist/src/writing/pattern-library.js +486 -0
  452. package/dist/src/writing/patterns/banned-phrases.json +4413 -0
  453. package/dist/src/writing/patterns/formulaic-structures.json +1300 -0
  454. package/dist/src/writing/patterns/generic-adjectives.json +1510 -0
  455. package/dist/src/writing/patterns/hedging-language.json +2096 -0
  456. package/dist/src/writing/patterns/transition-words.json +1285 -0
  457. package/dist/src/writing/patterns/weak-verbs.json +1112 -0
  458. package/dist/src/writing/prompt-optimizer.js +660 -0
  459. package/dist/src/writing/prompt-templates.js +583 -0
  460. package/dist/src/writing/scoring-config-loader.js +168 -0
  461. package/dist/src/writing/validation-engine.js +595 -0
  462. package/dist/src/writing/validation-rules.js +380 -0
  463. package/dist/src/writing/voice-analyzer.js +439 -0
  464. package/dist/src/writing/voice-calibration.js +661 -0
  465. package/dist/src/writing/voice-profiles.json +588 -0
  466. package/package.json +64 -9
@@ -0,0 +1,4413 @@
1
+ [
2
+ {
3
+ "id": "banned-phrase-001",
4
+ "category": "banned-phrases",
5
+ "subcategory": "throat-clearing",
6
+ "pattern": "it is important to note that",
7
+ "severity": "critical",
8
+ "confidence": 0.95,
9
+ "examples": [
10
+ "It is important to note that the database must be optimized.",
11
+ "It is important to note that security is critical."
12
+ ],
13
+ "replacements": [
14
+ "The database must be optimized",
15
+ "Note: security is critical",
16
+ "Simply state the fact directly"
17
+ ],
18
+ "context": "One of the strongest AI detection signals - never use this phrase",
19
+ "frequency": "very-common",
20
+ "domains": [
21
+ "academic",
22
+ "technical",
23
+ "executive"
24
+ ]
25
+ },
26
+ {
27
+ "id": "banned-phrase-002",
28
+ "category": "banned-phrases",
29
+ "subcategory": "throat-clearing",
30
+ "pattern": "it should be emphasized that",
31
+ "severity": "critical",
32
+ "confidence": 0.93,
33
+ "examples": [
34
+ "It should be emphasized that performance matters.",
35
+ "It should be emphasized that testing is crucial."
36
+ ],
37
+ "replacements": [
38
+ "Performance matters",
39
+ "Testing is crucial",
40
+ "State directly without preamble"
41
+ ],
42
+ "context": "Signals AI-generated meta-commentary",
43
+ "frequency": "very-common",
44
+ "domains": [
45
+ "academic",
46
+ "technical",
47
+ "executive"
48
+ ]
49
+ },
50
+ {
51
+ "id": "banned-phrase-003",
52
+ "category": "banned-phrases",
53
+ "subcategory": "throat-clearing",
54
+ "pattern": "it is worth noting",
55
+ "severity": "critical",
56
+ "confidence": 0.92,
57
+ "examples": [
58
+ "It is worth noting that caching improves speed.",
59
+ "It is worth noting that users prefer simplicity."
60
+ ],
61
+ "replacements": [
62
+ "Caching improves speed",
63
+ "Users prefer simplicity",
64
+ "Note: [direct statement]"
65
+ ],
66
+ "context": "Extremely common AI pattern",
67
+ "frequency": "very-common",
68
+ "domains": [
69
+ "academic",
70
+ "technical",
71
+ "executive"
72
+ ]
73
+ },
74
+ {
75
+ "id": "banned-phrase-004",
76
+ "category": "banned-phrases",
77
+ "subcategory": "throat-clearing",
78
+ "pattern": "it should be mentioned",
79
+ "severity": "critical",
80
+ "confidence": 0.91,
81
+ "examples": [
82
+ "It should be mentioned that latency varies.",
83
+ "It should be mentioned that costs can escalate."
84
+ ],
85
+ "replacements": [
86
+ "Latency varies",
87
+ "Costs can escalate",
88
+ "Omit the preamble entirely"
89
+ ],
90
+ "context": "Typical AI throat-clearing",
91
+ "frequency": "common",
92
+ "domains": [
93
+ "academic",
94
+ "technical"
95
+ ]
96
+ },
97
+ {
98
+ "id": "banned-phrase-005",
99
+ "category": "banned-phrases",
100
+ "subcategory": "throat-clearing",
101
+ "pattern": "it cannot be denied",
102
+ "severity": "critical",
103
+ "confidence": 0.94,
104
+ "examples": [
105
+ "It cannot be denied that AI is advancing.",
106
+ "It cannot be denied that efficiency matters."
107
+ ],
108
+ "replacements": [
109
+ "AI is advancing",
110
+ "Efficiency matters",
111
+ "State the fact confidently"
112
+ ],
113
+ "context": "Overly formal AI pattern",
114
+ "frequency": "common",
115
+ "domains": [
116
+ "academic",
117
+ "executive"
118
+ ]
119
+ },
120
+ {
121
+ "id": "banned-phrase-006",
122
+ "category": "banned-phrases",
123
+ "subcategory": "throat-clearing",
124
+ "pattern": "it goes without saying",
125
+ "severity": "critical",
126
+ "confidence": 0.93,
127
+ "examples": [
128
+ "It goes without saying that security is important.",
129
+ "It goes without saying that testing matters."
130
+ ],
131
+ "replacements": [
132
+ "Security is important",
133
+ "Testing matters",
134
+ "State it directly or omit"
135
+ ],
136
+ "context": "If it goes without saying, don't say it",
137
+ "frequency": "common",
138
+ "domains": [
139
+ "academic",
140
+ "executive"
141
+ ]
142
+ },
143
+ {
144
+ "id": "banned-phrase-007",
145
+ "category": "banned-phrases",
146
+ "subcategory": "throat-clearing",
147
+ "pattern": "needless to say",
148
+ "severity": "critical",
149
+ "confidence": 0.92,
150
+ "examples": [
151
+ "Needless to say, performance is critical.",
152
+ "Needless to say, users expect speed."
153
+ ],
154
+ "replacements": [
155
+ "Performance is critical",
156
+ "Users expect speed",
157
+ "State it or don't"
158
+ ],
159
+ "context": "Self-contradicting preamble",
160
+ "frequency": "common",
161
+ "domains": [
162
+ "academic",
163
+ "executive"
164
+ ]
165
+ },
166
+ {
167
+ "id": "banned-phrase-008",
168
+ "category": "banned-phrases",
169
+ "subcategory": "throat-clearing",
170
+ "pattern": "it is well known that",
171
+ "severity": "critical",
172
+ "confidence": 0.91,
173
+ "examples": [
174
+ "It is well known that caching improves speed.",
175
+ "It is well known that testing reduces bugs."
176
+ ],
177
+ "replacements": [
178
+ "Caching improves speed",
179
+ "Testing reduces bugs",
180
+ "Cite evidence if needed"
181
+ ],
182
+ "context": "Vague authority appeal",
183
+ "frequency": "common",
184
+ "domains": [
185
+ "academic"
186
+ ]
187
+ },
188
+ {
189
+ "id": "banned-phrase-009",
190
+ "category": "banned-phrases",
191
+ "subcategory": "throat-clearing",
192
+ "pattern": "it is widely recognized",
193
+ "severity": "critical",
194
+ "confidence": 0.9,
195
+ "examples": [
196
+ "It is widely recognized that automation helps.",
197
+ "It is widely recognized that microservices scale."
198
+ ],
199
+ "replacements": [
200
+ "Automation helps",
201
+ "Microservices scale",
202
+ "Cite specific sources"
203
+ ],
204
+ "context": "Unattributed consensus claim",
205
+ "frequency": "common",
206
+ "domains": [
207
+ "academic",
208
+ "executive"
209
+ ]
210
+ },
211
+ {
212
+ "id": "banned-phrase-010",
213
+ "category": "banned-phrases",
214
+ "subcategory": "throat-clearing",
215
+ "pattern": "it bears mentioning",
216
+ "severity": "critical",
217
+ "confidence": 0.89,
218
+ "examples": [
219
+ "It bears mentioning that costs increased.",
220
+ "It bears mentioning that latency improved."
221
+ ],
222
+ "replacements": [
223
+ "Costs increased",
224
+ "Latency improved",
225
+ "State facts directly"
226
+ ],
227
+ "context": "Overly formal intro",
228
+ "frequency": "occasional",
229
+ "domains": [
230
+ "academic"
231
+ ]
232
+ },
233
+ {
234
+ "id": "banned-phrase-011",
235
+ "category": "banned-phrases",
236
+ "subcategory": "vague-intensifiers",
237
+ "pattern": "seamlessly",
238
+ "severity": "critical",
239
+ "confidence": 0.96,
240
+ "examples": [
241
+ "The system integrates seamlessly with APIs.",
242
+ "Data flows seamlessly between services."
243
+ ],
244
+ "replacements": [
245
+ "The system integrates with APIs via REST endpoints",
246
+ "Data flows between services using event streaming",
247
+ "Use specific technical details"
248
+ ],
249
+ "context": "Marketing buzzword that signals AI writing",
250
+ "frequency": "very-common",
251
+ "domains": [
252
+ "technical",
253
+ "executive"
254
+ ]
255
+ },
256
+ {
257
+ "id": "banned-phrase-012",
258
+ "category": "banned-phrases",
259
+ "subcategory": "vague-intensifiers",
260
+ "pattern": "cutting-edge",
261
+ "severity": "critical",
262
+ "confidence": 0.95,
263
+ "examples": [
264
+ "We use cutting-edge technology.",
265
+ "This is a cutting-edge solution."
266
+ ],
267
+ "replacements": [
268
+ "We use PostgreSQL 15 with pgvector extensions",
269
+ "Specify the actual technology and version",
270
+ "Name the specific innovation"
271
+ ],
272
+ "context": "Vague marketing language",
273
+ "frequency": "very-common",
274
+ "domains": [
275
+ "technical",
276
+ "executive"
277
+ ]
278
+ },
279
+ {
280
+ "id": "banned-phrase-013",
281
+ "category": "banned-phrases",
282
+ "subcategory": "vague-intensifiers",
283
+ "pattern": "state-of-the-art",
284
+ "severity": "critical",
285
+ "confidence": 0.94,
286
+ "examples": [
287
+ "State-of-the-art machine learning models.",
288
+ "A state-of-the-art approach to optimization."
289
+ ],
290
+ "replacements": [
291
+ "GPT-4 with fine-tuning on domain data",
292
+ "Gradient boosting using XGBoost 2.0",
293
+ "Name the specific model or technique"
294
+ ],
295
+ "context": "Academic/technical vagueness",
296
+ "frequency": "very-common",
297
+ "domains": [
298
+ "academic",
299
+ "technical"
300
+ ]
301
+ },
302
+ {
303
+ "id": "banned-phrase-014",
304
+ "category": "banned-phrases",
305
+ "subcategory": "vague-intensifiers",
306
+ "pattern": "revolutionary",
307
+ "severity": "critical",
308
+ "confidence": 0.93,
309
+ "examples": [
310
+ "A revolutionary new framework.",
311
+ "Revolutionary approach to caching."
312
+ ],
313
+ "replacements": [
314
+ "A framework that reduces build times by 60%",
315
+ "Caching that cuts latency from 200ms to 15ms",
316
+ "Use specific measurable improvements"
317
+ ],
318
+ "context": "Hyperbolic marketing language",
319
+ "frequency": "common",
320
+ "domains": [
321
+ "executive",
322
+ "technical"
323
+ ]
324
+ },
325
+ {
326
+ "id": "banned-phrase-015",
327
+ "category": "banned-phrases",
328
+ "subcategory": "vague-intensifiers",
329
+ "pattern": "game-changing",
330
+ "severity": "critical",
331
+ "confidence": 0.92,
332
+ "examples": [
333
+ "This is a game-changing feature.",
334
+ "A game-changing approach to deployment."
335
+ ],
336
+ "replacements": [
337
+ "This feature increased user retention by 40%",
338
+ "Deployment time dropped from 2 hours to 8 minutes",
339
+ "Provide concrete metrics"
340
+ ],
341
+ "context": "Business buzzword",
342
+ "frequency": "common",
343
+ "domains": [
344
+ "executive"
345
+ ]
346
+ },
347
+ {
348
+ "id": "banned-phrase-016",
349
+ "category": "banned-phrases",
350
+ "subcategory": "vague-intensifiers",
351
+ "pattern": "paradigm shift",
352
+ "severity": "critical",
353
+ "confidence": 0.94,
354
+ "examples": [
355
+ "A paradigm shift in software development.",
356
+ "This represents a paradigm shift."
357
+ ],
358
+ "replacements": [
359
+ "Moving from waterfall to continuous deployment",
360
+ "Switching from monolith to microservices",
361
+ "Describe the actual change"
362
+ ],
363
+ "context": "Management consulting jargon",
364
+ "frequency": "occasional",
365
+ "domains": [
366
+ "executive"
367
+ ]
368
+ },
369
+ {
370
+ "id": "banned-phrase-017",
371
+ "category": "banned-phrases",
372
+ "subcategory": "vague-intensifiers",
373
+ "pattern": "best-in-class",
374
+ "severity": "critical",
375
+ "confidence": 0.93,
376
+ "examples": [
377
+ "Best-in-class performance.",
378
+ "A best-in-class solution."
379
+ ],
380
+ "replacements": [
381
+ "p95 latency of 12ms vs industry average of 45ms",
382
+ "Faster than 95% of competitors in benchmarks",
383
+ "Provide specific comparative metrics"
384
+ ],
385
+ "context": "Unsubstantiated claim",
386
+ "frequency": "common",
387
+ "domains": [
388
+ "executive",
389
+ "technical"
390
+ ]
391
+ },
392
+ {
393
+ "id": "banned-phrase-018",
394
+ "category": "banned-phrases",
395
+ "subcategory": "vague-intensifiers",
396
+ "pattern": "industry-leading",
397
+ "severity": "critical",
398
+ "confidence": 0.92,
399
+ "examples": [
400
+ "Industry-leading security features.",
401
+ "Industry-leading performance."
402
+ ],
403
+ "replacements": [
404
+ "SOC2 Type II certified with zero breaches",
405
+ "Top 3 in Gartner MQ for 2 consecutive years",
406
+ "Cite specific rankings or certifications"
407
+ ],
408
+ "context": "Marketing claim without evidence",
409
+ "frequency": "common",
410
+ "domains": [
411
+ "executive"
412
+ ]
413
+ },
414
+ {
415
+ "id": "banned-phrase-019",
416
+ "category": "banned-phrases",
417
+ "subcategory": "vague-intensifiers",
418
+ "pattern": "comprehensive solution",
419
+ "severity": "critical",
420
+ "confidence": 0.91,
421
+ "examples": [
422
+ "A comprehensive solution for data management.",
423
+ "Our comprehensive solution addresses all needs."
424
+ ],
425
+ "replacements": [
426
+ "Handles ingestion, storage, and querying of 10TB+",
427
+ "Covers authentication, authorization, and audit logging",
428
+ "List specific capabilities"
429
+ ],
430
+ "context": "Vague feature claim",
431
+ "frequency": "very-common",
432
+ "domains": [
433
+ "technical",
434
+ "executive"
435
+ ]
436
+ },
437
+ {
438
+ "id": "banned-phrase-020",
439
+ "category": "banned-phrases",
440
+ "subcategory": "vague-intensifiers",
441
+ "pattern": "robust and scalable",
442
+ "severity": "critical",
443
+ "confidence": 0.95,
444
+ "examples": [
445
+ "A robust and scalable architecture.",
446
+ "Built to be robust and scalable."
447
+ ],
448
+ "replacements": [
449
+ "Handles 10k requests/sec with 99.9% uptime",
450
+ "Scales from 100 to 100k users without code changes",
451
+ "Provide capacity and reliability numbers"
452
+ ],
453
+ "context": "Extremely common AI phrase pair",
454
+ "frequency": "very-common",
455
+ "domains": [
456
+ "technical"
457
+ ]
458
+ },
459
+ {
460
+ "id": "banned-phrase-021",
461
+ "category": "banned-phrases",
462
+ "subcategory": "vague-intensifiers",
463
+ "pattern": "innovative approach",
464
+ "severity": "critical",
465
+ "confidence": 0.9,
466
+ "examples": [
467
+ "An innovative approach to caching.",
468
+ "We take an innovative approach."
469
+ ],
470
+ "replacements": [
471
+ "We cache at the edge using Cloudflare Workers",
472
+ "Multi-layer caching with Redis and browser localStorage",
473
+ "Describe the actual innovation"
474
+ ],
475
+ "context": "Generic claim of novelty",
476
+ "frequency": "very-common",
477
+ "domains": [
478
+ "technical",
479
+ "executive"
480
+ ]
481
+ },
482
+ {
483
+ "id": "banned-phrase-022",
484
+ "category": "banned-phrases",
485
+ "subcategory": "vague-intensifiers",
486
+ "pattern": "next-generation",
487
+ "severity": "critical",
488
+ "confidence": 0.89,
489
+ "examples": [
490
+ "Next-generation AI capabilities.",
491
+ "A next-generation platform."
492
+ ],
493
+ "replacements": [
494
+ "GPT-4 with 128k context window",
495
+ "Built on Kubernetes 1.28 with eBPF networking",
496
+ "Specify versions and technologies"
497
+ ],
498
+ "context": "Temporal vagueness",
499
+ "frequency": "common",
500
+ "domains": [
501
+ "technical",
502
+ "executive"
503
+ ]
504
+ },
505
+ {
506
+ "id": "banned-phrase-023",
507
+ "category": "banned-phrases",
508
+ "subcategory": "vague-intensifiers",
509
+ "pattern": "transformative",
510
+ "severity": "critical",
511
+ "confidence": 0.91,
512
+ "examples": [
513
+ "A transformative technology.",
514
+ "This has transformative potential."
515
+ ],
516
+ "replacements": [
517
+ "Reduced manual work from 8 hours to 15 minutes",
518
+ "Cut costs by 70% while improving quality",
519
+ "Quantify the transformation"
520
+ ],
521
+ "context": "Hyperbolic business language",
522
+ "frequency": "common",
523
+ "domains": [
524
+ "executive"
525
+ ]
526
+ },
527
+ {
528
+ "id": "banned-phrase-024",
529
+ "category": "banned-phrases",
530
+ "subcategory": "vague-intensifiers",
531
+ "pattern": "groundbreaking",
532
+ "severity": "critical",
533
+ "confidence": 0.92,
534
+ "examples": [
535
+ "Groundbreaking research in AI.",
536
+ "A groundbreaking discovery."
537
+ ],
538
+ "replacements": [
539
+ "First to achieve 95% accuracy on benchmark X",
540
+ "Novel algorithm published in Nature",
541
+ "Cite specific achievements or publications"
542
+ ],
543
+ "context": "Academic/research hyperbole",
544
+ "frequency": "occasional",
545
+ "domains": [
546
+ "academic"
547
+ ]
548
+ },
549
+ {
550
+ "id": "banned-phrase-025",
551
+ "category": "banned-phrases",
552
+ "subcategory": "vague-intensifiers",
553
+ "pattern": "world-class",
554
+ "severity": "critical",
555
+ "confidence": 0.91,
556
+ "examples": [
557
+ "World-class engineering team.",
558
+ "World-class infrastructure."
559
+ ],
560
+ "replacements": [
561
+ "Team with 50+ years combined experience at FAANG",
562
+ "99.99% uptime across 5 continents",
563
+ "Provide specific credentials or metrics"
564
+ ],
565
+ "context": "Unverifiable claim",
566
+ "frequency": "common",
567
+ "domains": [
568
+ "executive"
569
+ ]
570
+ },
571
+ {
572
+ "id": "banned-phrase-026",
573
+ "category": "banned-phrases",
574
+ "subcategory": "vague-intensifiers",
575
+ "pattern": "enterprise-grade",
576
+ "severity": "high",
577
+ "confidence": 0.88,
578
+ "examples": [
579
+ "Enterprise-grade security.",
580
+ "Enterprise-grade scalability."
581
+ ],
582
+ "replacements": [
583
+ "SOC2 Type II and HIPAA compliant",
584
+ "Handles 1M concurrent users",
585
+ "Specify certifications or capacities"
586
+ ],
587
+ "context": "Vague quality claim",
588
+ "frequency": "common",
589
+ "domains": [
590
+ "technical",
591
+ "executive"
592
+ ]
593
+ },
594
+ {
595
+ "id": "banned-phrase-027",
596
+ "category": "banned-phrases",
597
+ "subcategory": "vague-intensifiers",
598
+ "pattern": "mission-critical",
599
+ "severity": "high",
600
+ "confidence": 0.87,
601
+ "examples": [
602
+ "Mission-critical applications.",
603
+ "Mission-critical infrastructure."
604
+ ],
605
+ "replacements": [
606
+ "Applications requiring 99.99% uptime",
607
+ "Systems that process $10M daily transactions",
608
+ "Define criticality with metrics"
609
+ ],
610
+ "context": "Vague importance claim",
611
+ "frequency": "common",
612
+ "domains": [
613
+ "technical",
614
+ "executive"
615
+ ]
616
+ },
617
+ {
618
+ "id": "banned-phrase-028",
619
+ "category": "banned-phrases",
620
+ "subcategory": "vague-intensifiers",
621
+ "pattern": "battle-tested",
622
+ "severity": "high",
623
+ "confidence": 0.86,
624
+ "examples": [
625
+ "Battle-tested infrastructure.",
626
+ "A battle-tested approach."
627
+ ],
628
+ "replacements": [
629
+ "Processed 10B requests without data loss",
630
+ "Deployed at 500+ companies since 2019",
631
+ "Cite specific track record"
632
+ ],
633
+ "context": "Unverified reliability claim",
634
+ "frequency": "occasional",
635
+ "domains": [
636
+ "technical"
637
+ ]
638
+ },
639
+ {
640
+ "id": "banned-phrase-029",
641
+ "category": "banned-phrases",
642
+ "subcategory": "vague-intensifiers",
643
+ "pattern": "bleeding-edge",
644
+ "severity": "critical",
645
+ "confidence": 0.9,
646
+ "examples": [
647
+ "Bleeding-edge technology.",
648
+ "A bleeding-edge solution."
649
+ ],
650
+ "replacements": [
651
+ "Released 2 weeks ago",
652
+ "Pre-release beta software",
653
+ "Specify actual version or date"
654
+ ],
655
+ "context": "Risky newness claim",
656
+ "frequency": "occasional",
657
+ "domains": [
658
+ "technical"
659
+ ]
660
+ },
661
+ {
662
+ "id": "banned-phrase-030",
663
+ "category": "banned-phrases",
664
+ "subcategory": "vague-intensifiers",
665
+ "pattern": "dramatically improves",
666
+ "severity": "critical",
667
+ "confidence": 0.94,
668
+ "examples": [
669
+ "Dramatically improves performance.",
670
+ "Dramatically improves user experience."
671
+ ],
672
+ "replacements": [
673
+ "Improves performance by 300%",
674
+ "Reduces page load from 4s to 0.8s",
675
+ "Quantify the improvement"
676
+ ],
677
+ "context": "Unquantified improvement",
678
+ "frequency": "very-common",
679
+ "domains": [
680
+ "technical",
681
+ "executive"
682
+ ]
683
+ },
684
+ {
685
+ "id": "banned-phrase-031",
686
+ "category": "banned-phrases",
687
+ "subcategory": "vague-intensifiers",
688
+ "pattern": "significantly enhances",
689
+ "severity": "critical",
690
+ "confidence": 0.93,
691
+ "examples": [
692
+ "Significantly enhances security.",
693
+ "Significantly enhances performance."
694
+ ],
695
+ "replacements": [
696
+ "Blocks 99.7% of SQL injection attempts",
697
+ "Reduces query time from 500ms to 45ms",
698
+ "Provide specific metrics"
699
+ ],
700
+ "context": "Vague enhancement claim",
701
+ "frequency": "very-common",
702
+ "domains": [
703
+ "technical",
704
+ "executive"
705
+ ]
706
+ },
707
+ {
708
+ "id": "banned-phrase-032",
709
+ "category": "banned-phrases",
710
+ "subcategory": "vague-intensifiers",
711
+ "pattern": "substantially reduces",
712
+ "severity": "high",
713
+ "confidence": 0.91,
714
+ "examples": [
715
+ "Substantially reduces costs.",
716
+ "Substantially reduces latency."
717
+ ],
718
+ "replacements": [
719
+ "Reduces costs by 60%",
720
+ "Cuts latency from 200ms to 30ms",
721
+ "Specify the reduction amount"
722
+ ],
723
+ "context": "Vague reduction claim",
724
+ "frequency": "common",
725
+ "domains": [
726
+ "technical",
727
+ "executive"
728
+ ]
729
+ },
730
+ {
731
+ "id": "banned-phrase-033",
732
+ "category": "banned-phrases",
733
+ "subcategory": "vague-intensifiers",
734
+ "pattern": "greatly increases",
735
+ "severity": "high",
736
+ "confidence": 0.9,
737
+ "examples": [
738
+ "Greatly increases throughput.",
739
+ "Greatly increases efficiency."
740
+ ],
741
+ "replacements": [
742
+ "Increases throughput from 1k to 10k RPS",
743
+ "Doubles developer productivity",
744
+ "Quantify the increase"
745
+ ],
746
+ "context": "Vague increase claim",
747
+ "frequency": "common",
748
+ "domains": [
749
+ "technical",
750
+ "executive"
751
+ ]
752
+ },
753
+ {
754
+ "id": "banned-phrase-034",
755
+ "category": "banned-phrases",
756
+ "subcategory": "vague-intensifiers",
757
+ "pattern": "vastly superior",
758
+ "severity": "critical",
759
+ "confidence": 0.92,
760
+ "examples": [
761
+ "Vastly superior performance.",
762
+ "A vastly superior approach."
763
+ ],
764
+ "replacements": [
765
+ "5x faster than the previous implementation",
766
+ "90% fewer bugs than alternative A",
767
+ "Specify the superiority metrics"
768
+ ],
769
+ "context": "Unsubstantiated comparison",
770
+ "frequency": "common",
771
+ "domains": [
772
+ "technical",
773
+ "executive"
774
+ ]
775
+ },
776
+ {
777
+ "id": "banned-phrase-035",
778
+ "category": "banned-phrases",
779
+ "subcategory": "vague-intensifiers",
780
+ "pattern": "highly effective",
781
+ "severity": "high",
782
+ "confidence": 0.87,
783
+ "examples": [
784
+ "This is a highly effective strategy.",
785
+ "Highly effective at reducing latency."
786
+ ],
787
+ "replacements": [
788
+ "Reduced latency by 65%",
789
+ "Improved conversion rate from 2% to 4.5%",
790
+ "Quantify effectiveness"
791
+ ],
792
+ "context": "Vague effectiveness claim",
793
+ "frequency": "very-common",
794
+ "domains": [
795
+ "executive",
796
+ "technical"
797
+ ]
798
+ },
799
+ {
800
+ "id": "banned-phrase-036",
801
+ "category": "banned-phrases",
802
+ "subcategory": "vague-intensifiers",
803
+ "pattern": "extremely valuable",
804
+ "severity": "high",
805
+ "confidence": 0.86,
806
+ "examples": [
807
+ "This feature is extremely valuable.",
808
+ "Extremely valuable insights."
809
+ ],
810
+ "replacements": [
811
+ "This feature saved $200k in support costs",
812
+ "Insights that increased conversion by 30%",
813
+ "Quantify the value"
814
+ ],
815
+ "context": "Subjective value claim",
816
+ "frequency": "common",
817
+ "domains": [
818
+ "executive"
819
+ ]
820
+ },
821
+ {
822
+ "id": "banned-phrase-037",
823
+ "category": "banned-phrases",
824
+ "subcategory": "vague-intensifiers",
825
+ "pattern": "remarkably efficient",
826
+ "severity": "high",
827
+ "confidence": 0.85,
828
+ "examples": [
829
+ "A remarkably efficient algorithm.",
830
+ "Remarkably efficient use of resources."
831
+ ],
832
+ "replacements": [
833
+ "O(log n) complexity vs O(n) baseline",
834
+ "Uses 80% less memory than naive approach",
835
+ "Specify efficiency metrics"
836
+ ],
837
+ "context": "Vague efficiency claim",
838
+ "frequency": "occasional",
839
+ "domains": [
840
+ "technical"
841
+ ]
842
+ },
843
+ {
844
+ "id": "banned-phrase-038",
845
+ "category": "banned-phrases",
846
+ "subcategory": "vague-intensifiers",
847
+ "pattern": "extremely important",
848
+ "severity": "high",
849
+ "confidence": 0.86,
850
+ "examples": [
851
+ "Security is extremely important.",
852
+ "Testing is extremely important."
853
+ ],
854
+ "replacements": [
855
+ "Security prevents breaches that average $4M cost",
856
+ "Testing caught 156 bugs before production",
857
+ "Explain why it's important"
858
+ ],
859
+ "context": "Intensity without substance",
860
+ "frequency": "very-common",
861
+ "domains": [
862
+ "executive",
863
+ "technical"
864
+ ]
865
+ },
866
+ {
867
+ "id": "banned-phrase-039",
868
+ "category": "banned-phrases",
869
+ "subcategory": "research-claims",
870
+ "pattern": "studies suggest",
871
+ "severity": "critical",
872
+ "confidence": 0.94,
873
+ "examples": [
874
+ "Studies suggest that users prefer simplicity.",
875
+ "Studies suggest this approach is effective."
876
+ ],
877
+ "replacements": [
878
+ "Nielsen et al. (2020) found 78% prefer minimal UI",
879
+ "Our A/B test showed 23% higher conversion",
880
+ "Cite specific studies or your own data"
881
+ ],
882
+ "context": "Vague research reference",
883
+ "frequency": "very-common",
884
+ "domains": [
885
+ "academic",
886
+ "technical"
887
+ ]
888
+ },
889
+ {
890
+ "id": "banned-phrase-040",
891
+ "category": "banned-phrases",
892
+ "subcategory": "research-claims",
893
+ "pattern": "studies show",
894
+ "severity": "critical",
895
+ "confidence": 0.93,
896
+ "examples": [
897
+ "Studies show that caching improves speed.",
898
+ "Studies show users value privacy."
899
+ ],
900
+ "replacements": [
901
+ "Chen (2021) measured 60% latency reduction",
902
+ "Pew Research (2023): 81% prioritize privacy",
903
+ "Name the study or conduct your own"
904
+ ],
905
+ "context": "Generic research citation",
906
+ "frequency": "very-common",
907
+ "domains": [
908
+ "academic",
909
+ "technical"
910
+ ]
911
+ },
912
+ {
913
+ "id": "banned-phrase-041",
914
+ "category": "banned-phrases",
915
+ "subcategory": "research-claims",
916
+ "pattern": "research has shown",
917
+ "severity": "critical",
918
+ "confidence": 0.92,
919
+ "examples": [
920
+ "Research has shown that testing matters.",
921
+ "Research has shown the importance of UX."
922
+ ],
923
+ "replacements": [
924
+ "Fowler (2018) correlated test coverage with fewer bugs",
925
+ "Our usability study found 2x task completion rate",
926
+ "Reference specific research"
927
+ ],
928
+ "context": "Unattributed research claim",
929
+ "frequency": "very-common",
930
+ "domains": [
931
+ "academic"
932
+ ]
933
+ },
934
+ {
935
+ "id": "banned-phrase-042",
936
+ "category": "banned-phrases",
937
+ "subcategory": "research-claims",
938
+ "pattern": "research indicates",
939
+ "severity": "critical",
940
+ "confidence": 0.91,
941
+ "examples": [
942
+ "Research indicates that modularity helps.",
943
+ "Research indicates users prefer speed."
944
+ ],
945
+ "replacements": [
946
+ "Martin (2008) argues for single responsibility",
947
+ "Google RAIL model targets <100ms interactions",
948
+ "Cite the actual research"
949
+ ],
950
+ "context": "Vague authority appeal",
951
+ "frequency": "common",
952
+ "domains": [
953
+ "academic",
954
+ "technical"
955
+ ]
956
+ },
957
+ {
958
+ "id": "banned-phrase-043",
959
+ "category": "banned-phrases",
960
+ "subcategory": "research-claims",
961
+ "pattern": "experts agree",
962
+ "severity": "critical",
963
+ "confidence": 0.93,
964
+ "examples": [
965
+ "Experts agree that microservices scale well.",
966
+ "Experts agree that testing is essential."
967
+ ],
968
+ "replacements": [
969
+ "Fowler recommends microservices for teams >50 devs",
970
+ "ISTQB guidelines require 80%+ coverage",
971
+ "Name the experts or cite sources"
972
+ ],
973
+ "context": "Vague consensus claim",
974
+ "frequency": "common",
975
+ "domains": [
976
+ "technical",
977
+ "executive"
978
+ ]
979
+ },
980
+ {
981
+ "id": "banned-phrase-044",
982
+ "category": "banned-phrases",
983
+ "subcategory": "research-claims",
984
+ "pattern": "according to experts",
985
+ "severity": "critical",
986
+ "confidence": 0.92,
987
+ "examples": [
988
+ "According to experts, caching is essential.",
989
+ "According to experts, security comes first."
990
+ ],
991
+ "replacements": [
992
+ "According to OWASP Top 10 (2023)",
993
+ "As recommended by AWS Well-Architected",
994
+ "Name specific experts or standards"
995
+ ],
996
+ "context": "Unattributed expert claim",
997
+ "frequency": "common",
998
+ "domains": [
999
+ "technical",
1000
+ "executive"
1001
+ ]
1002
+ },
1003
+ {
1004
+ "id": "banned-phrase-045",
1005
+ "category": "banned-phrases",
1006
+ "subcategory": "temporal-vagueness",
1007
+ "pattern": "in today's world",
1008
+ "severity": "critical",
1009
+ "confidence": 0.95,
1010
+ "examples": [
1011
+ "In today's world, cloud computing is essential.",
1012
+ "In today's world, security matters."
1013
+ ],
1014
+ "replacements": [
1015
+ "Cloud spending reached $500B in 2023",
1016
+ "Data breaches cost $4.35M on average (IBM 2023)",
1017
+ "Use current year and specific facts"
1018
+ ],
1019
+ "context": "Meaningless temporal qualifier",
1020
+ "frequency": "very-common",
1021
+ "domains": [
1022
+ "executive"
1023
+ ]
1024
+ },
1025
+ {
1026
+ "id": "banned-phrase-046",
1027
+ "category": "banned-phrases",
1028
+ "subcategory": "temporal-vagueness",
1029
+ "pattern": "in this day and age",
1030
+ "severity": "critical",
1031
+ "confidence": 0.94,
1032
+ "examples": [
1033
+ "In this day and age, APIs are ubiquitous.",
1034
+ "In this day and age, mobile-first is crucial."
1035
+ ],
1036
+ "replacements": [
1037
+ "70% of web traffic now comes from mobile (2023)",
1038
+ "REST APIs power 80% of web services",
1039
+ "State current facts directly"
1040
+ ],
1041
+ "context": "Dated expression",
1042
+ "frequency": "common",
1043
+ "domains": [
1044
+ "executive"
1045
+ ]
1046
+ },
1047
+ {
1048
+ "id": "banned-phrase-047",
1049
+ "category": "banned-phrases",
1050
+ "subcategory": "temporal-vagueness",
1051
+ "pattern": "in the modern era",
1052
+ "severity": "critical",
1053
+ "confidence": 0.92,
1054
+ "examples": [
1055
+ "In the modern era of cloud computing.",
1056
+ "In the modern era of AI."
1057
+ ],
1058
+ "replacements": [
1059
+ "Since AWS launched in 2006",
1060
+ "With GPT-4 (March 2023)",
1061
+ "Be specific about time"
1062
+ ],
1063
+ "context": "Vague temporal reference",
1064
+ "frequency": "common",
1065
+ "domains": [
1066
+ "executive",
1067
+ "academic"
1068
+ ]
1069
+ },
1070
+ {
1071
+ "id": "banned-phrase-048",
1072
+ "category": "banned-phrases",
1073
+ "subcategory": "temporal-vagueness",
1074
+ "pattern": "in today's fast-paced",
1075
+ "severity": "critical",
1076
+ "confidence": 0.93,
1077
+ "examples": [
1078
+ "In today's fast-paced environment.",
1079
+ "In today's fast-paced market."
1080
+ ],
1081
+ "replacements": [
1082
+ "With 2-week sprint cycles",
1083
+ "Given quarterly product releases",
1084
+ "Define the pace specifically"
1085
+ ],
1086
+ "context": "Cliche temporal phrase",
1087
+ "frequency": "common",
1088
+ "domains": [
1089
+ "executive"
1090
+ ]
1091
+ },
1092
+ {
1093
+ "id": "banned-phrase-049",
1094
+ "category": "banned-phrases",
1095
+ "subcategory": "temporal-vagueness",
1096
+ "pattern": "in recent years",
1097
+ "severity": "high",
1098
+ "confidence": 0.88,
1099
+ "examples": [
1100
+ "In recent years, cloud adoption has grown.",
1101
+ "In recent years, DevOps has matured."
1102
+ ],
1103
+ "replacements": [
1104
+ "Since 2020, cloud adoption grew 35%",
1105
+ "From 2019 to 2023, DevOps adoption doubled",
1106
+ "Specify the time range"
1107
+ ],
1108
+ "context": "Vague time reference",
1109
+ "frequency": "very-common",
1110
+ "domains": [
1111
+ "academic",
1112
+ "executive"
1113
+ ]
1114
+ },
1115
+ {
1116
+ "id": "banned-phrase-050",
1117
+ "category": "banned-phrases",
1118
+ "subcategory": "conclusion-markers",
1119
+ "pattern": "at the end of the day",
1120
+ "severity": "critical",
1121
+ "confidence": 0.93,
1122
+ "examples": [
1123
+ "At the end of the day, performance matters.",
1124
+ "At the end of the day, users decide success."
1125
+ ],
1126
+ "replacements": [
1127
+ "Performance matters most",
1128
+ "Users determine success",
1129
+ "State the point directly"
1130
+ ],
1131
+ "context": "Casual cliche",
1132
+ "frequency": "common",
1133
+ "domains": [
1134
+ "casual",
1135
+ "executive"
1136
+ ]
1137
+ },
1138
+ {
1139
+ "id": "banned-phrase-051",
1140
+ "category": "banned-phrases",
1141
+ "subcategory": "conclusion-markers",
1142
+ "pattern": "all things considered",
1143
+ "severity": "high",
1144
+ "confidence": 0.89,
1145
+ "examples": [
1146
+ "All things considered, the migration succeeded.",
1147
+ "All things considered, costs are reasonable."
1148
+ ],
1149
+ "replacements": [
1150
+ "The migration succeeded despite 2 rollbacks",
1151
+ "Costs are within 10% of budget",
1152
+ "State specific considerations"
1153
+ ],
1154
+ "context": "Vague summary phrase",
1155
+ "frequency": "common",
1156
+ "domains": [
1157
+ "executive"
1158
+ ]
1159
+ },
1160
+ {
1161
+ "id": "banned-phrase-052",
1162
+ "category": "banned-phrases",
1163
+ "subcategory": "conclusion-markers",
1164
+ "pattern": "when all is said and done",
1165
+ "severity": "high",
1166
+ "confidence": 0.88,
1167
+ "examples": [
1168
+ "When all is said and done, quality wins.",
1169
+ "When all is said and done, users matter."
1170
+ ],
1171
+ "replacements": [
1172
+ "Quality wins",
1173
+ "Users matter",
1174
+ "State conclusions directly"
1175
+ ],
1176
+ "context": "Wordy conclusion phrase",
1177
+ "frequency": "occasional",
1178
+ "domains": [
1179
+ "executive"
1180
+ ]
1181
+ },
1182
+ {
1183
+ "id": "banned-phrase-053",
1184
+ "category": "banned-phrases",
1185
+ "subcategory": "throat-clearing",
1186
+ "pattern": "one might argue",
1187
+ "severity": "critical",
1188
+ "confidence": 0.9,
1189
+ "examples": [
1190
+ "One might argue that microservices add complexity.",
1191
+ "One might argue that testing is expensive."
1192
+ ],
1193
+ "replacements": [
1194
+ "Microservices add operational complexity",
1195
+ "Testing requires upfront investment",
1196
+ "Make the argument directly"
1197
+ ],
1198
+ "context": "Hedging voice",
1199
+ "frequency": "common",
1200
+ "domains": [
1201
+ "academic"
1202
+ ]
1203
+ },
1204
+ {
1205
+ "id": "banned-phrase-054",
1206
+ "category": "banned-phrases",
1207
+ "subcategory": "throat-clearing",
1208
+ "pattern": "it could be argued",
1209
+ "severity": "critical",
1210
+ "confidence": 0.89,
1211
+ "examples": [
1212
+ "It could be argued that caching is essential.",
1213
+ "It could be argued that security comes first."
1214
+ ],
1215
+ "replacements": [
1216
+ "Caching is essential for sub-100ms latency",
1217
+ "Security must be built in from day one",
1218
+ "Assert your position"
1219
+ ],
1220
+ "context": "Passive argumentation",
1221
+ "frequency": "common",
1222
+ "domains": [
1223
+ "academic"
1224
+ ]
1225
+ },
1226
+ {
1227
+ "id": "banned-phrase-055",
1228
+ "category": "banned-phrases",
1229
+ "subcategory": "throat-clearing",
1230
+ "pattern": "some would say",
1231
+ "severity": "high",
1232
+ "confidence": 0.87,
1233
+ "examples": [
1234
+ "Some would say that simplicity is key.",
1235
+ "Some would say that testing slows development."
1236
+ ],
1237
+ "replacements": [
1238
+ "Simplicity is key",
1239
+ "Testing adds upfront time but reduces bugs",
1240
+ "Make the argument or cite sources"
1241
+ ],
1242
+ "context": "Vague attribution",
1243
+ "frequency": "common",
1244
+ "domains": [
1245
+ "academic",
1246
+ "casual"
1247
+ ]
1248
+ },
1249
+ {
1250
+ "id": "banned-phrase-056",
1251
+ "category": "banned-phrases",
1252
+ "subcategory": "throat-clearing",
1253
+ "pattern": "many believe",
1254
+ "severity": "high",
1255
+ "confidence": 0.86,
1256
+ "examples": [
1257
+ "Many believe that automation is the future.",
1258
+ "Many believe that AI will transform work."
1259
+ ],
1260
+ "replacements": [
1261
+ "Automation adoption grew 40% YoY (McKinsey 2023)",
1262
+ "60% of executives plan AI investments (Deloitte)",
1263
+ "Cite specific polls or studies"
1264
+ ],
1265
+ "context": "Unsubstantiated consensus",
1266
+ "frequency": "common",
1267
+ "domains": [
1268
+ "executive"
1269
+ ]
1270
+ },
1271
+ {
1272
+ "id": "banned-phrase-057",
1273
+ "category": "banned-phrases",
1274
+ "subcategory": "throat-clearing",
1275
+ "pattern": "it has been observed",
1276
+ "severity": "critical",
1277
+ "confidence": 0.91,
1278
+ "examples": [
1279
+ "It has been observed that caching helps.",
1280
+ "It has been observed that users prefer speed."
1281
+ ],
1282
+ "replacements": [
1283
+ "Caching reduced our latency by 60%",
1284
+ "Our users clicked 40% more with faster pages",
1285
+ "Who observed it? Be specific"
1286
+ ],
1287
+ "context": "Passive observation without attribution",
1288
+ "frequency": "common",
1289
+ "domains": [
1290
+ "academic"
1291
+ ]
1292
+ },
1293
+ {
1294
+ "id": "banned-phrase-058",
1295
+ "category": "banned-phrases",
1296
+ "subcategory": "throat-clearing",
1297
+ "pattern": "it is evident that",
1298
+ "severity": "critical",
1299
+ "confidence": 0.9,
1300
+ "examples": [
1301
+ "It is evident that the system scales well.",
1302
+ "It is evident that security is crucial."
1303
+ ],
1304
+ "replacements": [
1305
+ "The system scales from 1k to 100k users",
1306
+ "Security breaches cost $4.35M on average",
1307
+ "Show the evidence"
1308
+ ],
1309
+ "context": "Claimed obviousness",
1310
+ "frequency": "common",
1311
+ "domains": [
1312
+ "academic"
1313
+ ]
1314
+ },
1315
+ {
1316
+ "id": "banned-phrase-059",
1317
+ "category": "banned-phrases",
1318
+ "subcategory": "throat-clearing",
1319
+ "pattern": "it stands to reason",
1320
+ "severity": "high",
1321
+ "confidence": 0.88,
1322
+ "examples": [
1323
+ "It stands to reason that faster is better.",
1324
+ "It stands to reason that testing prevents bugs."
1325
+ ],
1326
+ "replacements": [
1327
+ "Faster response times increase conversion",
1328
+ "Testing prevents bugs",
1329
+ "State the reasoning directly"
1330
+ ],
1331
+ "context": "Presumptive logic",
1332
+ "frequency": "occasional",
1333
+ "domains": [
1334
+ "academic"
1335
+ ]
1336
+ },
1337
+ {
1338
+ "id": "banned-phrase-060",
1339
+ "category": "banned-phrases",
1340
+ "subcategory": "journey-narrative",
1341
+ "pattern": "on this journey",
1342
+ "severity": "critical",
1343
+ "confidence": 0.92,
1344
+ "examples": [
1345
+ "Join us on this journey.",
1346
+ "On this journey to digital transformation."
1347
+ ],
1348
+ "replacements": [
1349
+ "As we implement CI/CD",
1350
+ "During the 6-month migration project",
1351
+ "Be specific about the process"
1352
+ ],
1353
+ "context": "Corporate journey metaphor",
1354
+ "frequency": "common",
1355
+ "domains": [
1356
+ "executive"
1357
+ ]
1358
+ },
1359
+ {
1360
+ "id": "banned-phrase-061",
1361
+ "category": "banned-phrases",
1362
+ "subcategory": "journey-narrative",
1363
+ "pattern": "our journey began",
1364
+ "severity": "critical",
1365
+ "confidence": 0.91,
1366
+ "examples": [
1367
+ "Our journey began three years ago.",
1368
+ "Our journey began with a simple idea."
1369
+ ],
1370
+ "replacements": [
1371
+ "We started in 2020 with 5 engineers",
1372
+ "The project kicked off in Q1 2022",
1373
+ "State concrete origins"
1374
+ ],
1375
+ "context": "Narrative cliche",
1376
+ "frequency": "common",
1377
+ "domains": [
1378
+ "executive"
1379
+ ]
1380
+ },
1381
+ {
1382
+ "id": "banned-phrase-062",
1383
+ "category": "banned-phrases",
1384
+ "subcategory": "journey-narrative",
1385
+ "pattern": "the path forward",
1386
+ "severity": "high",
1387
+ "confidence": 0.88,
1388
+ "examples": [
1389
+ "The path forward is clear.",
1390
+ "We see a clear path forward."
1391
+ ],
1392
+ "replacements": [
1393
+ "Next, we will implement feature X",
1394
+ "Q2 priorities include Y and Z",
1395
+ "Be specific about next steps"
1396
+ ],
1397
+ "context": "Vague direction metaphor",
1398
+ "frequency": "common",
1399
+ "domains": [
1400
+ "executive"
1401
+ ]
1402
+ },
1403
+ {
1404
+ "id": "banned-phrase-063",
1405
+ "category": "banned-phrases",
1406
+ "subcategory": "landscape-metaphor",
1407
+ "pattern": "in today's landscape",
1408
+ "severity": "critical",
1409
+ "confidence": 0.93,
1410
+ "examples": [
1411
+ "In today's technology landscape.",
1412
+ "In today's competitive landscape."
1413
+ ],
1414
+ "replacements": [
1415
+ "Given current cloud pricing models",
1416
+ "With 15 competing SaaS products",
1417
+ "Be specific about context"
1418
+ ],
1419
+ "context": "Vague metaphor",
1420
+ "frequency": "very-common",
1421
+ "domains": [
1422
+ "executive"
1423
+ ]
1424
+ },
1425
+ {
1426
+ "id": "banned-phrase-064",
1427
+ "category": "banned-phrases",
1428
+ "subcategory": "landscape-metaphor",
1429
+ "pattern": "in the digital landscape",
1430
+ "severity": "critical",
1431
+ "confidence": 0.92,
1432
+ "examples": [
1433
+ "Navigating the digital landscape.",
1434
+ "Success in the digital landscape."
1435
+ ],
1436
+ "replacements": [
1437
+ "Across web, mobile, and API channels",
1438
+ "Managing 5 digital touchpoints",
1439
+ "Name specific digital contexts"
1440
+ ],
1441
+ "context": "Buzzword metaphor",
1442
+ "frequency": "common",
1443
+ "domains": [
1444
+ "executive"
1445
+ ]
1446
+ },
1447
+ {
1448
+ "id": "banned-phrase-065",
1449
+ "category": "banned-phrases",
1450
+ "subcategory": "landscape-metaphor",
1451
+ "pattern": "the evolving landscape",
1452
+ "severity": "critical",
1453
+ "confidence": 0.91,
1454
+ "examples": [
1455
+ "The evolving landscape of technology.",
1456
+ "In the evolving landscape of security."
1457
+ ],
1458
+ "replacements": [
1459
+ "As container adoption grows 20% yearly",
1460
+ "With new threats like XYZ emerging",
1461
+ "Name specific evolutions"
1462
+ ],
1463
+ "context": "Vague change reference",
1464
+ "frequency": "common",
1465
+ "domains": [
1466
+ "executive"
1467
+ ]
1468
+ },
1469
+ {
1470
+ "id": "banned-phrase-066",
1471
+ "category": "banned-phrases",
1472
+ "subcategory": "commitment-declarations",
1473
+ "pattern": "we remain committed",
1474
+ "severity": "critical",
1475
+ "confidence": 0.93,
1476
+ "examples": [
1477
+ "We remain committed to quality.",
1478
+ "We remain committed to our customers."
1479
+ ],
1480
+ "replacements": [
1481
+ "We maintained 99.9% uptime last quarter",
1482
+ "We resolved 95% of tickets within SLA",
1483
+ "Show commitment through metrics"
1484
+ ],
1485
+ "context": "Empty commitment phrase",
1486
+ "frequency": "common",
1487
+ "domains": [
1488
+ "executive"
1489
+ ]
1490
+ },
1491
+ {
1492
+ "id": "banned-phrase-067",
1493
+ "category": "banned-phrases",
1494
+ "subcategory": "commitment-declarations",
1495
+ "pattern": "our unwavering commitment",
1496
+ "severity": "critical",
1497
+ "confidence": 0.92,
1498
+ "examples": [
1499
+ "Our unwavering commitment to excellence.",
1500
+ "Our unwavering commitment to security."
1501
+ ],
1502
+ "replacements": [
1503
+ "Zero security breaches in 5 years",
1504
+ "100% of deploys pass security review",
1505
+ "Demonstrate with evidence"
1506
+ ],
1507
+ "context": "Hyperbolic commitment",
1508
+ "frequency": "common",
1509
+ "domains": [
1510
+ "executive"
1511
+ ]
1512
+ },
1513
+ {
1514
+ "id": "banned-phrase-068",
1515
+ "category": "banned-phrases",
1516
+ "subcategory": "commitment-declarations",
1517
+ "pattern": "demonstrates our commitment",
1518
+ "severity": "high",
1519
+ "confidence": 0.89,
1520
+ "examples": [
1521
+ "This demonstrates our commitment to users.",
1522
+ "This demonstrates our commitment to quality."
1523
+ ],
1524
+ "replacements": [
1525
+ "This reduced user-reported bugs by 70%",
1526
+ "This improved test coverage from 60% to 95%",
1527
+ "Show impact, not commitment"
1528
+ ],
1529
+ "context": "Self-congratulatory claim",
1530
+ "frequency": "common",
1531
+ "domains": [
1532
+ "executive"
1533
+ ]
1534
+ },
1535
+ {
1536
+ "id": "banned-phrase-069",
1537
+ "category": "banned-phrases",
1538
+ "subcategory": "metaphors-overused",
1539
+ "pattern": "at the heart of",
1540
+ "severity": "high",
1541
+ "confidence": 0.88,
1542
+ "examples": [
1543
+ "Security is at the heart of our platform.",
1544
+ "Users are at the heart of our design."
1545
+ ],
1546
+ "replacements": [
1547
+ "Security is enforced at every layer",
1548
+ "User research drives all design decisions",
1549
+ "Be specific about centrality"
1550
+ ],
1551
+ "context": "Cliche metaphor",
1552
+ "frequency": "common",
1553
+ "domains": [
1554
+ "executive"
1555
+ ]
1556
+ },
1557
+ {
1558
+ "id": "banned-phrase-070",
1559
+ "category": "banned-phrases",
1560
+ "subcategory": "metaphors-overused",
1561
+ "pattern": "forms the backbone",
1562
+ "severity": "high",
1563
+ "confidence": 0.87,
1564
+ "examples": [
1565
+ "PostgreSQL forms the backbone of our data layer.",
1566
+ "Testing forms the backbone of our quality process."
1567
+ ],
1568
+ "replacements": [
1569
+ "PostgreSQL handles all 50TB of customer data",
1570
+ "Every PR requires passing tests before merge",
1571
+ "Describe the actual role"
1572
+ ],
1573
+ "context": "Structural metaphor",
1574
+ "frequency": "occasional",
1575
+ "domains": [
1576
+ "technical",
1577
+ "executive"
1578
+ ]
1579
+ },
1580
+ {
1581
+ "id": "banned-phrase-071",
1582
+ "category": "banned-phrases",
1583
+ "subcategory": "metaphors-overused",
1584
+ "pattern": "serves as the foundation",
1585
+ "severity": "high",
1586
+ "confidence": 0.86,
1587
+ "examples": [
1588
+ "This framework serves as the foundation.",
1589
+ "Trust serves as the foundation of our relationships."
1590
+ ],
1591
+ "replacements": [
1592
+ "This framework handles routing, auth, and logging",
1593
+ "98% customer retention rate over 3 years",
1594
+ "Describe the foundation specifically"
1595
+ ],
1596
+ "context": "Architectural metaphor",
1597
+ "frequency": "common",
1598
+ "domains": [
1599
+ "technical",
1600
+ "executive"
1601
+ ]
1602
+ },
1603
+ {
1604
+ "id": "banned-phrase-072",
1605
+ "category": "banned-phrases",
1606
+ "subcategory": "metaphors-overused",
1607
+ "pattern": "acts as a cornerstone",
1608
+ "severity": "high",
1609
+ "confidence": 0.85,
1610
+ "examples": [
1611
+ "Security acts as a cornerstone of our approach.",
1612
+ "Testing acts as a cornerstone of quality."
1613
+ ],
1614
+ "replacements": [
1615
+ "Security review gates every deployment",
1616
+ "Tests must pass before any merge",
1617
+ "Explain the critical role"
1618
+ ],
1619
+ "context": "Construction metaphor",
1620
+ "frequency": "occasional",
1621
+ "domains": [
1622
+ "executive"
1623
+ ]
1624
+ },
1625
+ {
1626
+ "id": "banned-phrase-073",
1627
+ "category": "banned-phrases",
1628
+ "subcategory": "metaphors-overused",
1629
+ "pattern": "functions as a bridge",
1630
+ "severity": "high",
1631
+ "confidence": 0.84,
1632
+ "examples": [
1633
+ "The API functions as a bridge between systems.",
1634
+ "This team functions as a bridge between departments."
1635
+ ],
1636
+ "replacements": [
1637
+ "The API translates between REST and GraphQL",
1638
+ "This team coordinates releases across 3 departments",
1639
+ "Describe the actual connection"
1640
+ ],
1641
+ "context": "Connection metaphor",
1642
+ "frequency": "occasional",
1643
+ "domains": [
1644
+ "technical",
1645
+ "executive"
1646
+ ]
1647
+ },
1648
+ {
1649
+ "id": "banned-phrase-074",
1650
+ "category": "banned-phrases",
1651
+ "subcategory": "metaphors-overused",
1652
+ "pattern": "represents a milestone",
1653
+ "severity": "high",
1654
+ "confidence": 0.86,
1655
+ "examples": [
1656
+ "This release represents a milestone.",
1657
+ "Our growth represents a milestone."
1658
+ ],
1659
+ "replacements": [
1660
+ "This release adds 5 major features",
1661
+ "We reached 100k users this quarter",
1662
+ "Name the specific achievement"
1663
+ ],
1664
+ "context": "Achievement metaphor",
1665
+ "frequency": "common",
1666
+ "domains": [
1667
+ "executive"
1668
+ ]
1669
+ },
1670
+ {
1671
+ "id": "banned-phrase-075",
1672
+ "category": "banned-phrases",
1673
+ "subcategory": "metaphors-overused",
1674
+ "pattern": "marks a turning point",
1675
+ "severity": "high",
1676
+ "confidence": 0.85,
1677
+ "examples": [
1678
+ "This acquisition marks a turning point.",
1679
+ "The new platform marks a turning point."
1680
+ ],
1681
+ "replacements": [
1682
+ "This acquisition adds 500k users",
1683
+ "The new platform enables mobile access",
1684
+ "Describe the actual change"
1685
+ ],
1686
+ "context": "Transition metaphor",
1687
+ "frequency": "occasional",
1688
+ "domains": [
1689
+ "executive"
1690
+ ]
1691
+ },
1692
+ {
1693
+ "id": "banned-phrase-076",
1694
+ "category": "banned-phrases",
1695
+ "subcategory": "cliche-descriptions",
1696
+ "pattern": "vibrant ecosystem",
1697
+ "severity": "critical",
1698
+ "confidence": 0.93,
1699
+ "examples": [
1700
+ "A vibrant ecosystem of partners.",
1701
+ "Our vibrant ecosystem of developers."
1702
+ ],
1703
+ "replacements": [
1704
+ "500+ partner integrations available",
1705
+ "12k developers using our API daily",
1706
+ "Quantify the ecosystem"
1707
+ ],
1708
+ "context": "Marketing cliche",
1709
+ "frequency": "common",
1710
+ "domains": [
1711
+ "executive"
1712
+ ]
1713
+ },
1714
+ {
1715
+ "id": "banned-phrase-077",
1716
+ "category": "banned-phrases",
1717
+ "subcategory": "cliche-descriptions",
1718
+ "pattern": "rich heritage",
1719
+ "severity": "high",
1720
+ "confidence": 0.88,
1721
+ "examples": [
1722
+ "Our company's rich heritage.",
1723
+ "Building on a rich heritage of innovation."
1724
+ ],
1725
+ "replacements": [
1726
+ "Founded in 1995, now serving 50 countries",
1727
+ "25 years of shipping enterprise software",
1728
+ "State specific history"
1729
+ ],
1730
+ "context": "Historical vagueness",
1731
+ "frequency": "occasional",
1732
+ "domains": [
1733
+ "executive"
1734
+ ]
1735
+ },
1736
+ {
1737
+ "id": "banned-phrase-078",
1738
+ "category": "banned-phrases",
1739
+ "subcategory": "cliche-descriptions",
1740
+ "pattern": "diverse landscape",
1741
+ "severity": "high",
1742
+ "confidence": 0.87,
1743
+ "examples": [
1744
+ "The diverse landscape of cloud providers.",
1745
+ "A diverse landscape of solutions."
1746
+ ],
1747
+ "replacements": [
1748
+ "AWS, Azure, and GCP combined hold 65% market share",
1749
+ "15+ competing tools in this category",
1750
+ "Name the diversity"
1751
+ ],
1752
+ "context": "Vague descriptor",
1753
+ "frequency": "common",
1754
+ "domains": [
1755
+ "executive"
1756
+ ]
1757
+ },
1758
+ {
1759
+ "id": "banned-phrase-079",
1760
+ "category": "banned-phrases",
1761
+ "subcategory": "cliche-descriptions",
1762
+ "pattern": "thriving community",
1763
+ "severity": "high",
1764
+ "confidence": 0.86,
1765
+ "examples": [
1766
+ "Our thriving community of users.",
1767
+ "A thriving community of contributors."
1768
+ ],
1769
+ "replacements": [
1770
+ "15k active forum members posting weekly",
1771
+ "500 contributors with 2k commits last year",
1772
+ "Show community activity metrics"
1773
+ ],
1774
+ "context": "Community marketing speak",
1775
+ "frequency": "common",
1776
+ "domains": [
1777
+ "executive"
1778
+ ]
1779
+ },
1780
+ {
1781
+ "id": "banned-phrase-080",
1782
+ "category": "banned-phrases",
1783
+ "subcategory": "cliche-descriptions",
1784
+ "pattern": "dynamic environment",
1785
+ "severity": "high",
1786
+ "confidence": 0.85,
1787
+ "examples": [
1788
+ "Our dynamic work environment.",
1789
+ "In a dynamic business environment."
1790
+ ],
1791
+ "replacements": [
1792
+ "Remote-first with quarterly onsites",
1793
+ "Market share shifts 5-10% quarterly",
1794
+ "Define the dynamics"
1795
+ ],
1796
+ "context": "Vague atmosphere claim",
1797
+ "frequency": "common",
1798
+ "domains": [
1799
+ "executive"
1800
+ ]
1801
+ },
1802
+ {
1803
+ "id": "banned-phrase-081",
1804
+ "category": "banned-phrases",
1805
+ "subcategory": "performative-language",
1806
+ "pattern": "aims to provide",
1807
+ "severity": "critical",
1808
+ "confidence": 0.91,
1809
+ "examples": [
1810
+ "This feature aims to provide better UX.",
1811
+ "Our service aims to provide reliability."
1812
+ ],
1813
+ "replacements": [
1814
+ "This feature improves UX by reducing clicks 40%",
1815
+ "Our service achieves 99.9% uptime",
1816
+ "State what it does, not what it aims to do"
1817
+ ],
1818
+ "context": "Tentative achievement claim",
1819
+ "frequency": "very-common",
1820
+ "domains": [
1821
+ "technical",
1822
+ "executive"
1823
+ ]
1824
+ },
1825
+ {
1826
+ "id": "banned-phrase-082",
1827
+ "category": "banned-phrases",
1828
+ "subcategory": "performative-language",
1829
+ "pattern": "seeks to deliver",
1830
+ "severity": "critical",
1831
+ "confidence": 0.9,
1832
+ "examples": [
1833
+ "Our platform seeks to deliver value.",
1834
+ "This approach seeks to deliver results."
1835
+ ],
1836
+ "replacements": [
1837
+ "Our platform delivers 3x ROI on average",
1838
+ "This approach reduced support tickets 50%",
1839
+ "State actual delivery"
1840
+ ],
1841
+ "context": "Intent over action",
1842
+ "frequency": "common",
1843
+ "domains": [
1844
+ "executive"
1845
+ ]
1846
+ },
1847
+ {
1848
+ "id": "banned-phrase-083",
1849
+ "category": "banned-phrases",
1850
+ "subcategory": "performative-language",
1851
+ "pattern": "strives to achieve",
1852
+ "severity": "critical",
1853
+ "confidence": 0.89,
1854
+ "examples": [
1855
+ "Our team strives to achieve excellence.",
1856
+ "We strive to achieve high performance."
1857
+ ],
1858
+ "replacements": [
1859
+ "Our team shipped 12 features last quarter",
1860
+ "We achieved p99 latency under 50ms",
1861
+ "Report achievements, not striving"
1862
+ ],
1863
+ "context": "Effort over results",
1864
+ "frequency": "common",
1865
+ "domains": [
1866
+ "executive"
1867
+ ]
1868
+ },
1869
+ {
1870
+ "id": "banned-phrase-084",
1871
+ "category": "banned-phrases",
1872
+ "subcategory": "performative-language",
1873
+ "pattern": "endeavors to create",
1874
+ "severity": "critical",
1875
+ "confidence": 0.88,
1876
+ "examples": [
1877
+ "Our company endeavors to create value.",
1878
+ "We endeavor to create great products."
1879
+ ],
1880
+ "replacements": [
1881
+ "Our products saved customers $10M last year",
1882
+ "We built 3 products used by 100k+ users",
1883
+ "Show what you created"
1884
+ ],
1885
+ "context": "Overly formal intent",
1886
+ "frequency": "occasional",
1887
+ "domains": [
1888
+ "executive"
1889
+ ]
1890
+ },
1891
+ {
1892
+ "id": "banned-phrase-085",
1893
+ "category": "banned-phrases",
1894
+ "subcategory": "performative-language",
1895
+ "pattern": "designed to enhance",
1896
+ "severity": "high",
1897
+ "confidence": 0.87,
1898
+ "examples": [
1899
+ "Features designed to enhance productivity.",
1900
+ "Tools designed to enhance collaboration."
1901
+ ],
1902
+ "replacements": [
1903
+ "Features that cut task time by 30%",
1904
+ "Tools that enabled 50% more cross-team projects",
1905
+ "Show the actual enhancement"
1906
+ ],
1907
+ "context": "Design intent vs outcome",
1908
+ "frequency": "very-common",
1909
+ "domains": [
1910
+ "technical",
1911
+ "executive"
1912
+ ]
1913
+ },
1914
+ {
1915
+ "id": "banned-phrase-086",
1916
+ "category": "banned-phrases",
1917
+ "subcategory": "performative-language",
1918
+ "pattern": "intended to facilitate",
1919
+ "severity": "high",
1920
+ "confidence": 0.86,
1921
+ "examples": [
1922
+ "Processes intended to facilitate adoption.",
1923
+ "Tools intended to facilitate integration."
1924
+ ],
1925
+ "replacements": [
1926
+ "Processes that achieved 80% adoption",
1927
+ "Tools that reduced integration time from days to hours",
1928
+ "Show actual facilitation"
1929
+ ],
1930
+ "context": "Intent vs achievement",
1931
+ "frequency": "common",
1932
+ "domains": [
1933
+ "technical",
1934
+ "executive"
1935
+ ]
1936
+ },
1937
+ {
1938
+ "id": "banned-phrase-087",
1939
+ "category": "banned-phrases",
1940
+ "subcategory": "performative-language",
1941
+ "pattern": "meant to streamline",
1942
+ "severity": "high",
1943
+ "confidence": 0.85,
1944
+ "examples": [
1945
+ "Features meant to streamline workflows.",
1946
+ "Changes meant to streamline operations."
1947
+ ],
1948
+ "replacements": [
1949
+ "Features that reduced workflow steps from 7 to 3",
1950
+ "Changes that cut operational overhead by 40%",
1951
+ "Quantify the streamlining"
1952
+ ],
1953
+ "context": "Intent without evidence",
1954
+ "frequency": "common",
1955
+ "domains": [
1956
+ "technical",
1957
+ "executive"
1958
+ ]
1959
+ },
1960
+ {
1961
+ "id": "banned-phrase-088",
1962
+ "category": "banned-phrases",
1963
+ "subcategory": "performative-language",
1964
+ "pattern": "poised to transform",
1965
+ "severity": "critical",
1966
+ "confidence": 0.92,
1967
+ "examples": [
1968
+ "We are poised to transform the industry.",
1969
+ "This technology is poised to transform workflows."
1970
+ ],
1971
+ "replacements": [
1972
+ "We're targeting 20% market share by Q4",
1973
+ "This technology reduced workflow time 60%",
1974
+ "Show transformation or state goals"
1975
+ ],
1976
+ "context": "Future hype without evidence",
1977
+ "frequency": "common",
1978
+ "domains": [
1979
+ "executive"
1980
+ ]
1981
+ },
1982
+ {
1983
+ "id": "banned-phrase-089",
1984
+ "category": "banned-phrases",
1985
+ "subcategory": "synergy-speak",
1986
+ "pattern": "synergy",
1987
+ "severity": "critical",
1988
+ "confidence": 0.94,
1989
+ "examples": [
1990
+ "Creating synergy between teams.",
1991
+ "The synergy of our approach."
1992
+ ],
1993
+ "replacements": [
1994
+ "Teams sharing 3 common components",
1995
+ "Combining frontend and API in one deployment",
1996
+ "Describe the actual collaboration"
1997
+ ],
1998
+ "context": "Classic corporate buzzword",
1999
+ "frequency": "common",
2000
+ "domains": [
2001
+ "executive"
2002
+ ]
2003
+ },
2004
+ {
2005
+ "id": "banned-phrase-090",
2006
+ "category": "banned-phrases",
2007
+ "subcategory": "synergy-speak",
2008
+ "pattern": "synergistic",
2009
+ "severity": "critical",
2010
+ "confidence": 0.93,
2011
+ "examples": [
2012
+ "A synergistic partnership.",
2013
+ "Synergistic effects of our approach."
2014
+ ],
2015
+ "replacements": [
2016
+ "Partnership adding 50k users to our platform",
2017
+ "Combining tools reduced build time 30%",
2018
+ "Name specific collaboration benefits"
2019
+ ],
2020
+ "context": "Buzzword derivative",
2021
+ "frequency": "occasional",
2022
+ "domains": [
2023
+ "executive"
2024
+ ]
2025
+ },
2026
+ {
2027
+ "id": "banned-phrase-091",
2028
+ "category": "banned-phrases",
2029
+ "subcategory": "verb-misuse",
2030
+ "pattern": "leverage",
2031
+ "severity": "high",
2032
+ "confidence": 0.89,
2033
+ "examples": [
2034
+ "We leverage cloud infrastructure.",
2035
+ "Leveraging AI for automation."
2036
+ ],
2037
+ "replacements": [
2038
+ "We use AWS for hosting",
2039
+ "Using GPT-4 to generate summaries",
2040
+ "Use 'use' or be specific"
2041
+ ],
2042
+ "context": "Business jargon for 'use'",
2043
+ "frequency": "very-common",
2044
+ "domains": [
2045
+ "executive",
2046
+ "technical"
2047
+ ]
2048
+ },
2049
+ {
2050
+ "id": "banned-phrase-092",
2051
+ "category": "banned-phrases",
2052
+ "subcategory": "verb-misuse",
2053
+ "pattern": "utilize",
2054
+ "severity": "high",
2055
+ "confidence": 0.88,
2056
+ "examples": [
2057
+ "We utilize React for the frontend.",
2058
+ "Utilize best practices."
2059
+ ],
2060
+ "replacements": [
2061
+ "We use React for the frontend",
2062
+ "Follow these practices",
2063
+ "Just say 'use'"
2064
+ ],
2065
+ "context": "Unnecessarily formal 'use'",
2066
+ "frequency": "very-common",
2067
+ "domains": [
2068
+ "technical",
2069
+ "executive"
2070
+ ]
2071
+ },
2072
+ {
2073
+ "id": "banned-phrase-093",
2074
+ "category": "banned-phrases",
2075
+ "subcategory": "verb-misuse",
2076
+ "pattern": "facilitate",
2077
+ "severity": "high",
2078
+ "confidence": 0.87,
2079
+ "examples": [
2080
+ "This facilitates communication.",
2081
+ "To facilitate integration."
2082
+ ],
2083
+ "replacements": [
2084
+ "This enables team chat",
2085
+ "To connect the two systems",
2086
+ "Use simpler verbs"
2087
+ ],
2088
+ "context": "Often unnecessary",
2089
+ "frequency": "common",
2090
+ "domains": [
2091
+ "executive",
2092
+ "academic"
2093
+ ]
2094
+ },
2095
+ {
2096
+ "id": "banned-phrase-094",
2097
+ "category": "banned-phrases",
2098
+ "subcategory": "filler-phrases",
2099
+ "pattern": "as such",
2100
+ "severity": "medium",
2101
+ "confidence": 0.8,
2102
+ "examples": [
2103
+ "Performance is critical. As such, we cache.",
2104
+ "Users value speed. As such, we optimize."
2105
+ ],
2106
+ "replacements": [
2107
+ "Performance is critical, so we cache",
2108
+ "Users value speed, so we optimize",
2109
+ "Use 'so' or 'therefore'"
2110
+ ],
2111
+ "context": "Formal connector",
2112
+ "frequency": "common",
2113
+ "domains": [
2114
+ "academic",
2115
+ "technical"
2116
+ ]
2117
+ },
2118
+ {
2119
+ "id": "banned-phrase-095",
2120
+ "category": "banned-phrases",
2121
+ "subcategory": "filler-phrases",
2122
+ "pattern": "in order to",
2123
+ "severity": "low",
2124
+ "confidence": 0.7,
2125
+ "examples": [
2126
+ "In order to improve speed.",
2127
+ "In order to reduce costs."
2128
+ ],
2129
+ "replacements": [
2130
+ "To improve speed",
2131
+ "To reduce costs",
2132
+ "Just use 'to'"
2133
+ ],
2134
+ "context": "Wordy alternative to 'to'",
2135
+ "frequency": "very-common",
2136
+ "domains": [
2137
+ "technical",
2138
+ "academic"
2139
+ ]
2140
+ },
2141
+ {
2142
+ "id": "banned-phrase-096",
2143
+ "category": "banned-phrases",
2144
+ "subcategory": "filler-phrases",
2145
+ "pattern": "due to the fact that",
2146
+ "severity": "high",
2147
+ "confidence": 0.89,
2148
+ "examples": [
2149
+ "Due to the fact that latency is high.",
2150
+ "Due to the fact that costs increased."
2151
+ ],
2152
+ "replacements": [
2153
+ "Because latency is high",
2154
+ "Because costs increased",
2155
+ "Use 'because'"
2156
+ ],
2157
+ "context": "Wordy 'because'",
2158
+ "frequency": "common",
2159
+ "domains": [
2160
+ "academic",
2161
+ "technical"
2162
+ ]
2163
+ },
2164
+ {
2165
+ "id": "banned-phrase-097",
2166
+ "category": "banned-phrases",
2167
+ "subcategory": "filler-phrases",
2168
+ "pattern": "for the purpose of",
2169
+ "severity": "high",
2170
+ "confidence": 0.88,
2171
+ "examples": [
2172
+ "For the purpose of testing.",
2173
+ "For the purpose of demonstration."
2174
+ ],
2175
+ "replacements": [
2176
+ "For testing",
2177
+ "To demonstrate",
2178
+ "Simplify to 'for' or 'to'"
2179
+ ],
2180
+ "context": "Wordy phrase",
2181
+ "frequency": "common",
2182
+ "domains": [
2183
+ "academic"
2184
+ ]
2185
+ },
2186
+ {
2187
+ "id": "banned-phrase-098",
2188
+ "category": "banned-phrases",
2189
+ "subcategory": "filler-phrases",
2190
+ "pattern": "in the event that",
2191
+ "severity": "high",
2192
+ "confidence": 0.87,
2193
+ "examples": [
2194
+ "In the event that errors occur.",
2195
+ "In the event that users complain."
2196
+ ],
2197
+ "replacements": [
2198
+ "If errors occur",
2199
+ "If users complain",
2200
+ "Use 'if'"
2201
+ ],
2202
+ "context": "Wordy 'if'",
2203
+ "frequency": "common",
2204
+ "domains": [
2205
+ "technical"
2206
+ ]
2207
+ },
2208
+ {
2209
+ "id": "banned-phrase-099",
2210
+ "category": "banned-phrases",
2211
+ "subcategory": "filler-phrases",
2212
+ "pattern": "at this point in time",
2213
+ "severity": "critical",
2214
+ "confidence": 0.93,
2215
+ "examples": [
2216
+ "At this point in time, we use PostgreSQL.",
2217
+ "At this point in time, costs are stable."
2218
+ ],
2219
+ "replacements": [
2220
+ "Currently, we use PostgreSQL",
2221
+ "Now, costs are stable",
2222
+ "Use 'now' or 'currently'"
2223
+ ],
2224
+ "context": "Extremely wordy 'now'",
2225
+ "frequency": "common",
2226
+ "domains": [
2227
+ "executive"
2228
+ ]
2229
+ },
2230
+ {
2231
+ "id": "banned-phrase-100",
2232
+ "category": "banned-phrases",
2233
+ "subcategory": "filler-phrases",
2234
+ "pattern": "at the present time",
2235
+ "severity": "critical",
2236
+ "confidence": 0.92,
2237
+ "examples": [
2238
+ "At the present time, we support 10 languages.",
2239
+ "At the present time, latency is acceptable."
2240
+ ],
2241
+ "replacements": [
2242
+ "Currently, we support 10 languages",
2243
+ "Now, latency is acceptable",
2244
+ "Use 'now' or 'currently'"
2245
+ ],
2246
+ "context": "Formal 'now'",
2247
+ "frequency": "common",
2248
+ "domains": [
2249
+ "executive",
2250
+ "academic"
2251
+ ]
2252
+ },
2253
+ {
2254
+ "id": "banned-phrase-101",
2255
+ "category": "banned-phrases",
2256
+ "subcategory": "throat-clearing",
2257
+ "pattern": "it is clear that",
2258
+ "severity": "critical",
2259
+ "confidence": 0.9223437211716399,
2260
+ "examples": [
2261
+ "Example with it is clear that",
2262
+ "Another it is clear that example"
2263
+ ],
2264
+ "replacements": [
2265
+ "Use specific language",
2266
+ "Be direct",
2267
+ "Provide concrete details"
2268
+ ],
2269
+ "context": "Obviousness claim",
2270
+ "frequency": "common",
2271
+ "domains": [
2272
+ "technical",
2273
+ "executive",
2274
+ "academic"
2275
+ ]
2276
+ },
2277
+ {
2278
+ "id": "banned-phrase-102",
2279
+ "category": "banned-phrases",
2280
+ "subcategory": "throat-clearing",
2281
+ "pattern": "it is apparent that",
2282
+ "severity": "critical",
2283
+ "confidence": 0.857776100557384,
2284
+ "examples": [
2285
+ "Example with it is apparent that",
2286
+ "Another it is apparent that example"
2287
+ ],
2288
+ "replacements": [
2289
+ "Use specific language",
2290
+ "Be direct",
2291
+ "Provide concrete details"
2292
+ ],
2293
+ "context": "Visibility claim",
2294
+ "frequency": "common",
2295
+ "domains": [
2296
+ "technical",
2297
+ "executive",
2298
+ "academic"
2299
+ ]
2300
+ },
2301
+ {
2302
+ "id": "banned-phrase-103",
2303
+ "category": "banned-phrases",
2304
+ "subcategory": "throat-clearing",
2305
+ "pattern": "it is undeniable that",
2306
+ "severity": "critical",
2307
+ "confidence": 0.8706031582894904,
2308
+ "examples": [
2309
+ "Example with it is undeniable that",
2310
+ "Another it is undeniable that example"
2311
+ ],
2312
+ "replacements": [
2313
+ "Use specific language",
2314
+ "Be direct",
2315
+ "Provide concrete details"
2316
+ ],
2317
+ "context": "Strong claim",
2318
+ "frequency": "common",
2319
+ "domains": [
2320
+ "technical",
2321
+ "executive",
2322
+ "academic"
2323
+ ]
2324
+ },
2325
+ {
2326
+ "id": "banned-phrase-104",
2327
+ "category": "banned-phrases",
2328
+ "subcategory": "throat-clearing",
2329
+ "pattern": "it is indisputable that",
2330
+ "severity": "critical",
2331
+ "confidence": 0.9135716472184934,
2332
+ "examples": [
2333
+ "Example with it is indisputable that",
2334
+ "Another it is indisputable that example"
2335
+ ],
2336
+ "replacements": [
2337
+ "Use specific language",
2338
+ "Be direct",
2339
+ "Provide concrete details"
2340
+ ],
2341
+ "context": "Argument claim",
2342
+ "frequency": "common",
2343
+ "domains": [
2344
+ "technical",
2345
+ "executive",
2346
+ "academic"
2347
+ ]
2348
+ },
2349
+ {
2350
+ "id": "banned-phrase-105",
2351
+ "category": "banned-phrases",
2352
+ "subcategory": "throat-clearing",
2353
+ "pattern": "it is safe to say",
2354
+ "severity": "critical",
2355
+ "confidence": 0.8549809555869946,
2356
+ "examples": [
2357
+ "Example with it is safe to say",
2358
+ "Another it is safe to say example"
2359
+ ],
2360
+ "replacements": [
2361
+ "Use specific language",
2362
+ "Be direct",
2363
+ "Provide concrete details"
2364
+ ],
2365
+ "context": "Safety hedge",
2366
+ "frequency": "common",
2367
+ "domains": [
2368
+ "technical",
2369
+ "executive",
2370
+ "academic"
2371
+ ]
2372
+ },
2373
+ {
2374
+ "id": "banned-phrase-106",
2375
+ "category": "banned-phrases",
2376
+ "subcategory": "throat-clearing",
2377
+ "pattern": "it is fair to say",
2378
+ "severity": "critical",
2379
+ "confidence": 0.9008310530389815,
2380
+ "examples": [
2381
+ "Example with it is fair to say",
2382
+ "Another it is fair to say example"
2383
+ ],
2384
+ "replacements": [
2385
+ "Use specific language",
2386
+ "Be direct",
2387
+ "Provide concrete details"
2388
+ ],
2389
+ "context": "Fairness claim",
2390
+ "frequency": "common",
2391
+ "domains": [
2392
+ "technical",
2393
+ "executive",
2394
+ "academic"
2395
+ ]
2396
+ },
2397
+ {
2398
+ "id": "banned-phrase-107",
2399
+ "category": "banned-phrases",
2400
+ "subcategory": "throat-clearing",
2401
+ "pattern": "it is reasonable to assume",
2402
+ "severity": "critical",
2403
+ "confidence": 0.8915200906300617,
2404
+ "examples": [
2405
+ "Example with it is reasonable to assume",
2406
+ "Another it is reasonable to assume example"
2407
+ ],
2408
+ "replacements": [
2409
+ "Use specific language",
2410
+ "Be direct",
2411
+ "Provide concrete details"
2412
+ ],
2413
+ "context": "Assumption",
2414
+ "frequency": "common",
2415
+ "domains": [
2416
+ "technical",
2417
+ "executive",
2418
+ "academic"
2419
+ ]
2420
+ },
2421
+ {
2422
+ "id": "banned-phrase-108",
2423
+ "category": "banned-phrases",
2424
+ "subcategory": "throat-clearing",
2425
+ "pattern": "it is easy to see",
2426
+ "severity": "critical",
2427
+ "confidence": 0.9106765010937589,
2428
+ "examples": [
2429
+ "Example with it is easy to see",
2430
+ "Another it is easy to see example"
2431
+ ],
2432
+ "replacements": [
2433
+ "Use specific language",
2434
+ "Be direct",
2435
+ "Provide concrete details"
2436
+ ],
2437
+ "context": "Obviousness",
2438
+ "frequency": "common",
2439
+ "domains": [
2440
+ "technical",
2441
+ "executive",
2442
+ "academic"
2443
+ ]
2444
+ },
2445
+ {
2446
+ "id": "banned-phrase-109",
2447
+ "category": "banned-phrases",
2448
+ "subcategory": "throat-clearing",
2449
+ "pattern": "it is hard to imagine",
2450
+ "severity": "critical",
2451
+ "confidence": 0.8939567000046778,
2452
+ "examples": [
2453
+ "Example with it is hard to imagine",
2454
+ "Another it is hard to imagine example"
2455
+ ],
2456
+ "replacements": [
2457
+ "Use specific language",
2458
+ "Be direct",
2459
+ "Provide concrete details"
2460
+ ],
2461
+ "context": "Difficulty claim",
2462
+ "frequency": "common",
2463
+ "domains": [
2464
+ "technical",
2465
+ "executive",
2466
+ "academic"
2467
+ ]
2468
+ },
2469
+ {
2470
+ "id": "banned-phrase-110",
2471
+ "category": "banned-phrases",
2472
+ "subcategory": "throat-clearing",
2473
+ "pattern": "it is no secret that",
2474
+ "severity": "critical",
2475
+ "confidence": 0.9233332241954741,
2476
+ "examples": [
2477
+ "Example with it is no secret that",
2478
+ "Another it is no secret that example"
2479
+ ],
2480
+ "replacements": [
2481
+ "Use specific language",
2482
+ "Be direct",
2483
+ "Provide concrete details"
2484
+ ],
2485
+ "context": "Common knowledge",
2486
+ "frequency": "common",
2487
+ "domains": [
2488
+ "technical",
2489
+ "executive",
2490
+ "academic"
2491
+ ]
2492
+ },
2493
+ {
2494
+ "id": "banned-phrase-111",
2495
+ "category": "banned-phrases",
2496
+ "subcategory": "vague-intensifiers",
2497
+ "pattern": "truly exceptional",
2498
+ "severity": "critical",
2499
+ "confidence": 0.9279617665521638,
2500
+ "examples": [
2501
+ "Example with truly exceptional",
2502
+ "Another truly exceptional example"
2503
+ ],
2504
+ "replacements": [
2505
+ "Use specific language",
2506
+ "Be direct",
2507
+ "Provide concrete details"
2508
+ ],
2509
+ "context": "Hyperbole",
2510
+ "frequency": "common",
2511
+ "domains": [
2512
+ "technical",
2513
+ "executive",
2514
+ "academic"
2515
+ ]
2516
+ },
2517
+ {
2518
+ "id": "banned-phrase-112",
2519
+ "category": "banned-phrases",
2520
+ "subcategory": "vague-intensifiers",
2521
+ "pattern": "absolutely essential",
2522
+ "severity": "critical",
2523
+ "confidence": 0.9484846942220541,
2524
+ "examples": [
2525
+ "Example with absolutely essential",
2526
+ "Another absolutely essential example"
2527
+ ],
2528
+ "replacements": [
2529
+ "Use specific language",
2530
+ "Be direct",
2531
+ "Provide concrete details"
2532
+ ],
2533
+ "context": "Hyperbole",
2534
+ "frequency": "common",
2535
+ "domains": [
2536
+ "technical",
2537
+ "executive",
2538
+ "academic"
2539
+ ]
2540
+ },
2541
+ {
2542
+ "id": "banned-phrase-113",
2543
+ "category": "banned-phrases",
2544
+ "subcategory": "vague-intensifiers",
2545
+ "pattern": "incredibly powerful",
2546
+ "severity": "critical",
2547
+ "confidence": 0.8651060691168818,
2548
+ "examples": [
2549
+ "Example with incredibly powerful",
2550
+ "Another incredibly powerful example"
2551
+ ],
2552
+ "replacements": [
2553
+ "Use specific language",
2554
+ "Be direct",
2555
+ "Provide concrete details"
2556
+ ],
2557
+ "context": "Hyperbole",
2558
+ "frequency": "common",
2559
+ "domains": [
2560
+ "technical",
2561
+ "executive",
2562
+ "academic"
2563
+ ]
2564
+ },
2565
+ {
2566
+ "id": "banned-phrase-114",
2567
+ "category": "banned-phrases",
2568
+ "subcategory": "vague-intensifiers",
2569
+ "pattern": "remarkably simple",
2570
+ "severity": "critical",
2571
+ "confidence": 0.9494015531071787,
2572
+ "examples": [
2573
+ "Example with remarkably simple",
2574
+ "Another remarkably simple example"
2575
+ ],
2576
+ "replacements": [
2577
+ "Use specific language",
2578
+ "Be direct",
2579
+ "Provide concrete details"
2580
+ ],
2581
+ "context": "Simplicity claim",
2582
+ "frequency": "common",
2583
+ "domains": [
2584
+ "technical",
2585
+ "executive",
2586
+ "academic"
2587
+ ]
2588
+ },
2589
+ {
2590
+ "id": "banned-phrase-115",
2591
+ "category": "banned-phrases",
2592
+ "subcategory": "vague-intensifiers",
2593
+ "pattern": "fundamentally different",
2594
+ "severity": "critical",
2595
+ "confidence": 0.8738887596869923,
2596
+ "examples": [
2597
+ "Example with fundamentally different",
2598
+ "Another fundamentally different example"
2599
+ ],
2600
+ "replacements": [
2601
+ "Use specific language",
2602
+ "Be direct",
2603
+ "Provide concrete details"
2604
+ ],
2605
+ "context": "Difference claim",
2606
+ "frequency": "common",
2607
+ "domains": [
2608
+ "technical",
2609
+ "executive",
2610
+ "academic"
2611
+ ]
2612
+ },
2613
+ {
2614
+ "id": "banned-phrase-116",
2615
+ "category": "banned-phrases",
2616
+ "subcategory": "vague-intensifiers",
2617
+ "pattern": "radically new",
2618
+ "severity": "critical",
2619
+ "confidence": 0.8202427321875627,
2620
+ "examples": [
2621
+ "Example with radically new",
2622
+ "Another radically new example"
2623
+ ],
2624
+ "replacements": [
2625
+ "Use specific language",
2626
+ "Be direct",
2627
+ "Provide concrete details"
2628
+ ],
2629
+ "context": "Novelty claim",
2630
+ "frequency": "common",
2631
+ "domains": [
2632
+ "technical",
2633
+ "executive",
2634
+ "academic"
2635
+ ]
2636
+ },
2637
+ {
2638
+ "id": "banned-phrase-117",
2639
+ "category": "banned-phrases",
2640
+ "subcategory": "vague-intensifiers",
2641
+ "pattern": "completely reimagined",
2642
+ "severity": "critical",
2643
+ "confidence": 0.8614391661460076,
2644
+ "examples": [
2645
+ "Example with completely reimagined",
2646
+ "Another completely reimagined example"
2647
+ ],
2648
+ "replacements": [
2649
+ "Use specific language",
2650
+ "Be direct",
2651
+ "Provide concrete details"
2652
+ ],
2653
+ "context": "Change claim",
2654
+ "frequency": "common",
2655
+ "domains": [
2656
+ "technical",
2657
+ "executive",
2658
+ "academic"
2659
+ ]
2660
+ },
2661
+ {
2662
+ "id": "banned-phrase-118",
2663
+ "category": "banned-phrases",
2664
+ "subcategory": "vague-intensifiers",
2665
+ "pattern": "fully optimized",
2666
+ "severity": "critical",
2667
+ "confidence": 0.8469575244781931,
2668
+ "examples": [
2669
+ "Example with fully optimized",
2670
+ "Another fully optimized example"
2671
+ ],
2672
+ "replacements": [
2673
+ "Use specific language",
2674
+ "Be direct",
2675
+ "Provide concrete details"
2676
+ ],
2677
+ "context": "Optimization claim",
2678
+ "frequency": "common",
2679
+ "domains": [
2680
+ "technical",
2681
+ "executive",
2682
+ "academic"
2683
+ ]
2684
+ },
2685
+ {
2686
+ "id": "banned-phrase-119",
2687
+ "category": "banned-phrases",
2688
+ "subcategory": "vague-intensifiers",
2689
+ "pattern": "deeply integrated",
2690
+ "severity": "critical",
2691
+ "confidence": 0.8666035464963094,
2692
+ "examples": [
2693
+ "Example with deeply integrated",
2694
+ "Another deeply integrated example"
2695
+ ],
2696
+ "replacements": [
2697
+ "Use specific language",
2698
+ "Be direct",
2699
+ "Provide concrete details"
2700
+ ],
2701
+ "context": "Integration claim",
2702
+ "frequency": "common",
2703
+ "domains": [
2704
+ "technical",
2705
+ "executive",
2706
+ "academic"
2707
+ ]
2708
+ },
2709
+ {
2710
+ "id": "banned-phrase-120",
2711
+ "category": "banned-phrases",
2712
+ "subcategory": "vague-intensifiers",
2713
+ "pattern": "highly scalable",
2714
+ "severity": "critical",
2715
+ "confidence": 0.8642692201858675,
2716
+ "examples": [
2717
+ "Example with highly scalable",
2718
+ "Another highly scalable example"
2719
+ ],
2720
+ "replacements": [
2721
+ "Use specific language",
2722
+ "Be direct",
2723
+ "Provide concrete details"
2724
+ ],
2725
+ "context": "Scale claim",
2726
+ "frequency": "common",
2727
+ "domains": [
2728
+ "technical",
2729
+ "executive",
2730
+ "academic"
2731
+ ]
2732
+ },
2733
+ {
2734
+ "id": "banned-phrase-121",
2735
+ "category": "banned-phrases",
2736
+ "subcategory": "corporate-speak",
2737
+ "pattern": "move the needle",
2738
+ "severity": "high",
2739
+ "confidence": 0.8271781837381572,
2740
+ "examples": [
2741
+ "Example with move the needle",
2742
+ "Another move the needle example"
2743
+ ],
2744
+ "replacements": [
2745
+ "Use specific language",
2746
+ "Be direct",
2747
+ "Provide concrete details"
2748
+ ],
2749
+ "context": "Impact metaphor",
2750
+ "frequency": "common",
2751
+ "domains": [
2752
+ "technical",
2753
+ "executive",
2754
+ "academic"
2755
+ ]
2756
+ },
2757
+ {
2758
+ "id": "banned-phrase-122",
2759
+ "category": "banned-phrases",
2760
+ "subcategory": "corporate-speak",
2761
+ "pattern": "low-hanging fruit",
2762
+ "severity": "high",
2763
+ "confidence": 0.9474848160849771,
2764
+ "examples": [
2765
+ "Example with low-hanging fruit",
2766
+ "Another low-hanging fruit example"
2767
+ ],
2768
+ "replacements": [
2769
+ "Use specific language",
2770
+ "Be direct",
2771
+ "Provide concrete details"
2772
+ ],
2773
+ "context": "Easy wins",
2774
+ "frequency": "common",
2775
+ "domains": [
2776
+ "technical",
2777
+ "executive",
2778
+ "academic"
2779
+ ]
2780
+ },
2781
+ {
2782
+ "id": "banned-phrase-123",
2783
+ "category": "banned-phrases",
2784
+ "subcategory": "corporate-speak",
2785
+ "pattern": "deep dive",
2786
+ "severity": "high",
2787
+ "confidence": 0.8756855964418748,
2788
+ "examples": [
2789
+ "Example with deep dive",
2790
+ "Another deep dive example"
2791
+ ],
2792
+ "replacements": [
2793
+ "Use specific language",
2794
+ "Be direct",
2795
+ "Provide concrete details"
2796
+ ],
2797
+ "context": "Analysis metaphor",
2798
+ "frequency": "common",
2799
+ "domains": [
2800
+ "technical",
2801
+ "executive",
2802
+ "academic"
2803
+ ]
2804
+ },
2805
+ {
2806
+ "id": "banned-phrase-124",
2807
+ "category": "banned-phrases",
2808
+ "subcategory": "corporate-speak",
2809
+ "pattern": "circle back",
2810
+ "severity": "high",
2811
+ "confidence": 0.9204057702709362,
2812
+ "examples": [
2813
+ "Example with circle back",
2814
+ "Another circle back example"
2815
+ ],
2816
+ "replacements": [
2817
+ "Use specific language",
2818
+ "Be direct",
2819
+ "Provide concrete details"
2820
+ ],
2821
+ "context": "Follow-up",
2822
+ "frequency": "common",
2823
+ "domains": [
2824
+ "technical",
2825
+ "executive",
2826
+ "academic"
2827
+ ]
2828
+ },
2829
+ {
2830
+ "id": "banned-phrase-125",
2831
+ "category": "banned-phrases",
2832
+ "subcategory": "corporate-speak",
2833
+ "pattern": "touch base",
2834
+ "severity": "high",
2835
+ "confidence": 0.8531271414127716,
2836
+ "examples": [
2837
+ "Example with touch base",
2838
+ "Another touch base example"
2839
+ ],
2840
+ "replacements": [
2841
+ "Use specific language",
2842
+ "Be direct",
2843
+ "Provide concrete details"
2844
+ ],
2845
+ "context": "Contact",
2846
+ "frequency": "common",
2847
+ "domains": [
2848
+ "technical",
2849
+ "executive",
2850
+ "academic"
2851
+ ]
2852
+ },
2853
+ {
2854
+ "id": "banned-phrase-126",
2855
+ "category": "banned-phrases",
2856
+ "subcategory": "corporate-speak",
2857
+ "pattern": "take offline",
2858
+ "severity": "high",
2859
+ "confidence": 0.9038763073237132,
2860
+ "examples": [
2861
+ "Example with take offline",
2862
+ "Another take offline example"
2863
+ ],
2864
+ "replacements": [
2865
+ "Use specific language",
2866
+ "Be direct",
2867
+ "Provide concrete details"
2868
+ ],
2869
+ "context": "Side discussion",
2870
+ "frequency": "common",
2871
+ "domains": [
2872
+ "technical",
2873
+ "executive",
2874
+ "academic"
2875
+ ]
2876
+ },
2877
+ {
2878
+ "id": "banned-phrase-127",
2879
+ "category": "banned-phrases",
2880
+ "subcategory": "corporate-speak",
2881
+ "pattern": "bandwidth",
2882
+ "severity": "high",
2883
+ "confidence": 0.8148079385968234,
2884
+ "examples": [
2885
+ "Example with bandwidth",
2886
+ "Another bandwidth example"
2887
+ ],
2888
+ "replacements": [
2889
+ "Use specific language",
2890
+ "Be direct",
2891
+ "Provide concrete details"
2892
+ ],
2893
+ "context": "Capacity metaphor",
2894
+ "frequency": "common",
2895
+ "domains": [
2896
+ "technical",
2897
+ "executive",
2898
+ "academic"
2899
+ ]
2900
+ },
2901
+ {
2902
+ "id": "banned-phrase-128",
2903
+ "category": "banned-phrases",
2904
+ "subcategory": "corporate-speak",
2905
+ "pattern": "heavy lifting",
2906
+ "severity": "high",
2907
+ "confidence": 0.9177422591251863,
2908
+ "examples": [
2909
+ "Example with heavy lifting",
2910
+ "Another heavy lifting example"
2911
+ ],
2912
+ "replacements": [
2913
+ "Use specific language",
2914
+ "Be direct",
2915
+ "Provide concrete details"
2916
+ ],
2917
+ "context": "Work metaphor",
2918
+ "frequency": "common",
2919
+ "domains": [
2920
+ "technical",
2921
+ "executive",
2922
+ "academic"
2923
+ ]
2924
+ },
2925
+ {
2926
+ "id": "banned-phrase-129",
2927
+ "category": "banned-phrases",
2928
+ "subcategory": "corporate-speak",
2929
+ "pattern": "north star",
2930
+ "severity": "high",
2931
+ "confidence": 0.8047476145680482,
2932
+ "examples": [
2933
+ "Example with north star",
2934
+ "Another north star example"
2935
+ ],
2936
+ "replacements": [
2937
+ "Use specific language",
2938
+ "Be direct",
2939
+ "Provide concrete details"
2940
+ ],
2941
+ "context": "Goal metaphor",
2942
+ "frequency": "common",
2943
+ "domains": [
2944
+ "technical",
2945
+ "executive",
2946
+ "academic"
2947
+ ]
2948
+ },
2949
+ {
2950
+ "id": "banned-phrase-130",
2951
+ "category": "banned-phrases",
2952
+ "subcategory": "corporate-speak",
2953
+ "pattern": "stakeholder",
2954
+ "severity": "high",
2955
+ "confidence": 0.8576792711341692,
2956
+ "examples": [
2957
+ "Example with stakeholder",
2958
+ "Another stakeholder example"
2959
+ ],
2960
+ "replacements": [
2961
+ "Use specific language",
2962
+ "Be direct",
2963
+ "Provide concrete details"
2964
+ ],
2965
+ "context": "Person with interest",
2966
+ "frequency": "common",
2967
+ "domains": [
2968
+ "technical",
2969
+ "executive",
2970
+ "academic"
2971
+ ]
2972
+ },
2973
+ {
2974
+ "id": "banned-phrase-131",
2975
+ "category": "banned-phrases",
2976
+ "subcategory": "performative-language",
2977
+ "pattern": "committed to delivering",
2978
+ "severity": "high",
2979
+ "confidence": 0.9047790440303286,
2980
+ "examples": [
2981
+ "Example with committed to delivering",
2982
+ "Another committed to delivering example"
2983
+ ],
2984
+ "replacements": [
2985
+ "Use specific language",
2986
+ "Be direct",
2987
+ "Provide concrete details"
2988
+ ],
2989
+ "context": "Intent",
2990
+ "frequency": "common",
2991
+ "domains": [
2992
+ "technical",
2993
+ "executive",
2994
+ "academic"
2995
+ ]
2996
+ },
2997
+ {
2998
+ "id": "banned-phrase-132",
2999
+ "category": "banned-phrases",
3000
+ "subcategory": "performative-language",
3001
+ "pattern": "focused on providing",
3002
+ "severity": "high",
3003
+ "confidence": 0.8275450706220463,
3004
+ "examples": [
3005
+ "Example with focused on providing",
3006
+ "Another focused on providing example"
3007
+ ],
3008
+ "replacements": [
3009
+ "Use specific language",
3010
+ "Be direct",
3011
+ "Provide concrete details"
3012
+ ],
3013
+ "context": "Intent",
3014
+ "frequency": "common",
3015
+ "domains": [
3016
+ "technical",
3017
+ "executive",
3018
+ "academic"
3019
+ ]
3020
+ },
3021
+ {
3022
+ "id": "banned-phrase-133",
3023
+ "category": "banned-phrases",
3024
+ "subcategory": "performative-language",
3025
+ "pattern": "dedicated to ensuring",
3026
+ "severity": "high",
3027
+ "confidence": 0.8019237629089662,
3028
+ "examples": [
3029
+ "Example with dedicated to ensuring",
3030
+ "Another dedicated to ensuring example"
3031
+ ],
3032
+ "replacements": [
3033
+ "Use specific language",
3034
+ "Be direct",
3035
+ "Provide concrete details"
3036
+ ],
3037
+ "context": "Intent",
3038
+ "frequency": "common",
3039
+ "domains": [
3040
+ "technical",
3041
+ "executive",
3042
+ "academic"
3043
+ ]
3044
+ },
3045
+ {
3046
+ "id": "banned-phrase-134",
3047
+ "category": "banned-phrases",
3048
+ "subcategory": "performative-language",
3049
+ "pattern": "determined to achieve",
3050
+ "severity": "high",
3051
+ "confidence": 0.9193800790213521,
3052
+ "examples": [
3053
+ "Example with determined to achieve",
3054
+ "Another determined to achieve example"
3055
+ ],
3056
+ "replacements": [
3057
+ "Use specific language",
3058
+ "Be direct",
3059
+ "Provide concrete details"
3060
+ ],
3061
+ "context": "Intent",
3062
+ "frequency": "common",
3063
+ "domains": [
3064
+ "technical",
3065
+ "executive",
3066
+ "academic"
3067
+ ]
3068
+ },
3069
+ {
3070
+ "id": "banned-phrase-135",
3071
+ "category": "banned-phrases",
3072
+ "subcategory": "performative-language",
3073
+ "pattern": "working towards",
3074
+ "severity": "high",
3075
+ "confidence": 0.8950872853449224,
3076
+ "examples": [
3077
+ "Example with working towards",
3078
+ "Another working towards example"
3079
+ ],
3080
+ "replacements": [
3081
+ "Use specific language",
3082
+ "Be direct",
3083
+ "Provide concrete details"
3084
+ ],
3085
+ "context": "Progress",
3086
+ "frequency": "common",
3087
+ "domains": [
3088
+ "technical",
3089
+ "executive",
3090
+ "academic"
3091
+ ]
3092
+ },
3093
+ {
3094
+ "id": "banned-phrase-136",
3095
+ "category": "banned-phrases",
3096
+ "subcategory": "performative-language",
3097
+ "pattern": "striving for excellence",
3098
+ "severity": "high",
3099
+ "confidence": 0.8725505364692239,
3100
+ "examples": [
3101
+ "Example with striving for excellence",
3102
+ "Another striving for excellence example"
3103
+ ],
3104
+ "replacements": [
3105
+ "Use specific language",
3106
+ "Be direct",
3107
+ "Provide concrete details"
3108
+ ],
3109
+ "context": "Quality intent",
3110
+ "frequency": "common",
3111
+ "domains": [
3112
+ "technical",
3113
+ "executive",
3114
+ "academic"
3115
+ ]
3116
+ },
3117
+ {
3118
+ "id": "banned-phrase-137",
3119
+ "category": "banned-phrases",
3120
+ "subcategory": "performative-language",
3121
+ "pattern": "driving innovation",
3122
+ "severity": "high",
3123
+ "confidence": 0.8636744566165909,
3124
+ "examples": [
3125
+ "Example with driving innovation",
3126
+ "Another driving innovation example"
3127
+ ],
3128
+ "replacements": [
3129
+ "Use specific language",
3130
+ "Be direct",
3131
+ "Provide concrete details"
3132
+ ],
3133
+ "context": "Innovation intent",
3134
+ "frequency": "common",
3135
+ "domains": [
3136
+ "technical",
3137
+ "executive",
3138
+ "academic"
3139
+ ]
3140
+ },
3141
+ {
3142
+ "id": "banned-phrase-138",
3143
+ "category": "banned-phrases",
3144
+ "subcategory": "performative-language",
3145
+ "pattern": "building towards",
3146
+ "severity": "high",
3147
+ "confidence": 0.8790917200157237,
3148
+ "examples": [
3149
+ "Example with building towards",
3150
+ "Another building towards example"
3151
+ ],
3152
+ "replacements": [
3153
+ "Use specific language",
3154
+ "Be direct",
3155
+ "Provide concrete details"
3156
+ ],
3157
+ "context": "Construction",
3158
+ "frequency": "common",
3159
+ "domains": [
3160
+ "technical",
3161
+ "executive",
3162
+ "academic"
3163
+ ]
3164
+ },
3165
+ {
3166
+ "id": "banned-phrase-139",
3167
+ "category": "banned-phrases",
3168
+ "subcategory": "performative-language",
3169
+ "pattern": "paving the way",
3170
+ "severity": "high",
3171
+ "confidence": 0.8203881821088673,
3172
+ "examples": [
3173
+ "Example with paving the way",
3174
+ "Another paving the way example"
3175
+ ],
3176
+ "replacements": [
3177
+ "Use specific language",
3178
+ "Be direct",
3179
+ "Provide concrete details"
3180
+ ],
3181
+ "context": "Path metaphor",
3182
+ "frequency": "common",
3183
+ "domains": [
3184
+ "technical",
3185
+ "executive",
3186
+ "academic"
3187
+ ]
3188
+ },
3189
+ {
3190
+ "id": "banned-phrase-140",
3191
+ "category": "banned-phrases",
3192
+ "subcategory": "performative-language",
3193
+ "pattern": "leading the charge",
3194
+ "severity": "high",
3195
+ "confidence": 0.8869906936033318,
3196
+ "examples": [
3197
+ "Example with leading the charge",
3198
+ "Another leading the charge example"
3199
+ ],
3200
+ "replacements": [
3201
+ "Use specific language",
3202
+ "Be direct",
3203
+ "Provide concrete details"
3204
+ ],
3205
+ "context": "Leadership",
3206
+ "frequency": "common",
3207
+ "domains": [
3208
+ "technical",
3209
+ "executive",
3210
+ "academic"
3211
+ ]
3212
+ },
3213
+ {
3214
+ "id": "banned-phrase-141",
3215
+ "category": "banned-phrases",
3216
+ "subcategory": "research-claims",
3217
+ "pattern": "evidence suggests",
3218
+ "severity": "high",
3219
+ "confidence": 0.910001648380767,
3220
+ "examples": [
3221
+ "Example with evidence suggests",
3222
+ "Another evidence suggests example"
3223
+ ],
3224
+ "replacements": [
3225
+ "Use specific language",
3226
+ "Be direct",
3227
+ "Provide concrete details"
3228
+ ],
3229
+ "context": "Vague evidence",
3230
+ "frequency": "common",
3231
+ "domains": [
3232
+ "technical",
3233
+ "executive",
3234
+ "academic"
3235
+ ]
3236
+ },
3237
+ {
3238
+ "id": "banned-phrase-142",
3239
+ "category": "banned-phrases",
3240
+ "subcategory": "research-claims",
3241
+ "pattern": "data indicates",
3242
+ "severity": "high",
3243
+ "confidence": 0.908290569607859,
3244
+ "examples": [
3245
+ "Example with data indicates",
3246
+ "Another data indicates example"
3247
+ ],
3248
+ "replacements": [
3249
+ "Use specific language",
3250
+ "Be direct",
3251
+ "Provide concrete details"
3252
+ ],
3253
+ "context": "Vague data",
3254
+ "frequency": "common",
3255
+ "domains": [
3256
+ "technical",
3257
+ "executive",
3258
+ "academic"
3259
+ ]
3260
+ },
3261
+ {
3262
+ "id": "banned-phrase-143",
3263
+ "category": "banned-phrases",
3264
+ "subcategory": "research-claims",
3265
+ "pattern": "findings reveal",
3266
+ "severity": "high",
3267
+ "confidence": 0.8251087873508179,
3268
+ "examples": [
3269
+ "Example with findings reveal",
3270
+ "Another findings reveal example"
3271
+ ],
3272
+ "replacements": [
3273
+ "Use specific language",
3274
+ "Be direct",
3275
+ "Provide concrete details"
3276
+ ],
3277
+ "context": "Vague findings",
3278
+ "frequency": "common",
3279
+ "domains": [
3280
+ "technical",
3281
+ "executive",
3282
+ "academic"
3283
+ ]
3284
+ },
3285
+ {
3286
+ "id": "banned-phrase-144",
3287
+ "category": "banned-phrases",
3288
+ "subcategory": "research-claims",
3289
+ "pattern": "analysis shows",
3290
+ "severity": "high",
3291
+ "confidence": 0.9370053318220513,
3292
+ "examples": [
3293
+ "Example with analysis shows",
3294
+ "Another analysis shows example"
3295
+ ],
3296
+ "replacements": [
3297
+ "Use specific language",
3298
+ "Be direct",
3299
+ "Provide concrete details"
3300
+ ],
3301
+ "context": "Vague analysis",
3302
+ "frequency": "common",
3303
+ "domains": [
3304
+ "technical",
3305
+ "executive",
3306
+ "academic"
3307
+ ]
3308
+ },
3309
+ {
3310
+ "id": "banned-phrase-145",
3311
+ "category": "banned-phrases",
3312
+ "subcategory": "research-claims",
3313
+ "pattern": "reports suggest",
3314
+ "severity": "high",
3315
+ "confidence": 0.8777161886681956,
3316
+ "examples": [
3317
+ "Example with reports suggest",
3318
+ "Another reports suggest example"
3319
+ ],
3320
+ "replacements": [
3321
+ "Use specific language",
3322
+ "Be direct",
3323
+ "Provide concrete details"
3324
+ ],
3325
+ "context": "Vague reports",
3326
+ "frequency": "common",
3327
+ "domains": [
3328
+ "technical",
3329
+ "executive",
3330
+ "academic"
3331
+ ]
3332
+ },
3333
+ {
3334
+ "id": "banned-phrase-146",
3335
+ "category": "banned-phrases",
3336
+ "subcategory": "research-claims",
3337
+ "pattern": "surveys indicate",
3338
+ "severity": "high",
3339
+ "confidence": 0.8216159275904266,
3340
+ "examples": [
3341
+ "Example with surveys indicate",
3342
+ "Another surveys indicate example"
3343
+ ],
3344
+ "replacements": [
3345
+ "Use specific language",
3346
+ "Be direct",
3347
+ "Provide concrete details"
3348
+ ],
3349
+ "context": "Vague surveys",
3350
+ "frequency": "common",
3351
+ "domains": [
3352
+ "technical",
3353
+ "executive",
3354
+ "academic"
3355
+ ]
3356
+ },
3357
+ {
3358
+ "id": "banned-phrase-147",
3359
+ "category": "banned-phrases",
3360
+ "subcategory": "research-claims",
3361
+ "pattern": "metrics demonstrate",
3362
+ "severity": "high",
3363
+ "confidence": 0.9158239793439502,
3364
+ "examples": [
3365
+ "Example with metrics demonstrate",
3366
+ "Another metrics demonstrate example"
3367
+ ],
3368
+ "replacements": [
3369
+ "Use specific language",
3370
+ "Be direct",
3371
+ "Provide concrete details"
3372
+ ],
3373
+ "context": "Vague metrics",
3374
+ "frequency": "common",
3375
+ "domains": [
3376
+ "technical",
3377
+ "executive",
3378
+ "academic"
3379
+ ]
3380
+ },
3381
+ {
3382
+ "id": "banned-phrase-148",
3383
+ "category": "banned-phrases",
3384
+ "subcategory": "research-claims",
3385
+ "pattern": "statistics show",
3386
+ "severity": "high",
3387
+ "confidence": 0.8371858930852321,
3388
+ "examples": [
3389
+ "Example with statistics show",
3390
+ "Another statistics show example"
3391
+ ],
3392
+ "replacements": [
3393
+ "Use specific language",
3394
+ "Be direct",
3395
+ "Provide concrete details"
3396
+ ],
3397
+ "context": "Vague statistics",
3398
+ "frequency": "common",
3399
+ "domains": [
3400
+ "technical",
3401
+ "executive",
3402
+ "academic"
3403
+ ]
3404
+ },
3405
+ {
3406
+ "id": "banned-phrase-149",
3407
+ "category": "banned-phrases",
3408
+ "subcategory": "research-claims",
3409
+ "pattern": "trends indicate",
3410
+ "severity": "high",
3411
+ "confidence": 0.9011159599491593,
3412
+ "examples": [
3413
+ "Example with trends indicate",
3414
+ "Another trends indicate example"
3415
+ ],
3416
+ "replacements": [
3417
+ "Use specific language",
3418
+ "Be direct",
3419
+ "Provide concrete details"
3420
+ ],
3421
+ "context": "Vague trends",
3422
+ "frequency": "common",
3423
+ "domains": [
3424
+ "technical",
3425
+ "executive",
3426
+ "academic"
3427
+ ]
3428
+ },
3429
+ {
3430
+ "id": "banned-phrase-150",
3431
+ "category": "banned-phrases",
3432
+ "subcategory": "research-claims",
3433
+ "pattern": "observations suggest",
3434
+ "severity": "high",
3435
+ "confidence": 0.9380645895567457,
3436
+ "examples": [
3437
+ "Example with observations suggest",
3438
+ "Another observations suggest example"
3439
+ ],
3440
+ "replacements": [
3441
+ "Use specific language",
3442
+ "Be direct",
3443
+ "Provide concrete details"
3444
+ ],
3445
+ "context": "Vague observations",
3446
+ "frequency": "common",
3447
+ "domains": [
3448
+ "technical",
3449
+ "executive",
3450
+ "academic"
3451
+ ]
3452
+ },
3453
+ {
3454
+ "id": "banned-phrase-151",
3455
+ "category": "banned-phrases",
3456
+ "subcategory": "corporate-speak",
3457
+ "pattern": "competitive advantage",
3458
+ "severity": "high",
3459
+ "confidence": 0.873271320358604,
3460
+ "examples": [
3461
+ "Example with competitive advantage",
3462
+ "Another competitive advantage example"
3463
+ ],
3464
+ "replacements": [
3465
+ "Use specific language",
3466
+ "Be direct",
3467
+ "Provide concrete details"
3468
+ ],
3469
+ "context": "Strategy speak",
3470
+ "frequency": "common",
3471
+ "domains": [
3472
+ "technical",
3473
+ "executive",
3474
+ "academic"
3475
+ ]
3476
+ },
3477
+ {
3478
+ "id": "banned-phrase-152",
3479
+ "category": "banned-phrases",
3480
+ "subcategory": "corporate-speak",
3481
+ "pattern": "value proposition",
3482
+ "severity": "high",
3483
+ "confidence": 0.8954284227761402,
3484
+ "examples": [
3485
+ "Example with value proposition",
3486
+ "Another value proposition example"
3487
+ ],
3488
+ "replacements": [
3489
+ "Use specific language",
3490
+ "Be direct",
3491
+ "Provide concrete details"
3492
+ ],
3493
+ "context": "Business speak",
3494
+ "frequency": "common",
3495
+ "domains": [
3496
+ "technical",
3497
+ "executive",
3498
+ "academic"
3499
+ ]
3500
+ },
3501
+ {
3502
+ "id": "banned-phrase-153",
3503
+ "category": "banned-phrases",
3504
+ "subcategory": "corporate-speak",
3505
+ "pattern": "core competency",
3506
+ "severity": "high",
3507
+ "confidence": 0.9107653329282397,
3508
+ "examples": [
3509
+ "Example with core competency",
3510
+ "Another core competency example"
3511
+ ],
3512
+ "replacements": [
3513
+ "Use specific language",
3514
+ "Be direct",
3515
+ "Provide concrete details"
3516
+ ],
3517
+ "context": "Capability speak",
3518
+ "frequency": "common",
3519
+ "domains": [
3520
+ "technical",
3521
+ "executive",
3522
+ "academic"
3523
+ ]
3524
+ },
3525
+ {
3526
+ "id": "banned-phrase-154",
3527
+ "category": "banned-phrases",
3528
+ "subcategory": "corporate-speak",
3529
+ "pattern": "best practice",
3530
+ "severity": "high",
3531
+ "confidence": 0.8091002356481247,
3532
+ "examples": [
3533
+ "Example with best practice",
3534
+ "Another best practice example"
3535
+ ],
3536
+ "replacements": [
3537
+ "Use specific language",
3538
+ "Be direct",
3539
+ "Provide concrete details"
3540
+ ],
3541
+ "context": "Standard speak",
3542
+ "frequency": "common",
3543
+ "domains": [
3544
+ "technical",
3545
+ "executive",
3546
+ "academic"
3547
+ ]
3548
+ },
3549
+ {
3550
+ "id": "banned-phrase-155",
3551
+ "category": "banned-phrases",
3552
+ "subcategory": "corporate-speak",
3553
+ "pattern": "thought leader",
3554
+ "severity": "high",
3555
+ "confidence": 0.8078232660779728,
3556
+ "examples": [
3557
+ "Example with thought leader",
3558
+ "Another thought leader example"
3559
+ ],
3560
+ "replacements": [
3561
+ "Use specific language",
3562
+ "Be direct",
3563
+ "Provide concrete details"
3564
+ ],
3565
+ "context": "Expert claim",
3566
+ "frequency": "common",
3567
+ "domains": [
3568
+ "technical",
3569
+ "executive",
3570
+ "academic"
3571
+ ]
3572
+ },
3573
+ {
3574
+ "id": "banned-phrase-156",
3575
+ "category": "banned-phrases",
3576
+ "subcategory": "corporate-speak",
3577
+ "pattern": "market leader",
3578
+ "severity": "high",
3579
+ "confidence": 0.8116792512033294,
3580
+ "examples": [
3581
+ "Example with market leader",
3582
+ "Another market leader example"
3583
+ ],
3584
+ "replacements": [
3585
+ "Use specific language",
3586
+ "Be direct",
3587
+ "Provide concrete details"
3588
+ ],
3589
+ "context": "Position claim",
3590
+ "frequency": "common",
3591
+ "domains": [
3592
+ "technical",
3593
+ "executive",
3594
+ "academic"
3595
+ ]
3596
+ },
3597
+ {
3598
+ "id": "banned-phrase-157",
3599
+ "category": "banned-phrases",
3600
+ "subcategory": "corporate-speak",
3601
+ "pattern": "industry pioneer",
3602
+ "severity": "high",
3603
+ "confidence": 0.9449064298982682,
3604
+ "examples": [
3605
+ "Example with industry pioneer",
3606
+ "Another industry pioneer example"
3607
+ ],
3608
+ "replacements": [
3609
+ "Use specific language",
3610
+ "Be direct",
3611
+ "Provide concrete details"
3612
+ ],
3613
+ "context": "First-mover claim",
3614
+ "frequency": "common",
3615
+ "domains": [
3616
+ "technical",
3617
+ "executive",
3618
+ "academic"
3619
+ ]
3620
+ },
3621
+ {
3622
+ "id": "banned-phrase-158",
3623
+ "category": "banned-phrases",
3624
+ "subcategory": "corporate-speak",
3625
+ "pattern": "trusted partner",
3626
+ "severity": "high",
3627
+ "confidence": 0.8153494237855111,
3628
+ "examples": [
3629
+ "Example with trusted partner",
3630
+ "Another trusted partner example"
3631
+ ],
3632
+ "replacements": [
3633
+ "Use specific language",
3634
+ "Be direct",
3635
+ "Provide concrete details"
3636
+ ],
3637
+ "context": "Relationship claim",
3638
+ "frequency": "common",
3639
+ "domains": [
3640
+ "technical",
3641
+ "executive",
3642
+ "academic"
3643
+ ]
3644
+ },
3645
+ {
3646
+ "id": "banned-phrase-159",
3647
+ "category": "banned-phrases",
3648
+ "subcategory": "corporate-speak",
3649
+ "pattern": "strategic imperative",
3650
+ "severity": "high",
3651
+ "confidence": 0.8754943387817601,
3652
+ "examples": [
3653
+ "Example with strategic imperative",
3654
+ "Another strategic imperative example"
3655
+ ],
3656
+ "replacements": [
3657
+ "Use specific language",
3658
+ "Be direct",
3659
+ "Provide concrete details"
3660
+ ],
3661
+ "context": "Necessity claim",
3662
+ "frequency": "common",
3663
+ "domains": [
3664
+ "technical",
3665
+ "executive",
3666
+ "academic"
3667
+ ]
3668
+ },
3669
+ {
3670
+ "id": "banned-phrase-160",
3671
+ "category": "banned-phrases",
3672
+ "subcategory": "corporate-speak",
3673
+ "pattern": "key differentiator",
3674
+ "severity": "high",
3675
+ "confidence": 0.8824325636698543,
3676
+ "examples": [
3677
+ "Example with key differentiator",
3678
+ "Another key differentiator example"
3679
+ ],
3680
+ "replacements": [
3681
+ "Use specific language",
3682
+ "Be direct",
3683
+ "Provide concrete details"
3684
+ ],
3685
+ "context": "Uniqueness claim",
3686
+ "frequency": "common",
3687
+ "domains": [
3688
+ "technical",
3689
+ "executive",
3690
+ "academic"
3691
+ ]
3692
+ },
3693
+ {
3694
+ "id": "banned-phrase-161",
3695
+ "category": "banned-phrases",
3696
+ "subcategory": "temporal-vagueness",
3697
+ "pattern": "going forward",
3698
+ "severity": "critical",
3699
+ "confidence": 0.8046789356171512,
3700
+ "examples": [
3701
+ "Example with going forward",
3702
+ "Another going forward example"
3703
+ ],
3704
+ "replacements": [
3705
+ "Use specific language",
3706
+ "Be direct",
3707
+ "Provide concrete details"
3708
+ ],
3709
+ "context": "Future reference",
3710
+ "frequency": "common",
3711
+ "domains": [
3712
+ "technical",
3713
+ "executive",
3714
+ "academic"
3715
+ ]
3716
+ },
3717
+ {
3718
+ "id": "banned-phrase-162",
3719
+ "category": "banned-phrases",
3720
+ "subcategory": "temporal-vagueness",
3721
+ "pattern": "moving forward",
3722
+ "severity": "critical",
3723
+ "confidence": 0.8429970936522929,
3724
+ "examples": [
3725
+ "Example with moving forward",
3726
+ "Another moving forward example"
3727
+ ],
3728
+ "replacements": [
3729
+ "Use specific language",
3730
+ "Be direct",
3731
+ "Provide concrete details"
3732
+ ],
3733
+ "context": "Future reference",
3734
+ "frequency": "common",
3735
+ "domains": [
3736
+ "technical",
3737
+ "executive",
3738
+ "academic"
3739
+ ]
3740
+ },
3741
+ {
3742
+ "id": "banned-phrase-163",
3743
+ "category": "banned-phrases",
3744
+ "subcategory": "temporal-vagueness",
3745
+ "pattern": "in the future",
3746
+ "severity": "critical",
3747
+ "confidence": 0.930432544278041,
3748
+ "examples": [
3749
+ "Example with in the future",
3750
+ "Another in the future example"
3751
+ ],
3752
+ "replacements": [
3753
+ "Use specific language",
3754
+ "Be direct",
3755
+ "Provide concrete details"
3756
+ ],
3757
+ "context": "Future reference",
3758
+ "frequency": "common",
3759
+ "domains": [
3760
+ "technical",
3761
+ "executive",
3762
+ "academic"
3763
+ ]
3764
+ },
3765
+ {
3766
+ "id": "banned-phrase-164",
3767
+ "category": "banned-phrases",
3768
+ "subcategory": "temporal-vagueness",
3769
+ "pattern": "in time",
3770
+ "severity": "critical",
3771
+ "confidence": 0.8779698146681796,
3772
+ "examples": [
3773
+ "Example with in time",
3774
+ "Another in time example"
3775
+ ],
3776
+ "replacements": [
3777
+ "Use specific language",
3778
+ "Be direct",
3779
+ "Provide concrete details"
3780
+ ],
3781
+ "context": "Eventually",
3782
+ "frequency": "common",
3783
+ "domains": [
3784
+ "technical",
3785
+ "executive",
3786
+ "academic"
3787
+ ]
3788
+ },
3789
+ {
3790
+ "id": "banned-phrase-165",
3791
+ "category": "banned-phrases",
3792
+ "subcategory": "temporal-vagueness",
3793
+ "pattern": "over time",
3794
+ "severity": "critical",
3795
+ "confidence": 0.8384285177416125,
3796
+ "examples": [
3797
+ "Example with over time",
3798
+ "Another over time example"
3799
+ ],
3800
+ "replacements": [
3801
+ "Use specific language",
3802
+ "Be direct",
3803
+ "Provide concrete details"
3804
+ ],
3805
+ "context": "Gradual change",
3806
+ "frequency": "common",
3807
+ "domains": [
3808
+ "technical",
3809
+ "executive",
3810
+ "academic"
3811
+ ]
3812
+ },
3813
+ {
3814
+ "id": "banned-phrase-166",
3815
+ "category": "banned-phrases",
3816
+ "subcategory": "temporal-vagueness",
3817
+ "pattern": "with time",
3818
+ "severity": "critical",
3819
+ "confidence": 0.8554235262979758,
3820
+ "examples": [
3821
+ "Example with with time",
3822
+ "Another with time example"
3823
+ ],
3824
+ "replacements": [
3825
+ "Use specific language",
3826
+ "Be direct",
3827
+ "Provide concrete details"
3828
+ ],
3829
+ "context": "Gradual change",
3830
+ "frequency": "common",
3831
+ "domains": [
3832
+ "technical",
3833
+ "executive",
3834
+ "academic"
3835
+ ]
3836
+ },
3837
+ {
3838
+ "id": "banned-phrase-167",
3839
+ "category": "banned-phrases",
3840
+ "subcategory": "temporal-vagueness",
3841
+ "pattern": "down the road",
3842
+ "severity": "critical",
3843
+ "confidence": 0.8216308397180606,
3844
+ "examples": [
3845
+ "Example with down the road",
3846
+ "Another down the road example"
3847
+ ],
3848
+ "replacements": [
3849
+ "Use specific language",
3850
+ "Be direct",
3851
+ "Provide concrete details"
3852
+ ],
3853
+ "context": "Future metaphor",
3854
+ "frequency": "common",
3855
+ "domains": [
3856
+ "technical",
3857
+ "executive",
3858
+ "academic"
3859
+ ]
3860
+ },
3861
+ {
3862
+ "id": "banned-phrase-168",
3863
+ "category": "banned-phrases",
3864
+ "subcategory": "temporal-vagueness",
3865
+ "pattern": "down the line",
3866
+ "severity": "critical",
3867
+ "confidence": 0.8418106181421088,
3868
+ "examples": [
3869
+ "Example with down the line",
3870
+ "Another down the line example"
3871
+ ],
3872
+ "replacements": [
3873
+ "Use specific language",
3874
+ "Be direct",
3875
+ "Provide concrete details"
3876
+ ],
3877
+ "context": "Future metaphor",
3878
+ "frequency": "common",
3879
+ "domains": [
3880
+ "technical",
3881
+ "executive",
3882
+ "academic"
3883
+ ]
3884
+ },
3885
+ {
3886
+ "id": "banned-phrase-169",
3887
+ "category": "banned-phrases",
3888
+ "subcategory": "temporal-vagueness",
3889
+ "pattern": "as we move forward",
3890
+ "severity": "critical",
3891
+ "confidence": 0.8607660892432689,
3892
+ "examples": [
3893
+ "Example with as we move forward",
3894
+ "Another as we move forward example"
3895
+ ],
3896
+ "replacements": [
3897
+ "Use specific language",
3898
+ "Be direct",
3899
+ "Provide concrete details"
3900
+ ],
3901
+ "context": "Progress reference",
3902
+ "frequency": "common",
3903
+ "domains": [
3904
+ "technical",
3905
+ "executive",
3906
+ "academic"
3907
+ ]
3908
+ },
3909
+ {
3910
+ "id": "banned-phrase-170",
3911
+ "category": "banned-phrases",
3912
+ "subcategory": "temporal-vagueness",
3913
+ "pattern": "as we progress",
3914
+ "severity": "critical",
3915
+ "confidence": 0.8330248432721264,
3916
+ "examples": [
3917
+ "Example with as we progress",
3918
+ "Another as we progress example"
3919
+ ],
3920
+ "replacements": [
3921
+ "Use specific language",
3922
+ "Be direct",
3923
+ "Provide concrete details"
3924
+ ],
3925
+ "context": "Progress reference",
3926
+ "frequency": "common",
3927
+ "domains": [
3928
+ "technical",
3929
+ "executive",
3930
+ "academic"
3931
+ ]
3932
+ },
3933
+ {
3934
+ "id": "banned-phrase-171",
3935
+ "category": "banned-phrases",
3936
+ "subcategory": "cliche-descriptions",
3937
+ "pattern": "at the forefront",
3938
+ "severity": "high",
3939
+ "confidence": 0.8549066247206353,
3940
+ "examples": [
3941
+ "Example with at the forefront",
3942
+ "Another at the forefront example"
3943
+ ],
3944
+ "replacements": [
3945
+ "Use specific language",
3946
+ "Be direct",
3947
+ "Provide concrete details"
3948
+ ],
3949
+ "context": "Leadership cliche",
3950
+ "frequency": "common",
3951
+ "domains": [
3952
+ "technical",
3953
+ "executive",
3954
+ "academic"
3955
+ ]
3956
+ },
3957
+ {
3958
+ "id": "banned-phrase-172",
3959
+ "category": "banned-phrases",
3960
+ "subcategory": "cliche-descriptions",
3961
+ "pattern": "on the cutting edge",
3962
+ "severity": "high",
3963
+ "confidence": 0.8115471862975727,
3964
+ "examples": [
3965
+ "Example with on the cutting edge",
3966
+ "Another on the cutting edge example"
3967
+ ],
3968
+ "replacements": [
3969
+ "Use specific language",
3970
+ "Be direct",
3971
+ "Provide concrete details"
3972
+ ],
3973
+ "context": "Innovation cliche",
3974
+ "frequency": "common",
3975
+ "domains": [
3976
+ "technical",
3977
+ "executive",
3978
+ "academic"
3979
+ ]
3980
+ },
3981
+ {
3982
+ "id": "banned-phrase-173",
3983
+ "category": "banned-phrases",
3984
+ "subcategory": "cliche-descriptions",
3985
+ "pattern": "ahead of the curve",
3986
+ "severity": "high",
3987
+ "confidence": 0.8691576341187062,
3988
+ "examples": [
3989
+ "Example with ahead of the curve",
3990
+ "Another ahead of the curve example"
3991
+ ],
3992
+ "replacements": [
3993
+ "Use specific language",
3994
+ "Be direct",
3995
+ "Provide concrete details"
3996
+ ],
3997
+ "context": "Progress cliche",
3998
+ "frequency": "common",
3999
+ "domains": [
4000
+ "technical",
4001
+ "executive",
4002
+ "academic"
4003
+ ]
4004
+ },
4005
+ {
4006
+ "id": "banned-phrase-174",
4007
+ "category": "banned-phrases",
4008
+ "subcategory": "cliche-descriptions",
4009
+ "pattern": "behind the scenes",
4010
+ "severity": "high",
4011
+ "confidence": 0.8738608856499992,
4012
+ "examples": [
4013
+ "Example with behind the scenes",
4014
+ "Another behind the scenes example"
4015
+ ],
4016
+ "replacements": [
4017
+ "Use specific language",
4018
+ "Be direct",
4019
+ "Provide concrete details"
4020
+ ],
4021
+ "context": "Hidden work",
4022
+ "frequency": "common",
4023
+ "domains": [
4024
+ "technical",
4025
+ "executive",
4026
+ "academic"
4027
+ ]
4028
+ },
4029
+ {
4030
+ "id": "banned-phrase-175",
4031
+ "category": "banned-phrases",
4032
+ "subcategory": "cliche-descriptions",
4033
+ "pattern": "under the hood",
4034
+ "severity": "high",
4035
+ "confidence": 0.8477652135459155,
4036
+ "examples": [
4037
+ "Example with under the hood",
4038
+ "Another under the hood example"
4039
+ ],
4040
+ "replacements": [
4041
+ "Use specific language",
4042
+ "Be direct",
4043
+ "Provide concrete details"
4044
+ ],
4045
+ "context": "Internal work",
4046
+ "frequency": "common",
4047
+ "domains": [
4048
+ "technical",
4049
+ "executive",
4050
+ "academic"
4051
+ ]
4052
+ },
4053
+ {
4054
+ "id": "banned-phrase-176",
4055
+ "category": "banned-phrases",
4056
+ "subcategory": "cliche-descriptions",
4057
+ "pattern": "in the trenches",
4058
+ "severity": "high",
4059
+ "confidence": 0.8593203119969386,
4060
+ "examples": [
4061
+ "Example with in the trenches",
4062
+ "Another in the trenches example"
4063
+ ],
4064
+ "replacements": [
4065
+ "Use specific language",
4066
+ "Be direct",
4067
+ "Provide concrete details"
4068
+ ],
4069
+ "context": "Hard work",
4070
+ "frequency": "common",
4071
+ "domains": [
4072
+ "technical",
4073
+ "executive",
4074
+ "academic"
4075
+ ]
4076
+ },
4077
+ {
4078
+ "id": "banned-phrase-177",
4079
+ "category": "banned-phrases",
4080
+ "subcategory": "cliche-descriptions",
4081
+ "pattern": "boots on the ground",
4082
+ "severity": "high",
4083
+ "confidence": 0.9344546464567611,
4084
+ "examples": [
4085
+ "Example with boots on the ground",
4086
+ "Another boots on the ground example"
4087
+ ],
4088
+ "replacements": [
4089
+ "Use specific language",
4090
+ "Be direct",
4091
+ "Provide concrete details"
4092
+ ],
4093
+ "context": "Presence claim",
4094
+ "frequency": "common",
4095
+ "domains": [
4096
+ "technical",
4097
+ "executive",
4098
+ "academic"
4099
+ ]
4100
+ },
4101
+ {
4102
+ "id": "banned-phrase-178",
4103
+ "category": "banned-phrases",
4104
+ "subcategory": "cliche-descriptions",
4105
+ "pattern": "hit the ground running",
4106
+ "severity": "high",
4107
+ "confidence": 0.9005183429305001,
4108
+ "examples": [
4109
+ "Example with hit the ground running",
4110
+ "Another hit the ground running example"
4111
+ ],
4112
+ "replacements": [
4113
+ "Use specific language",
4114
+ "Be direct",
4115
+ "Provide concrete details"
4116
+ ],
4117
+ "context": "Fast start",
4118
+ "frequency": "common",
4119
+ "domains": [
4120
+ "technical",
4121
+ "executive",
4122
+ "academic"
4123
+ ]
4124
+ },
4125
+ {
4126
+ "id": "banned-phrase-179",
4127
+ "category": "banned-phrases",
4128
+ "subcategory": "cliche-descriptions",
4129
+ "pattern": "raise the bar",
4130
+ "severity": "high",
4131
+ "confidence": 0.9362759706379001,
4132
+ "examples": [
4133
+ "Example with raise the bar",
4134
+ "Another raise the bar example"
4135
+ ],
4136
+ "replacements": [
4137
+ "Use specific language",
4138
+ "Be direct",
4139
+ "Provide concrete details"
4140
+ ],
4141
+ "context": "Standard raising",
4142
+ "frequency": "common",
4143
+ "domains": [
4144
+ "technical",
4145
+ "executive",
4146
+ "academic"
4147
+ ]
4148
+ },
4149
+ {
4150
+ "id": "banned-phrase-180",
4151
+ "category": "banned-phrases",
4152
+ "subcategory": "cliche-descriptions",
4153
+ "pattern": "push the envelope",
4154
+ "severity": "high",
4155
+ "confidence": 0.880192216562058,
4156
+ "examples": [
4157
+ "Example with push the envelope",
4158
+ "Another push the envelope example"
4159
+ ],
4160
+ "replacements": [
4161
+ "Use specific language",
4162
+ "Be direct",
4163
+ "Provide concrete details"
4164
+ ],
4165
+ "context": "Boundary pushing",
4166
+ "frequency": "common",
4167
+ "domains": [
4168
+ "technical",
4169
+ "executive",
4170
+ "academic"
4171
+ ]
4172
+ },
4173
+ {
4174
+ "id": "banned-phrase-181",
4175
+ "category": "banned-phrases",
4176
+ "subcategory": "filler-phrases",
4177
+ "pattern": "with that being said",
4178
+ "severity": "high",
4179
+ "confidence": 0.8774486224435838,
4180
+ "examples": [
4181
+ "Example with with that being said",
4182
+ "Another with that being said example"
4183
+ ],
4184
+ "replacements": [
4185
+ "Use specific language",
4186
+ "Be direct",
4187
+ "Provide concrete details"
4188
+ ],
4189
+ "context": "Wordy transition",
4190
+ "frequency": "common",
4191
+ "domains": [
4192
+ "technical",
4193
+ "executive",
4194
+ "academic"
4195
+ ]
4196
+ },
4197
+ {
4198
+ "id": "banned-phrase-182",
4199
+ "category": "banned-phrases",
4200
+ "subcategory": "filler-phrases",
4201
+ "pattern": "having said that",
4202
+ "severity": "high",
4203
+ "confidence": 0.9270484238032897,
4204
+ "examples": [
4205
+ "Example with having said that",
4206
+ "Another having said that example"
4207
+ ],
4208
+ "replacements": [
4209
+ "Use specific language",
4210
+ "Be direct",
4211
+ "Provide concrete details"
4212
+ ],
4213
+ "context": "Wordy transition",
4214
+ "frequency": "common",
4215
+ "domains": [
4216
+ "technical",
4217
+ "executive",
4218
+ "academic"
4219
+ ]
4220
+ },
4221
+ {
4222
+ "id": "banned-phrase-183",
4223
+ "category": "banned-phrases",
4224
+ "subcategory": "filler-phrases",
4225
+ "pattern": "that being said",
4226
+ "severity": "high",
4227
+ "confidence": 0.8770294286002627,
4228
+ "examples": [
4229
+ "Example with that being said",
4230
+ "Another that being said example"
4231
+ ],
4232
+ "replacements": [
4233
+ "Use specific language",
4234
+ "Be direct",
4235
+ "Provide concrete details"
4236
+ ],
4237
+ "context": "Wordy transition",
4238
+ "frequency": "common",
4239
+ "domains": [
4240
+ "technical",
4241
+ "executive",
4242
+ "academic"
4243
+ ]
4244
+ },
4245
+ {
4246
+ "id": "banned-phrase-184",
4247
+ "category": "banned-phrases",
4248
+ "subcategory": "filler-phrases",
4249
+ "pattern": "on that note",
4250
+ "severity": "high",
4251
+ "confidence": 0.9237928068896077,
4252
+ "examples": [
4253
+ "Example with on that note",
4254
+ "Another on that note example"
4255
+ ],
4256
+ "replacements": [
4257
+ "Use specific language",
4258
+ "Be direct",
4259
+ "Provide concrete details"
4260
+ ],
4261
+ "context": "Transition filler",
4262
+ "frequency": "common",
4263
+ "domains": [
4264
+ "technical",
4265
+ "executive",
4266
+ "academic"
4267
+ ]
4268
+ },
4269
+ {
4270
+ "id": "banned-phrase-185",
4271
+ "category": "banned-phrases",
4272
+ "subcategory": "filler-phrases",
4273
+ "pattern": "in this regard",
4274
+ "severity": "high",
4275
+ "confidence": 0.8982631021763141,
4276
+ "examples": [
4277
+ "Example with in this regard",
4278
+ "Another in this regard example"
4279
+ ],
4280
+ "replacements": [
4281
+ "Use specific language",
4282
+ "Be direct",
4283
+ "Provide concrete details"
4284
+ ],
4285
+ "context": "Reference filler",
4286
+ "frequency": "common",
4287
+ "domains": [
4288
+ "technical",
4289
+ "executive",
4290
+ "academic"
4291
+ ]
4292
+ },
4293
+ {
4294
+ "id": "banned-phrase-186",
4295
+ "category": "banned-phrases",
4296
+ "subcategory": "filler-phrases",
4297
+ "pattern": "in this respect",
4298
+ "severity": "high",
4299
+ "confidence": 0.905867071473792,
4300
+ "examples": [
4301
+ "Example with in this respect",
4302
+ "Another in this respect example"
4303
+ ],
4304
+ "replacements": [
4305
+ "Use specific language",
4306
+ "Be direct",
4307
+ "Provide concrete details"
4308
+ ],
4309
+ "context": "Reference filler",
4310
+ "frequency": "common",
4311
+ "domains": [
4312
+ "technical",
4313
+ "executive",
4314
+ "academic"
4315
+ ]
4316
+ },
4317
+ {
4318
+ "id": "banned-phrase-187",
4319
+ "category": "banned-phrases",
4320
+ "subcategory": "filler-phrases",
4321
+ "pattern": "in this context",
4322
+ "severity": "high",
4323
+ "confidence": 0.8201342915129463,
4324
+ "examples": [
4325
+ "Example with in this context",
4326
+ "Another in this context example"
4327
+ ],
4328
+ "replacements": [
4329
+ "Use specific language",
4330
+ "Be direct",
4331
+ "Provide concrete details"
4332
+ ],
4333
+ "context": "Context reference",
4334
+ "frequency": "common",
4335
+ "domains": [
4336
+ "technical",
4337
+ "executive",
4338
+ "academic"
4339
+ ]
4340
+ },
4341
+ {
4342
+ "id": "banned-phrase-188",
4343
+ "category": "banned-phrases",
4344
+ "subcategory": "filler-phrases",
4345
+ "pattern": "in this case",
4346
+ "severity": "high",
4347
+ "confidence": 0.8026736719337318,
4348
+ "examples": [
4349
+ "Example with in this case",
4350
+ "Another in this case example"
4351
+ ],
4352
+ "replacements": [
4353
+ "Use specific language",
4354
+ "Be direct",
4355
+ "Provide concrete details"
4356
+ ],
4357
+ "context": "Case reference",
4358
+ "frequency": "common",
4359
+ "domains": [
4360
+ "technical",
4361
+ "executive",
4362
+ "academic"
4363
+ ]
4364
+ },
4365
+ {
4366
+ "id": "banned-phrase-189",
4367
+ "category": "banned-phrases",
4368
+ "subcategory": "filler-phrases",
4369
+ "pattern": "in this instance",
4370
+ "severity": "high",
4371
+ "confidence": 0.8439696209813707,
4372
+ "examples": [
4373
+ "Example with in this instance",
4374
+ "Another in this instance example"
4375
+ ],
4376
+ "replacements": [
4377
+ "Use specific language",
4378
+ "Be direct",
4379
+ "Provide concrete details"
4380
+ ],
4381
+ "context": "Instance reference",
4382
+ "frequency": "common",
4383
+ "domains": [
4384
+ "technical",
4385
+ "executive",
4386
+ "academic"
4387
+ ]
4388
+ },
4389
+ {
4390
+ "id": "banned-phrase-190",
4391
+ "category": "banned-phrases",
4392
+ "subcategory": "filler-phrases",
4393
+ "pattern": "in this scenario",
4394
+ "severity": "high",
4395
+ "confidence": 0.8071755039259016,
4396
+ "examples": [
4397
+ "Example with in this scenario",
4398
+ "Another in this scenario example"
4399
+ ],
4400
+ "replacements": [
4401
+ "Use specific language",
4402
+ "Be direct",
4403
+ "Provide concrete details"
4404
+ ],
4405
+ "context": "Scenario reference",
4406
+ "frequency": "common",
4407
+ "domains": [
4408
+ "technical",
4409
+ "executive",
4410
+ "academic"
4411
+ ]
4412
+ }
4413
+ ]