From 0190278a0690e86cb2f5654909438f4db3d4b420 Mon Sep 17 00:00:00 2001 From: a-baran-orhan Date: Thu, 16 Jul 2026 08:54:31 +0300 Subject: [PATCH 1/2] Fix Google Search indexing for playground content pages --- package.json | 4 + packages/posecode-embed/package.json | 15 +- packages/posecode-eval/package.json | 1 + packages/posecode-language/package.json | 1 + packages/posecode-lsp/package.json | 1 + packages/posecode-mcp/package.json | 15 +- packages/posecode-parser/package.json | 15 +- packages/posecode-render/package.json | 15 +- packages/posecode-share/package.json | 17 +- playground/index.html | 24 +- playground/package.json | 2 +- playground/play.html | 12 +- playground/public/favicon-192.png | Bin 4778 -> 7590 bytes playground/public/llm-guide.html | 14 +- playground/public/llms.txt | 4 +- playground/public/moves/arm-circles.html | 14 +- playground/public/moves/bent-over-row.html | 14 +- playground/public/moves/biceps.html | 14 +- playground/public/moves/bicycle-crunch.html | 14 +- playground/public/moves/bow.html | 14 +- playground/public/moves/box-squat.html | 14 +- playground/public/moves/box-step-taps.html | 14 +- playground/public/moves/box-step.html | 14 +- playground/public/moves/calf-raise.html | 14 +- playground/public/moves/chair.html | 14 +- playground/public/moves/chasse.html | 14 +- playground/public/moves/chest-opener.html | 14 +- playground/public/moves/cobra.html | 14 +- playground/public/moves/cross-body-reach.html | 14 +- playground/public/moves/crunch.html | 14 +- playground/public/moves/dance-phrase.html | 14 +- playground/public/moves/dead-bug.html | 14 +- playground/public/moves/dead-hang.html | 14 +- playground/public/moves/deadlift.html | 14 +- playground/public/moves/demi-plie.html | 14 +- playground/public/moves/elbow-forearm.html | 14 +- playground/public/moves/finger-spell.html | 14 +- playground/public/moves/fold.html | 14 +- playground/public/moves/forward-lunge.html | 14 +- playground/public/moves/front-kick.html | 14 +- playground/public/moves/glute-bridge.html | 14 +- playground/public/moves/good-morning.html | 14 +- playground/public/moves/grapevine.html | 14 +- playground/public/moves/hamstring-curl.html | 14 +- playground/public/moves/hand-wave.html | 14 +- .../public/moves/hanging-knee-raise.html | 14 +- playground/public/moves/heel-raises.html | 14 +- playground/public/moves/high-knee-march.html | 14 +- playground/public/moves/hip-abduction.html | 14 +- playground/public/moves/hip-flexion.html | 14 +- playground/public/moves/horse-stance.html | 14 +- playground/public/moves/index.html | 14 +- playground/public/moves/jab-cross.html | 14 +- playground/public/moves/jumping-jacks.html | 14 +- playground/public/moves/knee-flexion.html | 14 +- playground/public/moves/lateral.html | 14 +- playground/public/moves/make-a-fist.html | 14 +- playground/public/moves/mountain-climber.html | 14 +- .../public/moves/neck-side-stretch.html | 14 +- playground/public/moves/neck.html | 14 +- playground/public/moves/overhead-reach.html | 14 +- playground/public/moves/pinch-grip.html | 14 +- playground/public/moves/pirouette.html | 14 +- playground/public/moves/plank-hold.html | 14 +- playground/public/moves/port-de-bras.html | 14 +- playground/public/moves/posture.html | 14 +- playground/public/moves/pull-up.html | 14 +- playground/public/moves/quad-stretch.html | 14 +- playground/public/moves/quarter-turns.html | 14 +- playground/public/moves/releve.html | 14 +- .../public/moves/seated-forward-fold.html | 14 +- .../public/moves/shoulder-abduction.html | 14 +- playground/public/moves/shoulder-rolls.html | 14 +- playground/public/moves/shoulder.html | 14 +- playground/public/moves/sidebend.html | 14 +- playground/public/moves/sit-to-stand.html | 14 +- playground/public/moves/spine-rotation.html | 14 +- playground/public/moves/squat.html | 14 +- playground/public/moves/step-up.html | 14 +- playground/public/moves/superman.html | 14 +- playground/public/moves/supine-leg-raise.html | 14 +- playground/public/moves/tendu.html | 14 +- playground/public/moves/touch-toes.html | 14 +- playground/public/moves/triceps-dips.html | 14 +- playground/public/moves/twist.html | 14 +- playground/public/moves/walk-cycle.html | 14 +- playground/public/moves/wall-sit.html | 14 +- playground/public/moves/waltz-box.html | 14 +- playground/public/robots.txt | 2 +- playground/public/sitemap.xml | 308 +++++++++--------- playground/public/spec.html | 14 +- scripts/generate-content-pages.mjs | 2 +- scripts/lib/shell.mjs | 8 +- 93 files changed, 691 insertions(+), 805 deletions(-) diff --git a/package.json b/package.json index f395535..a5b10ec 100644 --- a/package.json +++ b/package.json @@ -16,6 +16,10 @@ "dev": "npm run dev -w playground", "build": "npm run build -w playground", "build:packages": "npm run build -w posecode-parser && npm run build -w posecode-share && npm run build -w posecode-render && npm run build -w posecode-embed && npm run build -w posecode-mcp", + "check:packages": "node scripts/check-packages.mjs", + "changeset": "changeset", + "version-packages": "changeset version && node scripts/sync-mcp-version.mjs", + "release": "npm run build:packages && npm run check:packages && changeset publish", "prepare:xbot": "node scripts/prepare-xbot.mjs", "eval": "tsx packages/posecode-eval/src/cli.ts", "video:cut2": "remotion render video/cut2/index.tsx PosecodeCut2 docs/launch-media/posecode-cut2-builder-16x9.mp4 --public-dir video/cut2/public --codec h264 --crf 16", diff --git a/packages/posecode-embed/package.json b/packages/posecode-embed/package.json index 308ca0a..7afbd1a 100644 --- a/packages/posecode-embed/package.json +++ b/packages/posecode-embed/package.json @@ -4,10 +4,14 @@ "description": "Embed a live 3D Posecode movement anywhere with one