create-apppaaaul 2.0.44 → 2.0.47

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 (218) hide show
  1. package/dist/templates/nextjs-ts-clean/project/.agents/skills/api-design-principles/SKILL.md +528 -0
  2. package/dist/templates/nextjs-ts-clean/project/.agents/skills/api-design-principles/assets/api-design-checklist.md +155 -0
  3. package/dist/templates/nextjs-ts-clean/project/.agents/skills/api-design-principles/assets/rest-api-template.py +182 -0
  4. package/dist/templates/nextjs-ts-clean/project/.agents/skills/api-design-principles/references/graphql-schema-design.md +583 -0
  5. package/dist/templates/nextjs-ts-clean/project/.agents/skills/api-design-principles/references/rest-best-practices.md +408 -0
  6. package/dist/templates/nextjs-ts-clean/project/.agents/skills/better-auth-best-practices/SKILL.md +166 -0
  7. package/dist/templates/nextjs-ts-clean/project/.agents/skills/brainstorming/SKILL.md +96 -0
  8. package/dist/templates/nextjs-ts-clean/project/.agents/skills/changelog-generator/SKILL.md +104 -0
  9. package/dist/templates/nextjs-ts-clean/project/.agents/skills/error-handling-patterns/SKILL.md +641 -0
  10. package/dist/templates/nextjs-ts-clean/project/.agents/skills/interface-design/SKILL.md +391 -0
  11. package/dist/templates/nextjs-ts-clean/project/.agents/skills/interface-design/references/critique.md +67 -0
  12. package/dist/templates/nextjs-ts-clean/project/.agents/skills/interface-design/references/example.md +86 -0
  13. package/dist/templates/nextjs-ts-clean/project/.agents/skills/interface-design/references/principles.md +235 -0
  14. package/dist/templates/nextjs-ts-clean/project/.agents/skills/interface-design/references/validation.md +48 -0
  15. package/dist/templates/nextjs-ts-clean/project/.agents/skills/next-best-practices/SKILL.md +153 -0
  16. package/dist/templates/nextjs-ts-clean/project/.agents/skills/next-best-practices/async-patterns.md +87 -0
  17. package/dist/templates/nextjs-ts-clean/project/.agents/skills/next-best-practices/bundling.md +180 -0
  18. package/dist/templates/nextjs-ts-clean/project/.agents/skills/next-best-practices/data-patterns.md +297 -0
  19. package/dist/templates/nextjs-ts-clean/project/.agents/skills/next-best-practices/debug-tricks.md +105 -0
  20. package/dist/templates/nextjs-ts-clean/project/.agents/skills/next-best-practices/directives.md +73 -0
  21. package/dist/templates/nextjs-ts-clean/project/.agents/skills/next-best-practices/error-handling.md +227 -0
  22. package/dist/templates/nextjs-ts-clean/project/.agents/skills/next-best-practices/file-conventions.md +140 -0
  23. package/dist/templates/nextjs-ts-clean/project/.agents/skills/next-best-practices/font.md +245 -0
  24. package/dist/templates/nextjs-ts-clean/project/.agents/skills/next-best-practices/functions.md +108 -0
  25. package/dist/templates/nextjs-ts-clean/project/.agents/skills/next-best-practices/hydration-error.md +91 -0
  26. package/dist/templates/nextjs-ts-clean/project/.agents/skills/next-best-practices/image.md +173 -0
  27. package/dist/templates/nextjs-ts-clean/project/.agents/skills/next-best-practices/metadata.md +301 -0
  28. package/dist/templates/nextjs-ts-clean/project/.agents/skills/next-best-practices/parallel-routes.md +287 -0
  29. package/dist/templates/nextjs-ts-clean/project/.agents/skills/next-best-practices/route-handlers.md +146 -0
  30. package/dist/templates/nextjs-ts-clean/project/.agents/skills/next-best-practices/rsc-boundaries.md +159 -0
  31. package/dist/templates/nextjs-ts-clean/project/.agents/skills/next-best-practices/runtime-selection.md +39 -0
  32. package/dist/templates/nextjs-ts-clean/project/.agents/skills/next-best-practices/scripts.md +141 -0
  33. package/dist/templates/nextjs-ts-clean/project/.agents/skills/next-best-practices/self-hosting.md +371 -0
  34. package/dist/templates/nextjs-ts-clean/project/.agents/skills/next-best-practices/suspense-boundaries.md +67 -0
  35. package/dist/templates/nextjs-ts-clean/project/.agents/skills/postgresql-table-design/SKILL.md +202 -0
  36. package/dist/templates/nextjs-ts-clean/project/.agents/skills/prompt-engineering-patterns/SKILL.md +480 -0
  37. package/dist/templates/nextjs-ts-clean/project/.agents/skills/prompt-engineering-patterns/assets/few-shot-examples.json +106 -0
  38. package/dist/templates/nextjs-ts-clean/project/.agents/skills/prompt-engineering-patterns/assets/prompt-template-library.md +264 -0
  39. package/dist/templates/nextjs-ts-clean/project/.agents/skills/prompt-engineering-patterns/references/chain-of-thought.md +412 -0
  40. package/dist/templates/nextjs-ts-clean/project/.agents/skills/prompt-engineering-patterns/references/few-shot-learning.md +386 -0
  41. package/dist/templates/nextjs-ts-clean/project/.agents/skills/prompt-engineering-patterns/references/prompt-optimization.md +428 -0
  42. package/dist/templates/nextjs-ts-clean/project/.agents/skills/prompt-engineering-patterns/references/prompt-templates.md +484 -0
  43. package/dist/templates/nextjs-ts-clean/project/.agents/skills/prompt-engineering-patterns/references/system-prompts.md +195 -0
  44. package/dist/templates/nextjs-ts-clean/project/.agents/skills/prompt-engineering-patterns/scripts/optimize-prompt.py +279 -0
  45. package/dist/templates/nextjs-ts-clean/project/.agents/skills/seo-audit/SKILL.md +410 -0
  46. package/dist/templates/nextjs-ts-clean/project/.agents/skills/seo-audit/references/aeo-geo-patterns.md +285 -0
  47. package/dist/templates/nextjs-ts-clean/project/.agents/skills/seo-audit/references/ai-writing-detection.md +200 -0
  48. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/AGENTS.md +2934 -0
  49. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/SKILL.md +136 -0
  50. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/advanced-event-handler-refs.md +55 -0
  51. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/advanced-init-once.md +42 -0
  52. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/advanced-use-latest.md +39 -0
  53. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/async-api-routes.md +38 -0
  54. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/async-defer-await.md +80 -0
  55. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/async-dependencies.md +51 -0
  56. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/async-parallel.md +28 -0
  57. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/async-suspense-boundaries.md +99 -0
  58. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/bundle-barrel-imports.md +59 -0
  59. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/bundle-conditional.md +31 -0
  60. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/bundle-defer-third-party.md +49 -0
  61. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/bundle-dynamic-imports.md +35 -0
  62. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/bundle-preload.md +50 -0
  63. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/client-event-listeners.md +74 -0
  64. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/client-localstorage-schema.md +71 -0
  65. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/client-passive-event-listeners.md +48 -0
  66. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/client-swr-dedup.md +56 -0
  67. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/js-batch-dom-css.md +107 -0
  68. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/js-cache-function-results.md +80 -0
  69. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/js-cache-property-access.md +28 -0
  70. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/js-cache-storage.md +70 -0
  71. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/js-combine-iterations.md +32 -0
  72. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/js-early-exit.md +50 -0
  73. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/js-hoist-regexp.md +45 -0
  74. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/js-index-maps.md +37 -0
  75. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/js-length-check-first.md +49 -0
  76. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/js-min-max-loop.md +82 -0
  77. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/js-set-map-lookups.md +24 -0
  78. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/js-tosorted-immutable.md +57 -0
  79. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/rendering-activity.md +26 -0
  80. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/rendering-animate-svg-wrapper.md +47 -0
  81. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/rendering-conditional-render.md +40 -0
  82. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/rendering-content-visibility.md +38 -0
  83. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/rendering-hoist-jsx.md +46 -0
  84. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/rendering-hydration-no-flicker.md +82 -0
  85. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/rendering-hydration-suppress-warning.md +30 -0
  86. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/rendering-svg-precision.md +28 -0
  87. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/rendering-usetransition-loading.md +75 -0
  88. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/rerender-defer-reads.md +39 -0
  89. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/rerender-dependencies.md +45 -0
  90. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/rerender-derived-state-no-effect.md +40 -0
  91. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/rerender-derived-state.md +29 -0
  92. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/rerender-functional-setstate.md +74 -0
  93. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/rerender-lazy-state-init.md +58 -0
  94. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/rerender-memo-with-default-value.md +38 -0
  95. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/rerender-memo.md +44 -0
  96. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/rerender-move-effect-to-event.md +45 -0
  97. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/rerender-simple-expression-in-memo.md +35 -0
  98. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/rerender-transitions.md +40 -0
  99. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/rerender-use-ref-transient-values.md +73 -0
  100. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/server-after-nonblocking.md +73 -0
  101. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/server-auth-actions.md +96 -0
  102. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/server-cache-lru.md +41 -0
  103. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/server-cache-react.md +76 -0
  104. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/server-dedup-props.md +65 -0
  105. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/server-parallel-fetching.md +83 -0
  106. package/dist/templates/nextjs-ts-clean/project/.agents/skills/vercel-react-best-practices/rules/server-serialization.md +38 -0
  107. package/dist/templates/nextjs-ts-clean/project/eslint.config.mjs +6 -8
  108. package/dist/templates/nextjs-ts-clean/project/package.json +1 -1
  109. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/api-design-principles/SKILL.md +528 -0
  110. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/api-design-principles/assets/api-design-checklist.md +155 -0
  111. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/api-design-principles/assets/rest-api-template.py +182 -0
  112. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/api-design-principles/references/graphql-schema-design.md +583 -0
  113. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/api-design-principles/references/rest-best-practices.md +408 -0
  114. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/better-auth-best-practices/SKILL.md +166 -0
  115. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/brainstorming/SKILL.md +96 -0
  116. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/changelog-generator/SKILL.md +104 -0
  117. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/error-handling-patterns/SKILL.md +641 -0
  118. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/interface-design/SKILL.md +391 -0
  119. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/interface-design/references/critique.md +67 -0
  120. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/interface-design/references/example.md +86 -0
  121. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/interface-design/references/principles.md +235 -0
  122. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/interface-design/references/validation.md +48 -0
  123. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/next-best-practices/SKILL.md +153 -0
  124. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/next-best-practices/async-patterns.md +87 -0
  125. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/next-best-practices/bundling.md +180 -0
  126. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/next-best-practices/data-patterns.md +297 -0
  127. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/next-best-practices/debug-tricks.md +105 -0
  128. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/next-best-practices/directives.md +73 -0
  129. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/next-best-practices/error-handling.md +227 -0
  130. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/next-best-practices/file-conventions.md +140 -0
  131. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/next-best-practices/font.md +245 -0
  132. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/next-best-practices/functions.md +108 -0
  133. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/next-best-practices/hydration-error.md +91 -0
  134. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/next-best-practices/image.md +173 -0
  135. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/next-best-practices/metadata.md +301 -0
  136. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/next-best-practices/parallel-routes.md +287 -0
  137. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/next-best-practices/route-handlers.md +146 -0
  138. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/next-best-practices/rsc-boundaries.md +159 -0
  139. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/next-best-practices/runtime-selection.md +39 -0
  140. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/next-best-practices/scripts.md +141 -0
  141. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/next-best-practices/self-hosting.md +371 -0
  142. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/next-best-practices/suspense-boundaries.md +67 -0
  143. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/postgresql-table-design/SKILL.md +202 -0
  144. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/prompt-engineering-patterns/SKILL.md +480 -0
  145. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/prompt-engineering-patterns/assets/few-shot-examples.json +106 -0
  146. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/prompt-engineering-patterns/assets/prompt-template-library.md +264 -0
  147. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/prompt-engineering-patterns/references/chain-of-thought.md +412 -0
  148. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/prompt-engineering-patterns/references/few-shot-learning.md +386 -0
  149. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/prompt-engineering-patterns/references/prompt-optimization.md +428 -0
  150. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/prompt-engineering-patterns/references/prompt-templates.md +484 -0
  151. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/prompt-engineering-patterns/references/system-prompts.md +195 -0
  152. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/prompt-engineering-patterns/scripts/optimize-prompt.py +279 -0
  153. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/seo-audit/SKILL.md +410 -0
  154. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/seo-audit/references/aeo-geo-patterns.md +285 -0
  155. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/seo-audit/references/ai-writing-detection.md +200 -0
  156. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/AGENTS.md +2934 -0
  157. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/SKILL.md +136 -0
  158. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/advanced-event-handler-refs.md +55 -0
  159. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/advanced-init-once.md +42 -0
  160. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/advanced-use-latest.md +39 -0
  161. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/async-api-routes.md +38 -0
  162. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/async-defer-await.md +80 -0
  163. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/async-dependencies.md +51 -0
  164. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/async-parallel.md +28 -0
  165. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/async-suspense-boundaries.md +99 -0
  166. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/bundle-barrel-imports.md +59 -0
  167. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/bundle-conditional.md +31 -0
  168. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/bundle-defer-third-party.md +49 -0
  169. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/bundle-dynamic-imports.md +35 -0
  170. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/bundle-preload.md +50 -0
  171. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/client-event-listeners.md +74 -0
  172. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/client-localstorage-schema.md +71 -0
  173. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/client-passive-event-listeners.md +48 -0
  174. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/client-swr-dedup.md +56 -0
  175. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/js-batch-dom-css.md +107 -0
  176. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/js-cache-function-results.md +80 -0
  177. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/js-cache-property-access.md +28 -0
  178. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/js-cache-storage.md +70 -0
  179. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/js-combine-iterations.md +32 -0
  180. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/js-early-exit.md +50 -0
  181. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/js-hoist-regexp.md +45 -0
  182. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/js-index-maps.md +37 -0
  183. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/js-length-check-first.md +49 -0
  184. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/js-min-max-loop.md +82 -0
  185. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/js-set-map-lookups.md +24 -0
  186. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/js-tosorted-immutable.md +57 -0
  187. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/rendering-activity.md +26 -0
  188. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/rendering-animate-svg-wrapper.md +47 -0
  189. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/rendering-conditional-render.md +40 -0
  190. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/rendering-content-visibility.md +38 -0
  191. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/rendering-hoist-jsx.md +46 -0
  192. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/rendering-hydration-no-flicker.md +82 -0
  193. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/rendering-hydration-suppress-warning.md +30 -0
  194. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/rendering-svg-precision.md +28 -0
  195. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/rendering-usetransition-loading.md +75 -0
  196. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/rerender-defer-reads.md +39 -0
  197. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/rerender-dependencies.md +45 -0
  198. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/rerender-derived-state-no-effect.md +40 -0
  199. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/rerender-derived-state.md +29 -0
  200. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/rerender-functional-setstate.md +74 -0
  201. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/rerender-lazy-state-init.md +58 -0
  202. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/rerender-memo-with-default-value.md +38 -0
  203. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/rerender-memo.md +44 -0
  204. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/rerender-move-effect-to-event.md +45 -0
  205. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/rerender-simple-expression-in-memo.md +35 -0
  206. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/rerender-transitions.md +40 -0
  207. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/rerender-use-ref-transient-values.md +73 -0
  208. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/server-after-nonblocking.md +73 -0
  209. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/server-auth-actions.md +96 -0
  210. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/server-cache-lru.md +41 -0
  211. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/server-cache-react.md +76 -0
  212. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/server-dedup-props.md +65 -0
  213. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/server-parallel-fetching.md +83 -0
  214. package/dist/templates/nextjs-ts-landing-prisma/project/.agents/skills/vercel-react-best-practices/rules/server-serialization.md +38 -0
  215. package/dist/templates/nextjs-ts-landing-prisma/project/eslint.config.mjs +6 -8
  216. package/dist/templates/nextjs-ts-landing-prisma/project/package.json +2 -2
  217. package/dist/templates/nextjs-ts-landing-prisma/project/pnpm-lock.yaml +6 -18
  218. package/package.json +1 -1
@@ -0,0 +1,285 @@
1
+ # AEO and GEO Content Patterns
2
+
3
+ Reusable content block patterns optimized for answer engines and AI citation.
4
+
5
+ ---
6
+
7
+ ## Contents
8
+ - Answer Engine Optimization (AEO) Patterns (Definition Block, Step-by-Step Block, Comparison Table Block, Pros and Cons Block, FAQ Block, Listicle Block)
9
+ - Generative Engine Optimization (GEO) Patterns (Statistic Citation Block, Expert Quote Block, Authoritative Claim Block, Self-Contained Answer Block, Evidence Sandwich Block)
10
+ - Domain-Specific GEO Tactics (Technology Content, Health/Medical Content, Financial Content, Legal Content, Business/Marketing Content)
11
+ - Voice Search Optimization (Question Formats for Voice, Voice-Optimized Answer Structure)
12
+
13
+ ## Answer Engine Optimization (AEO) Patterns
14
+
15
+ These patterns help content appear in featured snippets, AI Overviews, voice search results, and answer boxes.
16
+
17
+ ### Definition Block
18
+
19
+ Use for "What is [X]?" queries.
20
+
21
+ ```markdown
22
+ ## What is [Term]?
23
+
24
+ [Term] is [concise 1-sentence definition]. [Expanded 1-2 sentence explanation with key characteristics]. [Brief context on why it matters or how it's used].
25
+ ```
26
+
27
+ **Example:**
28
+ ```markdown
29
+ ## What is Answer Engine Optimization?
30
+
31
+ Answer Engine Optimization (AEO) is the practice of structuring content so AI-powered systems can easily extract and present it as direct answers to user queries. Unlike traditional SEO that focuses on ranking in search results, AEO optimizes for featured snippets, AI Overviews, and voice assistant responses. This approach has become essential as over 60% of Google searches now end without a click.
32
+ ```
33
+
34
+ ### Step-by-Step Block
35
+
36
+ Use for "How to [X]" queries. Optimal for list snippets.
37
+
38
+ ```markdown
39
+ ## How to [Action/Goal]
40
+
41
+ [1-sentence overview of the process]
42
+
43
+ 1. **[Step Name]**: [Clear action description in 1-2 sentences]
44
+ 2. **[Step Name]**: [Clear action description in 1-2 sentences]
45
+ 3. **[Step Name]**: [Clear action description in 1-2 sentences]
46
+ 4. **[Step Name]**: [Clear action description in 1-2 sentences]
47
+ 5. **[Step Name]**: [Clear action description in 1-2 sentences]
48
+
49
+ [Optional: Brief note on expected outcome or time estimate]
50
+ ```
51
+
52
+ **Example:**
53
+ ```markdown
54
+ ## How to Optimize Content for Featured Snippets
55
+
56
+ Earning featured snippets requires strategic formatting and direct answers to search queries.
57
+
58
+ 1. **Identify snippet opportunities**: Use tools like Semrush or Ahrefs to find keywords where competitors have snippets you could capture.
59
+ 2. **Match the snippet format**: Analyze whether the current snippet is a paragraph, list, or table, and format your content accordingly.
60
+ 3. **Answer the question directly**: Provide a clear, concise answer (40-60 words for paragraph snippets) immediately after the question heading.
61
+ 4. **Add supporting context**: Expand on your answer with examples, data, and expert insights in the following paragraphs.
62
+ 5. **Use proper heading structure**: Place your target question as an H2 or H3, with the answer immediately following.
63
+
64
+ Most featured snippets appear within 2-4 weeks of publishing well-optimized content.
65
+ ```
66
+
67
+ ### Comparison Table Block
68
+
69
+ Use for "[X] vs [Y]" queries. Optimal for table snippets.
70
+
71
+ ```markdown
72
+ ## [Option A] vs [Option B]: [Brief Descriptor]
73
+
74
+ | Feature | [Option A] | [Option B] |
75
+ |---------|------------|------------|
76
+ | [Criteria 1] | [Value/Description] | [Value/Description] |
77
+ | [Criteria 2] | [Value/Description] | [Value/Description] |
78
+ | [Criteria 3] | [Value/Description] | [Value/Description] |
79
+ | [Criteria 4] | [Value/Description] | [Value/Description] |
80
+ | Best For | [Use case] | [Use case] |
81
+
82
+ **Bottom line**: [1-2 sentence recommendation based on different needs]
83
+ ```
84
+
85
+ ### Pros and Cons Block
86
+
87
+ Use for evaluation queries: "Is [X] worth it?", "Should I [X]?"
88
+
89
+ ```markdown
90
+ ## Advantages and Disadvantages of [Topic]
91
+
92
+ [1-sentence overview of the evaluation context]
93
+
94
+ ### Pros
95
+
96
+ - **[Benefit category]**: [Specific explanation]
97
+ - **[Benefit category]**: [Specific explanation]
98
+ - **[Benefit category]**: [Specific explanation]
99
+
100
+ ### Cons
101
+
102
+ - **[Drawback category]**: [Specific explanation]
103
+ - **[Drawback category]**: [Specific explanation]
104
+ - **[Drawback category]**: [Specific explanation]
105
+
106
+ **Verdict**: [1-2 sentence balanced conclusion with recommendation]
107
+ ```
108
+
109
+ ### FAQ Block
110
+
111
+ Use for topic pages with multiple common questions. Essential for FAQ schema.
112
+
113
+ ```markdown
114
+ ## Frequently Asked Questions
115
+
116
+ ### [Question phrased exactly as users search]?
117
+
118
+ [Direct answer in first sentence]. [Supporting context in 2-3 additional sentences].
119
+
120
+ ### [Question phrased exactly as users search]?
121
+
122
+ [Direct answer in first sentence]. [Supporting context in 2-3 additional sentences].
123
+
124
+ ### [Question phrased exactly as users search]?
125
+
126
+ [Direct answer in first sentence]. [Supporting context in 2-3 additional sentences].
127
+ ```
128
+
129
+ **Tips for FAQ questions:**
130
+ - Use natural question phrasing ("How do I..." not "How does one...")
131
+ - Include question words: what, how, why, when, where, who, which
132
+ - Match "People Also Ask" queries from search results
133
+ - Keep answers between 50-100 words
134
+
135
+ ### Listicle Block
136
+
137
+ Use for "Best [X]", "Top [X]", "[Number] ways to [X]" queries.
138
+
139
+ ```markdown
140
+ ## [Number] Best [Items] for [Goal/Purpose]
141
+
142
+ [1-2 sentence intro establishing context and selection criteria]
143
+
144
+ ### 1. [Item Name]
145
+
146
+ [Why it's included in 2-3 sentences with specific benefits]
147
+
148
+ ### 2. [Item Name]
149
+
150
+ [Why it's included in 2-3 sentences with specific benefits]
151
+
152
+ ### 3. [Item Name]
153
+
154
+ [Why it's included in 2-3 sentences with specific benefits]
155
+ ```
156
+
157
+ ---
158
+
159
+ ## Generative Engine Optimization (GEO) Patterns
160
+
161
+ These patterns optimize content for citation by AI assistants like ChatGPT, Claude, Perplexity, and Gemini.
162
+
163
+ ### Statistic Citation Block
164
+
165
+ Statistics increase AI citation rates by 15-30%. Always include sources.
166
+
167
+ ```markdown
168
+ [Claim statement]. According to [Source/Organization], [specific statistic with number and timeframe]. [Context for why this matters].
169
+ ```
170
+
171
+ **Example:**
172
+ ```markdown
173
+ Mobile optimization is no longer optional for SEO success. According to Google's 2024 Core Web Vitals report, 70% of web traffic now comes from mobile devices, and pages failing mobile usability standards see 24% higher bounce rates. This makes mobile-first indexing a critical ranking factor.
174
+ ```
175
+
176
+ ### Expert Quote Block
177
+
178
+ Named expert attribution adds credibility and increases citation likelihood.
179
+
180
+ ```markdown
181
+ "[Direct quote from expert]," says [Expert Name], [Title/Role] at [Organization]. [1 sentence of context or interpretation].
182
+ ```
183
+
184
+ **Example:**
185
+ ```markdown
186
+ "The shift from keyword-driven search to intent-driven discovery represents the most significant change in SEO since mobile-first indexing," says Rand Fishkin, Co-founder of SparkToro. This perspective highlights why content strategies must evolve beyond traditional keyword optimization.
187
+ ```
188
+
189
+ ### Authoritative Claim Block
190
+
191
+ Structure claims for easy AI extraction with clear attribution.
192
+
193
+ ```markdown
194
+ [Topic] [verb: is/has/requires/involves] [clear, specific claim]. [Source] [confirms/reports/found] that [supporting evidence]. This [explains/means/suggests] [implication or action].
195
+ ```
196
+
197
+ **Example:**
198
+ ```markdown
199
+ E-E-A-T is the cornerstone of Google's content quality evaluation. Google's Search Quality Rater Guidelines confirm that trust is the most critical factor, stating that "untrustworthy pages have low E-E-A-T no matter how experienced, expert, or authoritative they may seem." This means content creators must prioritize transparency and accuracy above all other optimization tactics.
200
+ ```
201
+
202
+ ### Self-Contained Answer Block
203
+
204
+ Create quotable, standalone statements that AI can extract directly.
205
+
206
+ ```markdown
207
+ **[Topic/Question]**: [Complete, self-contained answer that makes sense without additional context. Include specific details, numbers, or examples in 2-3 sentences.]
208
+ ```
209
+
210
+ **Example:**
211
+ ```markdown
212
+ **Ideal blog post length for SEO**: The optimal length for SEO blog posts is 1,500-2,500 words for competitive topics. This range allows comprehensive topic coverage while maintaining reader engagement. HubSpot research shows long-form content earns 77% more backlinks than short articles, directly impacting search rankings.
213
+ ```
214
+
215
+ ### Evidence Sandwich Block
216
+
217
+ Structure claims with evidence for maximum credibility.
218
+
219
+ ```markdown
220
+ [Opening claim statement].
221
+
222
+ Evidence supporting this includes:
223
+ - [Data point 1 with source]
224
+ - [Data point 2 with source]
225
+ - [Data point 3 with source]
226
+
227
+ [Concluding statement connecting evidence to actionable insight].
228
+ ```
229
+
230
+ ---
231
+
232
+ ## Domain-Specific GEO Tactics
233
+
234
+ Different content domains benefit from different authority signals.
235
+
236
+ ### Technology Content
237
+ - Emphasize technical precision and correct terminology
238
+ - Include version numbers and dates for software/tools
239
+ - Reference official documentation
240
+ - Add code examples where relevant
241
+
242
+ ### Health/Medical Content
243
+ - Cite peer-reviewed studies with publication details
244
+ - Include expert credentials (MD, RN, etc.)
245
+ - Note study limitations and context
246
+ - Add "last reviewed" dates
247
+
248
+ ### Financial Content
249
+ - Reference regulatory bodies (SEC, FTC, etc.)
250
+ - Include specific numbers with timeframes
251
+ - Note that information is educational, not advice
252
+ - Cite recognized financial institutions
253
+
254
+ ### Legal Content
255
+ - Cite specific laws, statutes, and regulations
256
+ - Reference jurisdiction clearly
257
+ - Include professional disclaimers
258
+ - Note when professional consultation is advised
259
+
260
+ ### Business/Marketing Content
261
+ - Include case studies with measurable results
262
+ - Reference industry research and reports
263
+ - Add percentage changes and timeframes
264
+ - Quote recognized thought leaders
265
+
266
+ ---
267
+
268
+ ## Voice Search Optimization
269
+
270
+ Voice queries are conversational and question-based. Optimize for these patterns:
271
+
272
+ ### Question Formats for Voice
273
+ - "What is..."
274
+ - "How do I..."
275
+ - "Where can I find..."
276
+ - "Why does..."
277
+ - "When should I..."
278
+ - "Who is..."
279
+
280
+ ### Voice-Optimized Answer Structure
281
+ - Lead with direct answer (under 30 words ideal)
282
+ - Use natural, conversational language
283
+ - Avoid jargon unless targeting expert audience
284
+ - Include local context where relevant
285
+ - Structure for single spoken response
@@ -0,0 +1,200 @@
1
+ # AI Writing Detection
2
+
3
+ Words, phrases, and punctuation patterns commonly associated with AI-generated text. Avoid these to ensure writing sounds natural and human.
4
+
5
+ Sources: Grammarly (2025), Microsoft 365 Life Hacks (2025), GPTHuman (2025), Walter Writes (2025), Textero (2025), Plagiarism Today (2025), Rolling Stone (2025), MDPI Blog (2025)
6
+
7
+ ---
8
+
9
+ ## Contents
10
+ - Em Dashes: The Primary AI Tell
11
+ - Overused Verbs
12
+ - Overused Adjectives
13
+ - Overused Transitions and Connectors
14
+ - Phrases That Signal AI Writing (Opening Phrases, Transitional Phrases, Concluding Phrases, Structural Patterns)
15
+ - Filler Words and Empty Intensifiers
16
+ - Academic-Specific AI Tells
17
+ - How to Self-Check
18
+
19
+ ## Em Dashes: The Primary AI Tell
20
+
21
+ **The em dash (—) has become one of the most reliable markers of AI-generated content.**
22
+
23
+ Em dashes are longer than hyphens (-) and are used for emphasis, interruptions, or parenthetical information. While they have legitimate uses in writing, AI models drastically overuse them.
24
+
25
+ ### Why Em Dashes Signal AI Writing
26
+ - AI models were trained on edited books, academic papers, and style guides where em dashes appear frequently
27
+ - AI uses em dashes as a shortcut for sentence variety instead of commas, colons, or parentheses
28
+ - Most human writers rarely use em dashes because they don't exist as a standard keyboard key
29
+ - The overuse is so consistent that it has become the unofficial signature of ChatGPT writing
30
+
31
+ ### What To Do Instead
32
+ | Instead of | Use |
33
+ |------------|-----|
34
+ | The results—which were surprising—showed... | The results, which were surprising, showed... |
35
+ | This approach—unlike traditional methods—allows... | This approach, unlike traditional methods, allows... |
36
+ | The study found—as expected—that... | The study found, as expected, that... |
37
+ | Communication skills—both written and verbal—are essential | Communication skills (both written and verbal) are essential |
38
+
39
+ ### Guidelines
40
+ - Use commas for most parenthetical information
41
+ - Use colons to introduce explanations or lists
42
+ - Use parentheses for supplementary information
43
+ - Reserve em dashes for rare, deliberate emphasis only
44
+ - If you find yourself using more than one em dash per page, revise
45
+
46
+ ---
47
+
48
+ ## Overused Verbs
49
+
50
+ | Avoid | Use Instead |
51
+ |-------|-------------|
52
+ | delve (into) | explore, examine, investigate, look at |
53
+ | leverage | use, apply, draw on |
54
+ | optimise | improve, refine, enhance |
55
+ | utilise | use |
56
+ | facilitate | help, enable, support |
57
+ | foster | encourage, support, develop, nurture |
58
+ | bolster | strengthen, support, reinforce |
59
+ | underscore | emphasise, highlight, stress |
60
+ | unveil | reveal, show, introduce, present |
61
+ | navigate | manage, handle, work through |
62
+ | streamline | simplify, make more efficient |
63
+ | enhance | improve, strengthen |
64
+ | endeavour | try, attempt, effort |
65
+ | ascertain | find out, determine, establish |
66
+ | elucidate | explain, clarify, make clear |
67
+
68
+ ---
69
+
70
+ ## Overused Adjectives
71
+
72
+ | Avoid | Use Instead |
73
+ |-------|-------------|
74
+ | robust | strong, reliable, thorough, solid |
75
+ | comprehensive | complete, thorough, full, detailed |
76
+ | pivotal | key, critical, central, important |
77
+ | crucial | important, key, essential, critical |
78
+ | vital | important, essential, necessary |
79
+ | transformative | significant, important, major |
80
+ | cutting-edge | new, advanced, recent, modern |
81
+ | groundbreaking | new, original, significant |
82
+ | innovative | new, original, creative |
83
+ | seamless | smooth, easy, effortless |
84
+ | intricate | complex, detailed, complicated |
85
+ | nuanced | subtle, complex, detailed |
86
+ | multifaceted | complex, varied, diverse |
87
+ | holistic | complete, whole, comprehensive |
88
+
89
+ ---
90
+
91
+ ## Overused Transitions and Connectors
92
+
93
+ | Avoid | Use Instead |
94
+ |-------|-------------|
95
+ | furthermore | also, in addition, and |
96
+ | moreover | also, and, besides |
97
+ | notwithstanding | despite, even so, still |
98
+ | that being said | however, but, still |
99
+ | at its core | essentially, fundamentally, basically |
100
+ | to put it simply | in short, simply put |
101
+ | it is worth noting that | note that, importantly |
102
+ | in the realm of | in, within, regarding |
103
+ | in the landscape of | in, within |
104
+ | in today's [anything] | currently, now, today |
105
+
106
+ ---
107
+
108
+ ## Phrases That Signal AI Writing
109
+
110
+ ### Opening Phrases to Avoid
111
+ - "In today's fast-paced world..."
112
+ - "In today's digital age..."
113
+ - "In an era of..."
114
+ - "In the ever-evolving landscape of..."
115
+ - "In the realm of..."
116
+ - "It's important to note that..."
117
+ - "Let's delve into..."
118
+ - "Imagine a world where..."
119
+
120
+ ### Transitional Phrases to Avoid
121
+ - "That being said..."
122
+ - "With that in mind..."
123
+ - "It's worth mentioning that..."
124
+ - "At its core..."
125
+ - "To put it simply..."
126
+ - "In essence..."
127
+ - "This begs the question..."
128
+
129
+ ### Concluding Phrases to Avoid
130
+ - "In conclusion..."
131
+ - "To sum up..."
132
+ - "By [doing X], you can [achieve Y]..."
133
+ - "In the final analysis..."
134
+ - "All things considered..."
135
+ - "At the end of the day..."
136
+
137
+ ### Structural Patterns to Avoid
138
+ - "Whether you're a [X], [Y], or [Z]..." (listing three examples after "whether")
139
+ - "It's not just [X], it's also [Y]..."
140
+ - "Think of [X] as [elaborate metaphor]..."
141
+ - Starting sentences with "By" followed by a gerund: "By understanding X, you can Y..."
142
+
143
+ ---
144
+
145
+ ## Filler Words and Empty Intensifiers
146
+
147
+ These words often add nothing to meaning. Remove them or find specific alternatives:
148
+
149
+ - absolutely
150
+ - actually
151
+ - basically
152
+ - certainly
153
+ - clearly
154
+ - definitely
155
+ - essentially
156
+ - extremely
157
+ - fundamentally
158
+ - incredibly
159
+ - interestingly
160
+ - naturally
161
+ - obviously
162
+ - quite
163
+ - really
164
+ - significantly
165
+ - simply
166
+ - surely
167
+ - truly
168
+ - ultimately
169
+ - undoubtedly
170
+ - very
171
+
172
+ ---
173
+
174
+ ## Academic-Specific AI Tells
175
+
176
+ | Avoid | Use Instead |
177
+ |-------|-------------|
178
+ | shed light on | clarify, explain, reveal |
179
+ | pave the way for | enable, allow, make possible |
180
+ | a myriad of | many, numerous, various |
181
+ | a plethora of | many, numerous, several |
182
+ | paramount | very important, essential, critical |
183
+ | pertaining to | about, regarding, concerning |
184
+ | prior to | before |
185
+ | subsequent to | after |
186
+ | in light of | because of, given, considering |
187
+ | with respect to | about, regarding, for |
188
+ | in terms of | regarding, for, about |
189
+ | the fact that | that (or rewrite sentence) |
190
+
191
+ ---
192
+
193
+ ## How to Self-Check
194
+
195
+ 1. Read your text aloud. If phrases sound unnatural in speech, revise them
196
+ 2. Ask: "Would I say this in a conversation with a colleague?"
197
+ 3. Check for repetitive sentence structures
198
+ 4. Look for clusters of the words listed above
199
+ 5. Ensure varied sentence lengths (not all similar length)
200
+ 6. Verify each intensifier adds genuine meaning