Customer-facing content and GTM strategy artifacts, plus shared writing and video-creation skills.
Slash commands in commands/ for:
- Creating customer-facing content (blog posts, content repurposing)
- Maintaining GTM strategy artifacts (positioning, personas, marketing strategy)
Auto-activating skills in skills/:
humanizer— strip AI-writing patterns from existing drafts (blader/humanizer, MIT)human-writing— draft fresh content in a peer/human voice (pr-pm/prpm)remotion— Remotion video-in-React best practices (remotion-dev/remotion; seeskills/remotion/NOTICE)vibedata-docs-router— route to the most-relevant Vibedata documentation source(s) by walking thevd-intelligencegraph artifact
claude plugin add accelerate-data/content-skillsclaude --plugin-dir . # Load without installing
claude plugin validate . # Validate structure
python3 scripts/validate_plugin_manifests.py
python3 scripts/check_plugin_version_bump.py --base-ref origin/main
python3 -m unittest discover -s testsclaude plugin validate . validates Claude plugin structure. scripts/validate_plugin_manifests.py validates both Claude and Codex manifests, including the shared commands content surface. scripts/check_plugin_version_bump.py verifies that Claude and Codex versions match and that the shared version has been bumped above origin/main.
Codex CLI marketplace registration is performed against a marketplace repository/root, not directly against this plugin source repository. Keep this repository as the source plugin package and verify marketplace install/discovery from the marketplace root after merge.
- Make your changes to commands, manifests, or documentation
- Bump
versionin both.claude-plugin/plugin.jsonand.codex-plugin/plugin.json - Keep both manifests on the
content-skillsname and./commandscontent surface - Validate:
claude plugin validate . - Validate manifests:
python3 scripts/validate_plugin_manifests.py - Validate version bump:
python3 scripts/check_plugin_version_bump.py --base-ref origin/main - Test locally:
claude --plugin-dir . - Commit and push — the marketplace picks up the latest default branch automatically (no version field in marketplace entries)