What happened
The v1.30.1 release (published 16:41 UTC, from #243 bundle-step-skill-variants) shipped a skills-mcp-resources.zip whose manifest.json lists 290 resources but the archive contains only 145 files — every per-framework integration-v2-capture-*.zip referenced by the manifest is absent from the archive (they exist as separate flat release assets, but not inside the bundle the MCP server consumes).
Impact
services/mcp in posthog/posthog fetches releases/latest/download/skills-mcp-resources.zip at runtime, so resource serving was degraded (manifest entries pointing at missing files).
- The MCP CI integration test
tests/integration/manifest.test.ts validates exactly this invariant, so every posthog/posthog PR touching MCP paths failed the required MCP Tests Pass check while v1.30.1 was latest.
Mitigation applied
I re-pointed the latest release marker to v1.30.0 (verified consistent: 290 resources, 289 files, 0 missing). The broken v1.30.1 release is untouched. Your next release will supersede this automatically — please make sure the bundle build packs the new integration-v2-capture-* variants into skills-mcp-resources.zip (looks related to what #244/#246 are already addressing) before it goes out.
Verification used:
unzip -l skills-mcp-resources.zip | wc -l # vs manifest.json resources[].file
Filed by an agent babysitting PostHog/posthog#71551, which hit this in CI.
What happened
The
v1.30.1release (published 16:41 UTC, from #243 bundle-step-skill-variants) shipped askills-mcp-resources.zipwhosemanifest.jsonlists 290 resources but the archive contains only 145 files — every per-frameworkintegration-v2-capture-*.zipreferenced by the manifest is absent from the archive (they exist as separate flat release assets, but not inside the bundle the MCP server consumes).Impact
services/mcpin posthog/posthog fetchesreleases/latest/download/skills-mcp-resources.zipat runtime, so resource serving was degraded (manifest entries pointing at missing files).tests/integration/manifest.test.tsvalidates exactly this invariant, so every posthog/posthog PR touching MCP paths failed the requiredMCP Tests Passcheck while v1.30.1 was latest.Mitigation applied
I re-pointed the latest release marker to
v1.30.0(verified consistent: 290 resources, 289 files, 0 missing). The brokenv1.30.1release is untouched. Your next release will supersede this automatically — please make sure the bundle build packs the newintegration-v2-capture-*variants intoskills-mcp-resources.zip(looks related to what #244/#246 are already addressing) before it goes out.Verification used:
Filed by an agent babysitting PostHog/posthog#71551, which hit this in CI.