Plugin marketplace for Constellos development tools
npx claudepluginhub constellos/claude-codeCore task execution logging and transcript utilities for all Claude Code sessions
GitHub workflow orchestration with branch context, commit enhancement, and CI management
Next.js, Supabase, and AI SDK development utilities
Project context discovery, markdown-friendly documentation, and maintenance for Claude Code
Production-ready workflow orchestration with 79 focused plugins, 184 specialized agents, and 150 skills - optimized for granular installation and minimal token usage
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations
No description available.
A curated marketplace of plugins that extend Claude Code with typed hooks for development workflows. This repository provides both ready-to-use plugins and shared TypeScript utilities for creating your own.
This marketplace contains three production-ready plugins designed for modern development workflows:
All plugins leverage shared TypeScript utilities for consistent behavior, comprehensive type safety, and automatic logging. Hooks are self-executable TypeScript files with full type definitions.
.claude/settings.json:{
"extraKnownMarketplaces": {
"constellos": {
"source": {
"source": "directory",
"path": "./.claude-plugin"
}
}
}
}
claude plugin install github-orchestration@constellos
claude plugin install nextjs-supabase-ai-sdk-dev@constellos
claude plugin install project-context@constellos
Or enable them in your settings:
{
"enabledPlugins": {
"github-orchestration@constellos": true,
"nextjs-supabase-ai-sdk-dev@constellos": true,
"project-context@constellos": true
}
}
github-orchestration)Purpose: Comprehensive GitHub workflow orchestration for issue-driven development with automatic context discovery and commit enhancement.
Key Features:
Hooks:
install-github.ts) - Installs GitHub CLI (non-blocking)add-github-context.ts) - Displays branch issue context and sync status (non-blocking)sync-plan-to-issue.ts) - Syncs plan files to GitHub issues (non-blocking)enhance-commit-context.ts) - Enriches commits with task metadata (non-blocking)commit-task.ts) - Auto-commits agent work (non-blocking)commit-session-check-pr-status.ts) - Session commit and PR checks (progressive blocking)Use Cases:
Documentation: plugins/github-orchestration/README.md
nextjs-supabase-ai-sdk-dev)Purpose: Enforces code quality through automated checks at both file and project levels for Next.js, Supabase, and AI SDK projects.
Key Features:
Hooks:
install-vercel.ts, install-supabase.ts) - CLI installation (non-blocking)log-task-call.ts) - Task context logging (non-blocking)log-task-result.ts) - Task result logging (non-blocking)encourage-ui-review.ts) - UI review encouragement (non-blocking)check-file-eslint.ts) - ESLint on files (non-blocking, informational)check-file-types.ts) - TypeScript on files (non-blocking, informational)check-file-tsdoc.ts) - TSDoc validation (non-blocking, informational)check-file-vitest-results.ts) - Test execution (non-blocking, informational)check-global-eslint.ts) - Project-wide ESLint (blocking)check-global-types.ts) - Project-wide TypeScript (blocking)check-global-vitest-results.ts) - Full test suite (blocking)