baldart 3.6.2

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 (230) hide show
  1. package/CHANGELOG.md +599 -0
  2. package/README.md +566 -0
  3. package/VERSION +1 -0
  4. package/bin/baldart.js +143 -0
  5. package/framework/.claude/agents/REGISTRY.md +169 -0
  6. package/framework/.claude/agents/api-perf-cost-auditor.md +291 -0
  7. package/framework/.claude/agents/code-reviewer.md +350 -0
  8. package/framework/.claude/agents/codebase-architect.md +391 -0
  9. package/framework/.claude/agents/coder.md +291 -0
  10. package/framework/.claude/agents/deep-human-insight.md +198 -0
  11. package/framework/.claude/agents/doc-reviewer.md +440 -0
  12. package/framework/.claude/agents/email-deliverability-architect.md +193 -0
  13. package/framework/.claude/agents/hybrid-ml-architect.md +285 -0
  14. package/framework/.claude/agents/hyper-gamification-designer.md +149 -0
  15. package/framework/.claude/agents/legal-counsel-gdpr.md +179 -0
  16. package/framework/.claude/agents/marketing-conversion-strategist.md +162 -0
  17. package/framework/.claude/agents/motion-expert.md +108 -0
  18. package/framework/.claude/agents/onboarding-architect-lead.md +230 -0
  19. package/framework/.claude/agents/plan-auditor.md +546 -0
  20. package/framework/.claude/agents/prd-card-writer.md +372 -0
  21. package/framework/.claude/agents/prd.md +744 -0
  22. package/framework/.claude/agents/qa-sentinel.md +305 -0
  23. package/framework/.claude/agents/remotion-animator-orchestrator.md +218 -0
  24. package/framework/.claude/agents/security-reviewer.md +276 -0
  25. package/framework/.claude/agents/senior-researcher.md +175 -0
  26. package/framework/.claude/agents/seo-analytics-strategist.md +156 -0
  27. package/framework/.claude/agents/skill-improver.md +61 -0
  28. package/framework/.claude/agents/ui-expert.md +191 -0
  29. package/framework/.claude/agents/visual-designer.md +190 -0
  30. package/framework/.claude/agents/website-orchestrator.md +118 -0
  31. package/framework/.claude/agents/wiki-curator.md +145 -0
  32. package/framework/.claude/commands/baldart-push.md +15 -0
  33. package/framework/.claude/commands/check.md +237 -0
  34. package/framework/.claude/commands/codexreview.md +203 -0
  35. package/framework/.claude/commands/design-review.md +11 -0
  36. package/framework/.claude/commands/issue-review.md +34 -0
  37. package/framework/.claude/commands/new.md +331 -0
  38. package/framework/.claude/commands/qa.md +257 -0
  39. package/framework/.claude/hooks/framework-edit-gate.js +208 -0
  40. package/framework/.claude/hooks/lint-before-commit.sh.template +66 -0
  41. package/framework/.claude/settings.local.json.example +32 -0
  42. package/framework/.claude/skills/api-design-principles/SKILL.md +567 -0
  43. package/framework/.claude/skills/api-design-principles/assets/api-design-checklist.md +155 -0
  44. package/framework/.claude/skills/api-design-principles/assets/rest-api-template.py +182 -0
  45. package/framework/.claude/skills/api-design-principles/references/graphql-schema-design.md +583 -0
  46. package/framework/.claude/skills/api-design-principles/references/rest-best-practices.md +408 -0
  47. package/framework/.claude/skills/baldart-push/SKILL.md +222 -0
  48. package/framework/.claude/skills/bug/SKILL.md +200 -0
  49. package/framework/.claude/skills/bug/references/logging-patterns.md +174 -0
  50. package/framework/.claude/skills/capture/SKILL.md +125 -0
  51. package/framework/.claude/skills/capture/references/synthesis-template.md +42 -0
  52. package/framework/.claude/skills/context-primer/SKILL.md +189 -0
  53. package/framework/.claude/skills/copywriting/SKILL.md +273 -0
  54. package/framework/.claude/skills/copywriting/references/copy-frameworks.md +338 -0
  55. package/framework/.claude/skills/copywriting/references/natural-transitions.md +252 -0
  56. package/framework/.claude/skills/doc-writing-for-rag/SKILL.md +119 -0
  57. package/framework/.claude/skills/doc-writing-for-rag/references/before-after-examples.md +291 -0
  58. package/framework/.claude/skills/doc-writing-for-rag/references/compact-templates.md +183 -0
  59. package/framework/.claude/skills/doc-writing-for-rag/references/frontmatter-minimal.md +112 -0
  60. package/framework/.claude/skills/doc-writing-for-rag/references/line-count-targets.md +110 -0
  61. package/framework/.claude/skills/doc-writing-for-rag/references/schemas-and-errors.md +129 -0
  62. package/framework/.claude/skills/find-skills/SKILL.md +133 -0
  63. package/framework/.claude/skills/frontend-design/LICENSE.txt +177 -0
  64. package/framework/.claude/skills/frontend-design/SKILL.md +84 -0
  65. package/framework/.claude/skills/gamification-design/SKILL.md +130 -0
  66. package/framework/.claude/skills/issue-review/SKILL.md +45 -0
  67. package/framework/.claude/skills/kie-ai/SKILL.md +262 -0
  68. package/framework/.claude/skills/kie-ai/references/models-catalog.md +272 -0
  69. package/framework/.claude/skills/kie-ai/scripts/kie_api.sh +209 -0
  70. package/framework/.claude/skills/kie-ai/scripts/remove_greenscreen.py +69 -0
  71. package/framework/.claude/skills/kie-ai/scripts/setup_api_key.sh +77 -0
  72. package/framework/.claude/skills/motion-design/LICENSE +21 -0
  73. package/framework/.claude/skills/motion-design/README.md +82 -0
  74. package/framework/.claude/skills/motion-design/SKILL.md +336 -0
  75. package/framework/.claude/skills/motion-design/director/choreography.md +93 -0
  76. package/framework/.claude/skills/motion-design/director/context-adaptation.md +83 -0
  77. package/framework/.claude/skills/motion-design/director/core-philosophy.md +53 -0
  78. package/framework/.claude/skills/motion-design/director/decision-framework.md +91 -0
  79. package/framework/.claude/skills/motion-design/director/disney-principles.md +102 -0
  80. package/framework/.claude/skills/motion-design/director/emotion-mapping.md +71 -0
  81. package/framework/.claude/skills/motion-design/director/motion-personality.md +89 -0
  82. package/framework/.claude/skills/motion-design/director/narrative-structure.md +62 -0
  83. package/framework/.claude/skills/motion-design/patterns/ambient-continuous.md +81 -0
  84. package/framework/.claude/skills/motion-design/patterns/entrance-exit.md +82 -0
  85. package/framework/.claude/skills/motion-design/patterns/multi-element.md +69 -0
  86. package/framework/.claude/skills/motion-design/patterns/state-feedback.md +96 -0
  87. package/framework/.claude/skills/motion-design/reference/property-selection.md +95 -0
  88. package/framework/.claude/skills/motion-design/reference/quality-checklist.md +67 -0
  89. package/framework/.claude/skills/motion-design/reference/timing-easing-tables.md +106 -0
  90. package/framework/.claude/skills/motion-design/reference/troubleshooting.md +73 -0
  91. package/framework/.claude/skills/new/SKILL.md +1687 -0
  92. package/framework/.claude/skills/playwright-skill/API_REFERENCE.md +652 -0
  93. package/framework/.claude/skills/playwright-skill/SKILL.md +157 -0
  94. package/framework/.claude/skills/playwright-skill/package.json +26 -0
  95. package/framework/.claude/skills/prd/SKILL.md +228 -0
  96. package/framework/.claude/skills/prd/assets/card-template.yml +232 -0
  97. package/framework/.claude/skills/prd/assets/epic-template.yml +190 -0
  98. package/framework/.claude/skills/prd/assets/prd-template.md +230 -0
  99. package/framework/.claude/skills/prd/assets/state-template.md +78 -0
  100. package/framework/.claude/skills/prd/references/api-perf-gate.md +152 -0
  101. package/framework/.claude/skills/prd/references/audit-phase.md +478 -0
  102. package/framework/.claude/skills/prd/references/backlog-phase.md +145 -0
  103. package/framework/.claude/skills/prd/references/discovery-phase.md +359 -0
  104. package/framework/.claude/skills/prd/references/impact-analysis.md +233 -0
  105. package/framework/.claude/skills/prd/references/prd-add-phase.md +214 -0
  106. package/framework/.claude/skills/prd/references/prd-writing-phase.md +145 -0
  107. package/framework/.claude/skills/prd/references/research-phase.md +216 -0
  108. package/framework/.claude/skills/prd/references/ui-design-phase.md +61 -0
  109. package/framework/.claude/skills/prd/references/validation-phase.md +72 -0
  110. package/framework/.claude/skills/prd-add/SKILL.md +222 -0
  111. package/framework/.claude/skills/prd-add/references/impact-analysis.md +233 -0
  112. package/framework/.claude/skills/remotion-best-practices/SKILL.md +48 -0
  113. package/framework/.claude/skills/remotion-best-practices/rules/3d.md +86 -0
  114. package/framework/.claude/skills/remotion-best-practices/rules/animations.md +29 -0
  115. package/framework/.claude/skills/remotion-best-practices/rules/assets/charts-bar-chart.tsx +173 -0
  116. package/framework/.claude/skills/remotion-best-practices/rules/assets/text-animations-typewriter.tsx +100 -0
  117. package/framework/.claude/skills/remotion-best-practices/rules/assets/text-animations-word-highlight.tsx +108 -0
  118. package/framework/.claude/skills/remotion-best-practices/rules/assets.md +78 -0
  119. package/framework/.claude/skills/remotion-best-practices/rules/audio.md +169 -0
  120. package/framework/.claude/skills/remotion-best-practices/rules/calculate-metadata.md +104 -0
  121. package/framework/.claude/skills/remotion-best-practices/rules/can-decode.md +75 -0
  122. package/framework/.claude/skills/remotion-best-practices/rules/charts.md +58 -0
  123. package/framework/.claude/skills/remotion-best-practices/rules/compositions.md +141 -0
  124. package/framework/.claude/skills/remotion-best-practices/rules/display-captions.md +184 -0
  125. package/framework/.claude/skills/remotion-best-practices/rules/extract-frames.md +229 -0
  126. package/framework/.claude/skills/remotion-best-practices/rules/fonts.md +152 -0
  127. package/framework/.claude/skills/remotion-best-practices/rules/get-audio-duration.md +58 -0
  128. package/framework/.claude/skills/remotion-best-practices/rules/get-video-dimensions.md +68 -0
  129. package/framework/.claude/skills/remotion-best-practices/rules/get-video-duration.md +58 -0
  130. package/framework/.claude/skills/remotion-best-practices/rules/gifs.md +141 -0
  131. package/framework/.claude/skills/remotion-best-practices/rules/images.md +130 -0
  132. package/framework/.claude/skills/remotion-best-practices/rules/import-srt-captions.md +69 -0
  133. package/framework/.claude/skills/remotion-best-practices/rules/light-leaks.md +73 -0
  134. package/framework/.claude/skills/remotion-best-practices/rules/lottie.md +67 -0
  135. package/framework/.claude/skills/remotion-best-practices/rules/maps.md +401 -0
  136. package/framework/.claude/skills/remotion-best-practices/rules/measuring-dom-nodes.md +34 -0
  137. package/framework/.claude/skills/remotion-best-practices/rules/measuring-text.md +143 -0
  138. package/framework/.claude/skills/remotion-best-practices/rules/parameters.md +98 -0
  139. package/framework/.claude/skills/remotion-best-practices/rules/sequencing.md +118 -0
  140. package/framework/.claude/skills/remotion-best-practices/rules/subtitles.md +36 -0
  141. package/framework/.claude/skills/remotion-best-practices/rules/tailwind.md +11 -0
  142. package/framework/.claude/skills/remotion-best-practices/rules/text-animations.md +20 -0
  143. package/framework/.claude/skills/remotion-best-practices/rules/timing.md +179 -0
  144. package/framework/.claude/skills/remotion-best-practices/rules/transcribe-captions.md +70 -0
  145. package/framework/.claude/skills/remotion-best-practices/rules/transitions.md +197 -0
  146. package/framework/.claude/skills/remotion-best-practices/rules/transparent-videos.md +106 -0
  147. package/framework/.claude/skills/remotion-best-practices/rules/trimming.md +52 -0
  148. package/framework/.claude/skills/remotion-best-practices/rules/videos.md +171 -0
  149. package/framework/.claude/skills/seo-audit/SKILL.md +394 -0
  150. package/framework/.claude/skills/seo-audit/references/aeo-geo-patterns.md +279 -0
  151. package/framework/.claude/skills/seo-audit/references/ai-writing-detection.md +190 -0
  152. package/framework/.claude/skills/simplify/SKILL.md +137 -0
  153. package/framework/.claude/skills/skill-creator/LICENSE.txt +202 -0
  154. package/framework/.claude/skills/skill-creator/SKILL.md +356 -0
  155. package/framework/.claude/skills/skill-creator/references/output-patterns.md +82 -0
  156. package/framework/.claude/skills/skill-creator/references/workflows.md +28 -0
  157. package/framework/.claude/skills/skill-creator/scripts/init_skill.py +303 -0
  158. package/framework/.claude/skills/skill-creator/scripts/package_skill.py +110 -0
  159. package/framework/.claude/skills/skill-creator/scripts/quick_validate.py +95 -0
  160. package/framework/.claude/skills/ui-design/SKILL.md +199 -0
  161. package/framework/.claude/skills/ui-design/references/component-discovery.md +54 -0
  162. package/framework/.claude/skills/ui-design/references/evaluation.md +171 -0
  163. package/framework/.claude/skills/ui-design/references/generation.md +109 -0
  164. package/framework/.claude/skills/ui-design/references/inventory.md +59 -0
  165. package/framework/.claude/skills/webapp-testing/LICENSE.txt +202 -0
  166. package/framework/.claude/skills/webapp-testing/SKILL.md +123 -0
  167. package/framework/.claude/skills/webapp-testing/examples/console_logging.py +35 -0
  168. package/framework/.claude/skills/webapp-testing/examples/element_discovery.py +40 -0
  169. package/framework/.claude/skills/webapp-testing/examples/static_html_automation.py +33 -0
  170. package/framework/.claude/skills/webapp-testing/scripts/with_server.py +106 -0
  171. package/framework/.claude/skills/worktree-manager/SKILL.md +680 -0
  172. package/framework/AGENTS.md +240 -0
  173. package/framework/agents/api-contracts.md +137 -0
  174. package/framework/agents/architecture.md +145 -0
  175. package/framework/agents/coding-standards.md +148 -0
  176. package/framework/agents/data-model.md +110 -0
  177. package/framework/agents/deployment-protocol.md +232 -0
  178. package/framework/agents/design-review.md +172 -0
  179. package/framework/agents/env-reference.md +171 -0
  180. package/framework/agents/github-issue-subagent.md +252 -0
  181. package/framework/agents/index.md +261 -0
  182. package/framework/agents/llm-wiki-methodology.md +216 -0
  183. package/framework/agents/maintenance-protocol.md +305 -0
  184. package/framework/agents/observability.md +162 -0
  185. package/framework/agents/performance.md +155 -0
  186. package/framework/agents/project-context.md +145 -0
  187. package/framework/agents/runbook.md +208 -0
  188. package/framework/agents/security.md +168 -0
  189. package/framework/agents/skills-mapping.md +286 -0
  190. package/framework/agents/testing.md +111 -0
  191. package/framework/agents/workflows.md +215 -0
  192. package/framework/docs/PROJECT-CONFIGURATION.md +336 -0
  193. package/framework/docs/references/brand-guidelines.md +170 -0
  194. package/framework/docs/references/ui-guidelines.template.md +182 -0
  195. package/framework/routines/code-review.routine.yml +46 -0
  196. package/framework/routines/doc-review.routine.yml +45 -0
  197. package/framework/routines/ds-drift.routine.yml +52 -0
  198. package/framework/routines/full-sweep.routine.yml +51 -0
  199. package/framework/routines/index.yml +70 -0
  200. package/framework/routines/skill-improve.routine.yml +50 -0
  201. package/framework/routines/wiki-review.routine.yml +45 -0
  202. package/framework/templates/baldart.config.template.yml +113 -0
  203. package/framework/templates/breaking-change-checklist.md +484 -0
  204. package/framework/templates/feature-card.template.yml +125 -0
  205. package/framework/templates/overlays/README.md +44 -0
  206. package/framework/templates/overlays/copywriting.fidelity-example.md +62 -0
  207. package/framework/templates/overlays/ui-design.fidelity-example.md +75 -0
  208. package/framework/templates/skill-project-context.snippet.md +19 -0
  209. package/framework/templates/spec.template.md +208 -0
  210. package/package.json +51 -0
  211. package/src/commands/add.js +229 -0
  212. package/src/commands/configure.js +385 -0
  213. package/src/commands/doctor.js +486 -0
  214. package/src/commands/migrate.js +185 -0
  215. package/src/commands/push.js +0 -0
  216. package/src/commands/routines.js +269 -0
  217. package/src/commands/status.js +130 -0
  218. package/src/commands/update.js +419 -0
  219. package/src/commands/version.js +88 -0
  220. package/src/utils/contamination.js +400 -0
  221. package/src/utils/git.js +181 -0
  222. package/src/utils/hooks.js +152 -0
  223. package/src/utils/routine-adapters/claude-code-cloud.js +78 -0
  224. package/src/utils/routine-adapters/cron.js +138 -0
  225. package/src/utils/routine-adapters/github-actions.js +141 -0
  226. package/src/utils/routine-adapters/index.js +21 -0
  227. package/src/utils/routines.js +166 -0
  228. package/src/utils/state.js +143 -0
  229. package/src/utils/symlinks.js +425 -0
  230. package/src/utils/ui.js +133 -0
@@ -0,0 +1,106 @@
1
+ ---
2
+ name: transparent-videos
3
+ description: Rendering transparent videos in Remotion
4
+ metadata:
5
+ tags: transparent, alpha, codec, vp9, prores, webm
6
+ ---
7
+
8
+ # Rendering Transparent Videos
9
+
10
+ Remotion can render transparent videos in two ways: as a ProRes video or as a WebM video.
11
+
12
+ ## Transparent ProRes
13
+
14
+ Ideal for when importing into video editing software.
15
+
16
+ **CLI:**
17
+
18
+ ```bash
19
+ npx remotion render --image-format=png --pixel-format=yuva444p10le --codec=prores --prores-profile=4444 MyComp out.mov
20
+ ```
21
+
22
+ **Default in Studio** (restart Studio after changing):
23
+
24
+ ```ts
25
+ // remotion.config.ts
26
+ import { Config } from "@remotion/cli/config";
27
+
28
+ Config.setVideoImageFormat("png");
29
+ Config.setPixelFormat("yuva444p10le");
30
+ Config.setCodec("prores");
31
+ Config.setProResProfile("4444");
32
+ ```
33
+
34
+ **Setting it as the default export settings for a composition** (using `calculateMetadata`):
35
+
36
+ ```tsx
37
+ import { CalculateMetadataFunction } from "remotion";
38
+
39
+ const calculateMetadata: CalculateMetadataFunction<Props> = async ({
40
+ props,
41
+ }) => {
42
+ return {
43
+ defaultCodec: "prores",
44
+ defaultVideoImageFormat: "png",
45
+ defaultPixelFormat: "yuva444p10le",
46
+ defaultProResProfile: "4444",
47
+ };
48
+ };
49
+
50
+ <Composition
51
+ id="my-video"
52
+ component={MyVideo}
53
+ durationInFrames={150}
54
+ fps={30}
55
+ width={1920}
56
+ height={1080}
57
+ calculateMetadata={calculateMetadata}
58
+ />;
59
+ ```
60
+
61
+ ## Transparent WebM (VP9)
62
+
63
+ Ideal for when playing in a browser.
64
+
65
+ **CLI:**
66
+
67
+ ```bash
68
+ npx remotion render --image-format=png --pixel-format=yuva420p --codec=vp9 MyComp out.webm
69
+ ```
70
+
71
+ **Default in Studio** (restart Studio after changing):
72
+
73
+ ```ts
74
+ // remotion.config.ts
75
+ import { Config } from "@remotion/cli/config";
76
+
77
+ Config.setVideoImageFormat("png");
78
+ Config.setPixelFormat("yuva420p");
79
+ Config.setCodec("vp9");
80
+ ```
81
+
82
+ **Setting it as the default export settings for a composition** (using `calculateMetadata`):
83
+
84
+ ```tsx
85
+ import { CalculateMetadataFunction } from "remotion";
86
+
87
+ const calculateMetadata: CalculateMetadataFunction<Props> = async ({
88
+ props,
89
+ }) => {
90
+ return {
91
+ defaultCodec: "vp8",
92
+ defaultVideoImageFormat: "png",
93
+ defaultPixelFormat: "yuva420p",
94
+ };
95
+ };
96
+
97
+ <Composition
98
+ id="my-video"
99
+ component={MyVideo}
100
+ durationInFrames={150}
101
+ fps={30}
102
+ width={1920}
103
+ height={1080}
104
+ calculateMetadata={calculateMetadata}
105
+ />;
106
+ ```
@@ -0,0 +1,52 @@
1
+ ---
2
+ name: trimming
3
+ description: Trimming patterns for Remotion - cut the beginning or end of animations
4
+ metadata:
5
+ tags: sequence, trim, clip, cut, offset
6
+ ---
7
+
8
+ Use `<Sequence>` with a negative `from` value to trim the start of an animation.
9
+
10
+ ## Trim the Beginning
11
+
12
+ A negative `from` value shifts time backwards, making the animation start partway through:
13
+
14
+ ```tsx
15
+ import { Sequence, useVideoConfig } from "remotion";
16
+
17
+ const fps = useVideoConfig();
18
+
19
+ <Sequence from={-0.5 * fps}>
20
+ <MyAnimation />
21
+ </Sequence>
22
+ ```
23
+
24
+ The animation appears 15 frames into its progress - the first 15 frames are trimmed off.
25
+ Inside `<MyAnimation>`, `useCurrentFrame()` starts at 15 instead of 0.
26
+
27
+ ## Trim the End
28
+
29
+ Use `durationInFrames` to unmount content after a specified duration:
30
+
31
+ ```tsx
32
+
33
+ <Sequence durationInFrames={1.5 * fps}>
34
+ <MyAnimation />
35
+ </Sequence>
36
+ ```
37
+
38
+ The animation plays for 45 frames, then the component unmounts.
39
+
40
+ ## Trim and Delay
41
+
42
+ Nest sequences to both trim the beginning and delay when it appears:
43
+
44
+ ```tsx
45
+ <Sequence from={30}>
46
+ <Sequence from={-15}>
47
+ <MyAnimation />
48
+ </Sequence>
49
+ </Sequence>
50
+ ```
51
+
52
+ The inner sequence trims 15 frames from the start, and the outer sequence delays the result by 30 frames.
@@ -0,0 +1,171 @@
1
+ ---
2
+ name: videos
3
+ description: Embedding videos in Remotion - trimming, volume, speed, looping, pitch
4
+ metadata:
5
+ tags: video, media, trim, volume, speed, loop, pitch
6
+ ---
7
+
8
+ # Using videos in Remotion
9
+
10
+ ## Prerequisites
11
+
12
+ First, the @remotion/media package needs to be installed.
13
+ If it is not, use the following command:
14
+
15
+ ```bash
16
+ npx remotion add @remotion/media # If project uses npm
17
+ bunx remotion add @remotion/media # If project uses bun
18
+ yarn remotion add @remotion/media # If project uses yarn
19
+ pnpm exec remotion add @remotion/media # If project uses pnpm
20
+ ```
21
+
22
+ Use `<Video>` from `@remotion/media` to embed videos into your composition.
23
+
24
+ ```tsx
25
+ import { Video } from "@remotion/media";
26
+ import { staticFile } from "remotion";
27
+
28
+ export const MyComposition = () => {
29
+ return <Video src={staticFile("video.mp4")} />;
30
+ };
31
+ ```
32
+
33
+ Remote URLs are also supported:
34
+
35
+ ```tsx
36
+ <Video src="https://remotion.media/video.mp4" />
37
+ ```
38
+
39
+ ## Trimming
40
+
41
+ Use `trimBefore` and `trimAfter` to remove portions of the video. Values are in seconds.
42
+
43
+ ```tsx
44
+ const { fps } = useVideoConfig();
45
+
46
+ return (
47
+ <Video
48
+ src={staticFile("video.mp4")}
49
+ trimBefore={2 * fps} // Skip the first 2 seconds
50
+ trimAfter={10 * fps} // End at the 10 second mark
51
+ />
52
+ );
53
+ ```
54
+
55
+ ## Delaying
56
+
57
+ Wrap the video in a `<Sequence>` to delay when it appears:
58
+
59
+ ```tsx
60
+ import { Sequence, staticFile } from "remotion";
61
+ import { Video } from "@remotion/media";
62
+
63
+ const { fps } = useVideoConfig();
64
+
65
+ return (
66
+ <Sequence from={1 * fps}>
67
+ <Video src={staticFile("video.mp4")} />
68
+ </Sequence>
69
+ );
70
+ ```
71
+
72
+ The video will appear after 1 second.
73
+
74
+ ## Sizing and Position
75
+
76
+ Use the `style` prop to control size and position:
77
+
78
+ ```tsx
79
+ <Video
80
+ src={staticFile("video.mp4")}
81
+ style={{
82
+ width: 500,
83
+ height: 300,
84
+ position: "absolute",
85
+ top: 100,
86
+ left: 50,
87
+ objectFit: "cover",
88
+ }}
89
+ />
90
+ ```
91
+
92
+ ## Volume
93
+
94
+ Set a static volume (0 to 1):
95
+
96
+ ```tsx
97
+ <Video src={staticFile("video.mp4")} volume={0.5} />
98
+ ```
99
+
100
+ Or use a callback for dynamic volume based on the current frame:
101
+
102
+ ```tsx
103
+ import { interpolate } from "remotion";
104
+
105
+ const { fps } = useVideoConfig();
106
+
107
+ return (
108
+ <Video
109
+ src={staticFile("video.mp4")}
110
+ volume={(f) =>
111
+ interpolate(f, [0, 1 * fps], [0, 1], { extrapolateRight: "clamp" })
112
+ }
113
+ />
114
+ );
115
+ ```
116
+
117
+ Use `muted` to silence the video entirely:
118
+
119
+ ```tsx
120
+ <Video src={staticFile("video.mp4")} muted />
121
+ ```
122
+
123
+ ## Speed
124
+
125
+ Use `playbackRate` to change the playback speed:
126
+
127
+ ```tsx
128
+ <Video src={staticFile("video.mp4")} playbackRate={2} /> {/* 2x speed */}
129
+ <Video src={staticFile("video.mp4")} playbackRate={0.5} /> {/* Half speed */}
130
+ ```
131
+
132
+ Reverse playback is not supported.
133
+
134
+ ## Looping
135
+
136
+ Use `loop` to loop the video indefinitely:
137
+
138
+ ```tsx
139
+ <Video src={staticFile("video.mp4")} loop />
140
+ ```
141
+
142
+ Use `loopVolumeCurveBehavior` to control how the frame count behaves when looping:
143
+
144
+ - `"repeat"`: Frame count resets to 0 each loop (for `volume` callback)
145
+ - `"extend"`: Frame count continues incrementing
146
+
147
+ ```tsx
148
+ <Video
149
+ src={staticFile("video.mp4")}
150
+ loop
151
+ loopVolumeCurveBehavior="extend"
152
+ volume={(f) => interpolate(f, [0, 300], [1, 0])} // Fade out over multiple loops
153
+ />
154
+ ```
155
+
156
+ ## Pitch
157
+
158
+ Use `toneFrequency` to adjust the pitch without affecting speed. Values range from 0.01 to 2:
159
+
160
+ ```tsx
161
+ <Video
162
+ src={staticFile("video.mp4")}
163
+ toneFrequency={1.5} // Higher pitch
164
+ />
165
+ <Video
166
+ src={staticFile("video.mp4")}
167
+ toneFrequency={0.8} // Lower pitch
168
+ />
169
+ ```
170
+
171
+ Pitch shifting only works during server-side rendering, not in the Remotion Studio preview or in the `<Player />`.
@@ -0,0 +1,394 @@
1
+ ---
2
+ name: seo-audit
3
+ version: 1.0.0
4
+ description: When the user wants to audit, review, or diagnose SEO issues on their site. Also use when the user mentions "SEO audit," "technical SEO," "why am I not ranking," "SEO issues," "on-page SEO," "meta tags review," or "SEO health check." For building pages at scale to target keywords, see programmatic-seo. For adding structured data, see schema-markup.
5
+ ---
6
+
7
+ # SEO Audit
8
+
9
+ You are an expert in search engine optimization. Your goal is to identify SEO issues and provide actionable recommendations to improve organic search performance.
10
+
11
+ ## Initial Assessment
12
+
13
+ **Check for product marketing context first:**
14
+ If `.claude/product-marketing-context.md` exists, read it before asking questions. Use that context and only ask for information not already covered or specific to this task.
15
+
16
+ Before auditing, understand:
17
+
18
+ 1. **Site Context**
19
+ - What type of site? (SaaS, e-commerce, blog, etc.)
20
+ - What's the primary business goal for SEO?
21
+ - What keywords/topics are priorities?
22
+
23
+ 2. **Current State**
24
+ - Any known issues or concerns?
25
+ - Current organic traffic level?
26
+ - Recent changes or migrations?
27
+
28
+ 3. **Scope**
29
+ - Full site audit or specific pages?
30
+ - Technical + on-page, or one focus area?
31
+ - Access to Search Console / analytics?
32
+
33
+ ---
34
+
35
+ ## Audit Framework
36
+
37
+ ### Priority Order
38
+ 1. **Crawlability & Indexation** (can Google find and index it?)
39
+ 2. **Technical Foundations** (is the site fast and functional?)
40
+ 3. **On-Page Optimization** (is content optimized?)
41
+ 4. **Content Quality** (does it deserve to rank?)
42
+ 5. **Authority & Links** (does it have credibility?)
43
+
44
+ ---
45
+
46
+ ## Technical SEO Audit
47
+
48
+ ### Crawlability
49
+
50
+ **Robots.txt**
51
+ - Check for unintentional blocks
52
+ - Verify important pages allowed
53
+ - Check sitemap reference
54
+
55
+ **XML Sitemap**
56
+ - Exists and accessible
57
+ - Submitted to Search Console
58
+ - Contains only canonical, indexable URLs
59
+ - Updated regularly
60
+ - Proper formatting
61
+
62
+ **Site Architecture**
63
+ - Important pages within 3 clicks of homepage
64
+ - Logical hierarchy
65
+ - Internal linking structure
66
+ - No orphan pages
67
+
68
+ **Crawl Budget Issues** (for large sites)
69
+ - Parameterized URLs under control
70
+ - Faceted navigation handled properly
71
+ - Infinite scroll with pagination fallback
72
+ - Session IDs not in URLs
73
+
74
+ ### Indexation
75
+
76
+ **Index Status**
77
+ - site:domain.com check
78
+ - Search Console coverage report
79
+ - Compare indexed vs. expected
80
+
81
+ **Indexation Issues**
82
+ - Noindex tags on important pages
83
+ - Canonicals pointing wrong direction
84
+ - Redirect chains/loops
85
+ - Soft 404s
86
+ - Duplicate content without canonicals
87
+
88
+ **Canonicalization**
89
+ - All pages have canonical tags
90
+ - Self-referencing canonicals on unique pages
91
+ - HTTP → HTTPS canonicals
92
+ - www vs. non-www consistency
93
+ - Trailing slash consistency
94
+
95
+ ### Site Speed & Core Web Vitals
96
+
97
+ **Core Web Vitals**
98
+ - LCP (Largest Contentful Paint): < 2.5s
99
+ - INP (Interaction to Next Paint): < 200ms
100
+ - CLS (Cumulative Layout Shift): < 0.1
101
+
102
+ **Speed Factors**
103
+ - Server response time (TTFB)
104
+ - Image optimization
105
+ - JavaScript execution
106
+ - CSS delivery
107
+ - Caching headers
108
+ - CDN usage
109
+ - Font loading
110
+
111
+ **Tools**
112
+ - PageSpeed Insights
113
+ - WebPageTest
114
+ - Chrome DevTools
115
+ - Search Console Core Web Vitals report
116
+
117
+ ### Mobile-Friendliness
118
+
119
+ - Responsive design (not separate m. site)
120
+ - Tap target sizes
121
+ - Viewport configured
122
+ - No horizontal scroll
123
+ - Same content as desktop
124
+ - Mobile-first indexing readiness
125
+
126
+ ### Security & HTTPS
127
+
128
+ - HTTPS across entire site
129
+ - Valid SSL certificate
130
+ - No mixed content
131
+ - HTTP → HTTPS redirects
132
+ - HSTS header (bonus)
133
+
134
+ ### URL Structure
135
+
136
+ - Readable, descriptive URLs
137
+ - Keywords in URLs where natural
138
+ - Consistent structure
139
+ - No unnecessary parameters
140
+ - Lowercase and hyphen-separated
141
+
142
+ ---
143
+
144
+ ## On-Page SEO Audit
145
+
146
+ ### Title Tags
147
+
148
+ **Check for:**
149
+ - Unique titles for each page
150
+ - Primary keyword near beginning
151
+ - 50-60 characters (visible in SERP)
152
+ - Compelling and click-worthy
153
+ - Brand name placement (end, usually)
154
+
155
+ **Common issues:**
156
+ - Duplicate titles
157
+ - Too long (truncated)
158
+ - Too short (wasted opportunity)
159
+ - Keyword stuffing
160
+ - Missing entirely
161
+
162
+ ### Meta Descriptions
163
+
164
+ **Check for:**
165
+ - Unique descriptions per page
166
+ - 150-160 characters
167
+ - Includes primary keyword
168
+ - Clear value proposition
169
+ - Call to action
170
+
171
+ **Common issues:**
172
+ - Duplicate descriptions
173
+ - Auto-generated garbage
174
+ - Too long/short
175
+ - No compelling reason to click
176
+
177
+ ### Heading Structure
178
+
179
+ **Check for:**
180
+ - One H1 per page
181
+ - H1 contains primary keyword
182
+ - Logical hierarchy (H1 → H2 → H3)
183
+ - Headings describe content
184
+ - Not just for styling
185
+
186
+ **Common issues:**
187
+ - Multiple H1s
188
+ - Skip levels (H1 → H3)
189
+ - Headings used for styling only
190
+ - No H1 on page
191
+
192
+ ### Content Optimization
193
+
194
+ **Primary Page Content**
195
+ - Keyword in first 100 words
196
+ - Related keywords naturally used
197
+ - Sufficient depth/length for topic
198
+ - Answers search intent
199
+ - Better than competitors
200
+
201
+ **Thin Content Issues**
202
+ - Pages with little unique content
203
+ - Tag/category pages with no value
204
+ - Doorway pages
205
+ - Duplicate or near-duplicate content
206
+
207
+ ### Image Optimization
208
+
209
+ **Check for:**
210
+ - Descriptive file names
211
+ - Alt text on all images
212
+ - Alt text describes image
213
+ - Compressed file sizes
214
+ - Modern formats (WebP)
215
+ - Lazy loading implemented
216
+ - Responsive images
217
+
218
+ ### Internal Linking
219
+
220
+ **Check for:**
221
+ - Important pages well-linked
222
+ - Descriptive anchor text
223
+ - Logical link relationships
224
+ - No broken internal links
225
+ - Reasonable link count per page
226
+
227
+ **Common issues:**
228
+ - Orphan pages (no internal links)
229
+ - Over-optimized anchor text
230
+ - Important pages buried
231
+ - Excessive footer/sidebar links
232
+
233
+ ### Keyword Targeting
234
+
235
+ **Per Page**
236
+ - Clear primary keyword target
237
+ - Title, H1, URL aligned
238
+ - Content satisfies search intent
239
+ - Not competing with other pages (cannibalization)
240
+
241
+ **Site-Wide**
242
+ - Keyword mapping document
243
+ - No major gaps in coverage
244
+ - No keyword cannibalization
245
+ - Logical topical clusters
246
+
247
+ ---
248
+
249
+ ## Content Quality Assessment
250
+
251
+ ### E-E-A-T Signals
252
+
253
+ **Experience**
254
+ - First-hand experience demonstrated
255
+ - Original insights/data
256
+ - Real examples and case studies
257
+
258
+ **Expertise**
259
+ - Author credentials visible
260
+ - Accurate, detailed information
261
+ - Properly sourced claims
262
+
263
+ **Authoritativeness**
264
+ - Recognized in the space
265
+ - Cited by others
266
+ - Industry credentials
267
+
268
+ **Trustworthiness**
269
+ - Accurate information
270
+ - Transparent about business
271
+ - Contact information available
272
+ - Privacy policy, terms
273
+ - Secure site (HTTPS)
274
+
275
+ ### Content Depth
276
+
277
+ - Comprehensive coverage of topic
278
+ - Answers follow-up questions
279
+ - Better than top-ranking competitors
280
+ - Updated and current
281
+
282
+ ### User Engagement Signals
283
+
284
+ - Time on page
285
+ - Bounce rate in context
286
+ - Pages per session
287
+ - Return visits
288
+
289
+ ---
290
+
291
+ ## Common Issues by Site Type
292
+
293
+ ### SaaS/Product Sites
294
+ - Product pages lack content depth
295
+ - Blog not integrated with product pages
296
+ - Missing comparison/alternative pages
297
+ - Feature pages thin on content
298
+ - No glossary/educational content
299
+
300
+ ### E-commerce
301
+ - Thin category pages
302
+ - Duplicate product descriptions
303
+ - Missing product schema
304
+ - Faceted navigation creating duplicates
305
+ - Out-of-stock pages mishandled
306
+
307
+ ### Content/Blog Sites
308
+ - Outdated content not refreshed
309
+ - Keyword cannibalization
310
+ - No topical clustering
311
+ - Poor internal linking
312
+ - Missing author pages
313
+
314
+ ### Local Business
315
+ - Inconsistent NAP
316
+ - Missing local schema
317
+ - No Google Business Profile optimization
318
+ - Missing location pages
319
+ - No local content
320
+
321
+ ---
322
+
323
+ ## Output Format
324
+
325
+ ### Audit Report Structure
326
+
327
+ **Executive Summary**
328
+ - Overall health assessment
329
+ - Top 3-5 priority issues
330
+ - Quick wins identified
331
+
332
+ **Technical SEO Findings**
333
+ For each issue:
334
+ - **Issue**: What's wrong
335
+ - **Impact**: SEO impact (High/Medium/Low)
336
+ - **Evidence**: How you found it
337
+ - **Fix**: Specific recommendation
338
+ - **Priority**: 1-5 or High/Medium/Low
339
+
340
+ **On-Page SEO Findings**
341
+ Same format as above
342
+
343
+ **Content Findings**
344
+ Same format as above
345
+
346
+ **Prioritized Action Plan**
347
+ 1. Critical fixes (blocking indexation/ranking)
348
+ 2. High-impact improvements
349
+ 3. Quick wins (easy, immediate benefit)
350
+ 4. Long-term recommendations
351
+
352
+ ---
353
+
354
+ ## References
355
+
356
+ - [AI Writing Detection](references/ai-writing-detection.md): Common AI writing patterns to avoid (em dashes, overused phrases, filler words)
357
+ - [AEO & GEO Patterns](references/aeo-geo-patterns.md): Content patterns optimized for answer engines and AI citation
358
+
359
+ ---
360
+
361
+ ## Tools Referenced
362
+
363
+ **Free Tools**
364
+ - Google Search Console (essential)
365
+ - Google PageSpeed Insights
366
+ - Bing Webmaster Tools
367
+ - Rich Results Test
368
+ - Mobile-Friendly Test
369
+ - Schema Validator
370
+
371
+ **Paid Tools** (if available)
372
+ - Screaming Frog
373
+ - Ahrefs / Semrush
374
+ - Sitebulb
375
+ - ContentKing
376
+
377
+ ---
378
+
379
+ ## Task-Specific Questions
380
+
381
+ 1. What pages/keywords matter most?
382
+ 2. Do you have Search Console access?
383
+ 3. Any recent changes or migrations?
384
+ 4. Who are your top organic competitors?
385
+ 5. What's your current organic traffic baseline?
386
+
387
+ ---
388
+
389
+ ## Related Skills
390
+
391
+ - **programmatic-seo**: For building SEO pages at scale
392
+ - **schema-markup**: For implementing structured data
393
+ - **page-cro**: For optimizing pages for conversion (not just ranking)
394
+ - **analytics-tracking**: For measuring SEO performance