{"id":50464355,"url":"https://github.com/claude-contrib/claude-skills","last_synced_at":"2026-06-01T06:30:50.607Z","repository":{"id":358592896,"uuid":"1172320441","full_name":"claude-contrib/claude-skills","owner":"claude-contrib","description":"Slash commands for Claude Code — manage GitHub issues and pull requests, one focused workflow at a time.","archived":false,"fork":false,"pushed_at":"2026-06-01T02:39:08.000Z","size":212,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-06-01T04:22:04.276Z","etag":null,"topics":["claude","claude-code","claude-code-plugins","claude-code-plugins-marketplace","claude-skills","developer-tools","github","github-cli","slash-commands"],"latest_commit_sha":null,"homepage":"","language":"jq","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/claude-contrib.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","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":null,"dco":null,"cla":null}},"created_at":"2026-03-04T07:10:11.000Z","updated_at":"2026-06-01T02:39:12.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/claude-contrib/claude-skills","commit_stats":null,"previous_names":["claude-contrib/claude-skills"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/claude-contrib/claude-skills","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/claude-contrib%2Fclaude-skills","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/claude-contrib%2Fclaude-skills/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/claude-contrib%2Fclaude-skills/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/claude-contrib%2Fclaude-skills/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/claude-contrib","download_url":"https://codeload.github.com/claude-contrib/claude-skills/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/claude-contrib%2Fclaude-skills/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33763647,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-01T02:00:06.963Z","response_time":115,"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":["claude","claude-code","claude-code-plugins","claude-code-plugins-marketplace","claude-skills","developer-tools","github","github-cli","slash-commands"],"created_at":"2026-06-01T06:30:45.405Z","updated_at":"2026-06-01T06:30:50.596Z","avatar_url":"https://github.com/claude-contrib.png","language":"jq","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Claude Skills\n\n\u003e Slash commands for [Claude Code](https://claude.ai/code) — install a skill, type a command, get the job done. Every time.\n\n[![Claude](https://img.shields.io/badge/Claude-AI-black?logo=anthropic)](https://claude.ai)\n[![CI](https://github.com/claude-contrib/claude-skills/actions/workflows/ci.yml/badge.svg)](https://github.com/claude-contrib/claude-skills/actions/workflows/ci.yml)\n[![Release](https://img.shields.io/github/v/release/claude-contrib/claude-skills)](https://github.com/claude-contrib/claude-skills/releases/latest)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)\n\nSkills are intentional — you invoke them when you need them. Each skill is a focused workflow: one command, one job, done right. No more writing the same prompt over and over.\n\n## How Skills Work\n\nType a command in Claude Code. Claude reads the skill's prompt template, executes the workflow, and delivers the result. That's it.\n\n```\n/gh-issue-plan 42\n```\n→ Fetches issue #42, drafts a TDD-style implementation plan with estimates, shows it for review, posts it as a comment after you confirm.\n\n## Requirements\n\n- [Claude Code](https://docs.anthropic.com/en/docs/claude-code/setup) (`claude`)\n\nInstall `claude` separately: [Claude Code installation guide](https://docs.anthropic.com/en/docs/claude-code/setup)\n\n## Quickstart\n\n**1. Register the marketplace** in `~/.claude/settings.json`:\n\n```json\n{\n  \"extraKnownMarketplaces\": {\n    \"claude-skills\": {\n      \"source\": {\n        \"source\": \"github\",\n        \"repo\": \"claude-contrib/claude-skills\"\n      }\n    }\n  }\n}\n```\n\n**2. Install a skill** inside Claude Code:\n\n```\n/plugin install github@claude-skills\n```\n\n**3. Use it:**\n\n```\n/gh-issue-plan 42\n```\n\n## Available Skills\n\n| Skill | Commands | What it does |\n|-------|----------|--------------|\n| [`github`](plugins/github/README.md) | `/gh-issue-comment`, `/gh-issue-edit`, `/gh-issue-plan`, `/gh-pr-comment`, `/gh-pr-edit`, `/gh-pr-review` | Manage GitHub issues and pull requests — comment, edit, plan, and review via a draft → confirm → post workflow |\n\n## Publish Your Own Skill\n\nHave a workflow you run constantly? Turn it into a one-liner for the whole community:\n\n```\nplugins/your-skill/\n├── .claude-plugin/plugin.json     # name, version, description\n├── commands/your-command.md       # the prompt template\n└── README.md                     # usage + examples\n```\n\nCommand template format:\n\n```markdown\n---\ndescription: Shown in /help output\nargument-hint: [optional-arg]\n---\n\n# Your Command\n\nStep-by-step instructions for Claude...\n```\n\n1. **Fork** this repo and drop your plugin under `plugins/`\n2. **Register** it in `.claude-plugin/marketplace.json`\n3. **Open a PR** — CI validates structure automatically\n\n→ [Read the full authoring guide](docs/README.md)\n\n## Development\n\nThe repo ships a Nix flake for a reproducible dev environment with all CI tooling:\n\n```bash\nnix develop\n```\n\nProvides: `python3` + `check-jsonschema`, `jq`, `bash`, `shellcheck`, `gh`.\n\n## The claude-contrib Ecosystem\n\n| Repo | What it provides |\n|------|-----------------|\n| [claude-extensions](https://github.com/claude-contrib/claude-extensions) | Hooks, context rules, session automation |\n| [claude-features](https://github.com/claude-contrib/claude-features) | Devcontainer features for Claude Code and Anthropic tools |\n| [claude-languages](https://github.com/claude-contrib/claude-languages) | LSP language servers — completions, diagnostics, hover |\n| [claude-sandbox](https://github.com/claude-contrib/claude-sandbox) | Sandboxed Docker environment for Claude Code |\n| [claude-services](https://github.com/claude-contrib/claude-services) | MCP servers — browser, filesystem, sequential thinking |\n| **claude-skills** ← you are here | Slash commands for Claude Code |\n| [claude-status](https://github.com/claude-contrib/claude-status) | Live status line — context, cost, model, branch, worktree |\n\n## License\n\nMIT — use it, fork it, extend it.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fclaude-contrib%2Fclaude-skills","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fclaude-contrib%2Fclaude-skills","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fclaude-contrib%2Fclaude-skills/lists"}