{"id":49594292,"url":"https://github.com/dantuck/claude-kit","last_synced_at":"2026-05-04T03:08:52.288Z","repository":{"id":354054491,"uuid":"1221941120","full_name":"dantuck/claude-kit","owner":"dantuck","description":null,"archived":false,"fork":false,"pushed_at":"2026-04-26T22:13:47.000Z","size":31,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-27T00:16:42.089Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dantuck.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-04-26T21:50:52.000Z","updated_at":"2026-04-26T22:13:51.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/dantuck/claude-kit","commit_stats":null,"previous_names":["dantuck/claude-kit"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/dantuck/claude-kit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dantuck%2Fclaude-kit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dantuck%2Fclaude-kit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dantuck%2Fclaude-kit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dantuck%2Fclaude-kit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dantuck","download_url":"https://codeload.github.com/dantuck/claude-kit/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dantuck%2Fclaude-kit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32592741,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-03T22:12:39.696Z","status":"online","status_checked_at":"2026-05-04T02:00:06.625Z","response_time":58,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-05-04T03:08:51.414Z","updated_at":"2026-05-04T03:08:52.280Z","avatar_url":"https://github.com/dantuck.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# claude-kit\n\nA personal Claude Code plugin marketplace. Marketplace ID: `claude-kit`.\n\n## Plugins\n\n| Plugin | Type | Category | Description |\n|--------|------|----------|-------------|\n| [conventional-commits](skills/conventional-commits) | skill | productivity | Enforces Conventional Commits v1.0.0 for all git commit messages |\n| [wt-workflow](skills/wt-workflow) | skill | productivity | Skill for the `wt` git worktree CLI — all subcommands and the core workflow |\n| [add-plugin](skills/add-plugin) | skill | productivity | Scaffolds and registers new plugins in this marketplace |\n| [secret-guard](hooks/secret-guard) | hook | security | Blocks reading secret files, env var dumps, and warns on writing credentials |\n\n---\n\n## Setup\n\n### 1. Register the marketplace\n\n```bash\nclaude plugin marketplace add https://github.com/dantuck/claude-kit\n```\n\nVerify it was registered:\n\n```bash\nclaude plugin marketplace list\n# claude-kit → https://github.com/dantuck/claude-kit\n```\n\n### 2. Install plugins\n\nInstall any plugin from the marketplace with:\n\n```bash\nclaude plugin install \u003cplugin-name\u003e@claude-kit --scope user\n```\n\nThe `--scope user` flag installs the plugin for all your projects. Omit it to install for the current project only.\n\n**Install all plugins at once:**\n\n```bash\nclaude plugin install conventional-commits@claude-kit --scope user\nclaude plugin install wt-workflow@claude-kit --scope user\nclaude plugin install add-plugin@claude-kit --scope user\nclaude plugin install secret-guard@claude-kit --scope user\n```\n\n### 3. Verify installation\n\n```bash\nclaude plugin list\n```\n\n---\n\n## Plugin details\n\n### conventional-commits\n\nEnforces [Conventional Commits v1.0.0](https://www.conventionalcommits.org/) for every git commit. Activates automatically whenever Claude creates or suggests a commit message.\n\n- Structured commit types: `feat`, `fix`, `docs`, `style`, `refactor`, `perf`, `test`, `build`, `ci`, `chore`, `revert`\n- Optional scope in parentheses: `feat(auth): add OAuth2`\n- Breaking change notation: `!` suffix or `BREAKING CHANGE:` footer\n- Never adds `Co-Authored-By` or AI attribution footers\n- User-invocable as `/conventional-commits:commit`\n\n```bash\nclaude plugin install conventional-commits@claude-kit --scope user\n```\n\n### wt-workflow\n\nTeaches Claude the [`wt`](https://codeberg.org/tuck/wt) git worktree CLI. Activates on any mention of `wt` commands, `.worktreekeep`, or worktree management tasks.\n\n- Covers installation (fish shell and bash/zsh)\n- All subcommands: `wt switch`, `wt update`, `wt remove`, `wt prune`, `wt review`, `wt -w`, `wt doctor`\n- The stable workflow pattern for keeping `main` clean\n- `.worktreekeep` config for persisting worktrees across `wt prune`\n\n```bash\nclaude plugin install wt-workflow@claude-kit --scope user\n```\n\n### add-plugin\n\nGuides Claude through creating a new plugin in this marketplace. Activates on requests like \"add a plugin\", \"create a plugin\", or \"scaffold a plugin\".\n\n- Scaffolds the full directory structure for skill or hook-only plugins\n- Writes `SKILL.md`, `plugin.json`, `evals/evals.json`, and `README.md`\n- Updates `marketplace.json` and validates the manifest\n- Installs the plugin immediately after creation\n- User-invocable as `/add-plugin:add-plugin`\n\n```bash\nclaude plugin install add-plugin@claude-kit --scope user\n```\n\n### secret-guard\n\nA hook plugin that intercepts tool calls before they execute and prevents secrets from leaking into the conversation.\n\n| Trigger | Action |\n|---------|--------|\n| `Bash` reading `.env`, `*.pem`, `*.key`, credentials files | Block |\n| `Bash` running `env`, `printenv`, or echoing credential vars | Block |\n| `Read` on any secrets-pattern path | Block |\n| `Write` / `Edit` to a secrets-pattern path | Warn |\n\nDetected patterns: `.env*`, `*.pem`, `*.key`, `*.p12`, `*.pfx`, `*.jks`, `*.ppk`, `*.cer`, `*.crt`, `credentials`, `secrets.yml/json/toml`, `id_rsa`, `id_ed25519`, `.netrc`, `.pgpass`.\n\n```bash\nclaude plugin install secret-guard@claude-kit --scope user\n```\n\n---\n\n## Repository structure\n\n```\nclaude-kit/\n├── .claude-plugin/\n│   └── marketplace.json        ← marketplace manifest\n├── skills/\n│   └── \u003cplugin-name\u003e/          ← skill plugins\n│       ├── .claude-plugin/\n│       │   └── plugin.json     ← plugin manifest\n│       ├── skills/\n│       │   └── \u003cplugin-name\u003e/\n│       │       └── SKILL.md    ← skill loaded when installed as plugin\n│       ├── evals/\n│       │   └── evals.json\n│       ├── SKILL.md            ← skill loaded when used standalone\n│       └── README.md\n└── hooks/\n    └── \u003cplugin-name\u003e/          ← hook-only plugins (no SKILL.md)\n        ├── .claude-plugin/\n        │   └── plugin.json\n        ├── hooks/\n        │   ├── hooks.json\n        │   └── pretooluse.py\n        ├── evals/\n        │   └── evals.json\n        └── README.md\n```\n\n---\n\n## Adding a new plugin\n\nUse the `add-plugin` skill — it handles scaffolding, writing all files, updating `marketplace.json`, validating, and installing. Do not scaffold manually unless the skill is unavailable.\n\nAfter adding a plugin, update the table at the top of this README.\n\n---\n\n## Maintenance commands\n\n```bash\n# Validate a plugin manifest\nclaude plugin validate skills/\u003cname\u003e\nclaude plugin validate hooks/\u003cname\u003e\n\n# Validate the marketplace manifest\nclaude plugin validate ~/claude-kit\n\n# Sync the marketplace index after editing marketplace.json\nclaude plugin marketplace update claude-kit\n\n# Tag a release\nclaude plugin tag skills/\u003cname\u003e\nclaude plugin tag hooks/\u003cname\u003e\n```\n\n---\n\n## Contributing\n\nPlugins in this repo are personal tools, but suggestions and improvements are welcome.\n\n- Open an issue to propose a new plugin or report a bug\n- Fork and submit a pull request for fixes or enhancements\n- All commit messages must follow [Conventional Commits v1.0.0](https://www.conventionalcommits.org/)\n- New plugins require at least 3 evals (happy path, edge case, negative case)\n\n---\n\n## License\n\nMIT © Plan To Live LLC\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdantuck%2Fclaude-kit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdantuck%2Fclaude-kit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdantuck%2Fclaude-kit/lists"}