Skills for Claude Code.
See SKILLS.md for a complete guide to all skills available in this marketplace, including:
- When Claude automatically uses each skill
- Example queries and use cases
- Installation and setup instructions
- Prerequisites and configuration requirements
Quick preview of available skills:
- beads-bridge - Track multi-repo work with GitHub/Shortcut integration
Bridge Beads issue tracking with GitHub Projects and Shortcut for unified project visibility across multiple repositories.
Requirements:
- Node.js >= 18.0.0
- Beads CLI (
bd) >= v0.21.3
📖 Documentation | 🚀 Quick Start
/plugin marketplace add wellmaintained/skills/plugin install beads-bridge@wellmaintainedThis repository uses just as a command runner for development tasks.
View all available commands:
just
# or
just --listCommon commands:
# Validation and checks
just validate # Validate all JSON schemas
just check-versions # Check version consistency
just check # Run all root-level checks
# Beads-bridge plugin
just build-bridge # Build the plugin
just test-bridge # Run tests
just dev-bridge # Watch TypeScript compilation
just qa-bridge # Run all quality checks (lint + type-check + test)
# Combined workflows
just ci # Full CI check (validate + build + test)
just install-all # Install all dependenciesSee the Justfile for all available commands.
This repository uses JSON schemas to validate plugin configurations. Before submitting changes to marketplace.json or plugin.json files, validate them locally:
# Validate all schemas (recommended)
npm run validate
# Or validate individually
npm run validate:marketplace
npm run validate:pluginsSee schemas/README.md for detailed documentation on schema validation.
Set up automatic validation before commits:
cat > .git/hooks/pre-commit <<'EOF'
#!/bin/bash
exec bash scripts/validate-schemas.sh
EOF
chmod +x .git/hooks/pre-commitThis repository uses automated releases powered by semantic-release.
For contributors:
- Use conventional commit messages
- Releases happen automatically when you push to
main - See RELEASE.md for detailed release process
Version bump rules:
| Commit Type | Version Bump | Example |
|---|---|---|
fix: |
Patch (1.0.0 → 1.0.1) | Bug fixes and corrections |
feat: |
Minor (1.0.0 → 1.1.0) | New features and enhancements |
feat!: or BREAKING CHANGE: |
Major (1.0.0 → 2.0.0) | Breaking changes |
Individual plugins are licensed under their respective licenses (see each plugin's LICENSE file).
This marketplace is MIT licensed. See LICENSE.
Made by 🤖, overseen by 👨🏻💻