Each plugin's source in marketplace.json pointed to "./" (repo root),
causing every plugin install to cache the entire repository. Now each
plugin has its own directory under dist/plugins/ containing only its
files.
- Add scripts/build_plugins.py to generate per-plugin dist directories
- Update all marketplace.json source paths to dist/plugins/<name>
- Add build step to auto-bump CI workflow
- Add dist/ freshness validation to CI
BREAKING CHANGE: Each skill, agent, and command is now an individual plugin
- Rename marketplace from skills-collection to agent-skills
- Add 51 individual plugin entries (39 skills, 6 agents, 6 commands)
- Each plugin uses strict: false with explicit paths
- Remove plugin.json (redundant with new marketplace structure)
- Update README with new installation instructions
- Update add-skill command to add marketplace.json entries
- Update bump_version.py to only use marketplace.json
- Add datadog-cli skill from cc-datadog repository
- Implement GitHub Actions workflow for automatic sync (2x daily)
- Sync workflow runs at 9h and 21h UTC (6h and 18h BRT)
- Manual trigger available via workflow_dispatch
- cc-datadog remains source of truth for the skill
- Add auto-bump.yaml: automatically bumps patch version on push to main
when skills/, agents/, or commands/ change
- Rename validate.yaml to main.yaml to match claude-plugins convention
- Skip auto-bump on version bump commits to avoid infinite loops
- Add marketplace.json with agent-skills plugin registry
- Add plugin.json with metadata and configuration
- Add GitHub workflow for validation
- Add bump_version.py script for version management