{"id":49714246,"url":"https://github.com/sebastianelvis/dev-skills","last_synced_at":"2026-05-08T19:03:38.353Z","repository":{"id":355149890,"uuid":"1217786111","full_name":"SebastianElvis/dev-skills","owner":"SebastianElvis","description":null,"archived":false,"fork":false,"pushed_at":"2026-05-02T04:15:41.000Z","size":59,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-02T06:22:04.969Z","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/SebastianElvis.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":null,"dco":null,"cla":null}},"created_at":"2026-04-22T08:07:35.000Z","updated_at":"2026-05-02T04:15:47.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/SebastianElvis/dev-skills","commit_stats":null,"previous_names":["sebastianelvis/dev-skills"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/SebastianElvis/dev-skills","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SebastianElvis%2Fdev-skills","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SebastianElvis%2Fdev-skills/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SebastianElvis%2Fdev-skills/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SebastianElvis%2Fdev-skills/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SebastianElvis","download_url":"https://codeload.github.com/SebastianElvis/dev-skills/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SebastianElvis%2Fdev-skills/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32793488,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-08T08:22:46.396Z","status":"ssl_error","status_checked_at":"2026-05-08T08:22:45.650Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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-08T19:03:37.038Z","updated_at":"2026-05-08T19:03:38.346Z","avatar_url":"https://github.com/SebastianElvis.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# dev-skills\n\nA collection of general software-development agent skills. Installable via\neither the [Vercel Labs `skills` CLI](https://github.com/vercel-labs/skills) or\n[Claude Code's built-in plugin system](https://code.claude.com/docs/en/plugins).\n\n## Install\n\n### Via Claude Code (recommended for Claude Code users)\n\n```bash\n# Add this repo as a plugin marketplace, then install\n/plugin marketplace add SebastianElvis/dev-skills\n/plugin install dev-skills@dev-skills\n```\n\nAfter installing, run `/reload-plugins` to activate. Skills are namespaced\nunder the plugin name, e.g. invoke `pr-gen` as `/dev-skills:pr-gen`. You can\nalso browse and manage installed plugins via the `/plugin` interactive menu.\n\n### Via the `skills` CLI (works with any agent)\n\n```bash\n# All skills in this repo\nnpx skills add SebastianElvis/dev-skills\n\n# Just one skill\nnpx skills add SebastianElvis/dev-skills --skill pr-gen\n\n# Global install (all projects)\nnpx skills add SebastianElvis/dev-skills -g\n```\n\nWorks with Claude Code, Codex, Cursor, OpenCode, and every other agent the\n`skills` CLI supports.\n\n## Skills\n\n| Skill | What it does |\n| --- | --- |\n| [`pr-gen`](skills/pr-gen) | Generate or update a GitHub PR title and description from the actual code changes on the current branch. |\n\n## Layout\n\n```\n.claude-plugin/marketplace.json   # Marketplace catalog (lists this plugin)\n.claude-plugin/plugin.json        # Claude Code plugin manifest\nskills/\u003cname\u003e/SKILL.md            # Each skill (standard location for both ecosystems)\n```\n\nThe repo doubles as both a **marketplace** (catalog at\n`.claude-plugin/marketplace.json`) and the **plugin** itself (manifest at\n`.claude-plugin/plugin.json`, source `\"./\"`), so a single\n`/plugin marketplace add` registers the catalog and `/plugin install` pulls\nthe plugin from the same repo.\n\n## Adding a new skill\n\n```bash\ncd skills \u0026\u0026 npx skills init \u003cskill-name\u003e\n```\n\nThen edit `skills/\u003cskill-name\u003e/SKILL.md` and add it to the table above.\n\n## Evaluating skills\n\nThe repo ships an eval harness under `evals/`, modeled on Anthropic's\n[Demystifying Evals for AI Agents](https://www.anthropic.com/engineering/demystifying-evals-for-ai-agents).\nBoth the runner and the LLM judge shell out to `claude -p` (no API key required).\n\n```bash\n# Does the skill trigger on the right prompts and skip the wrong ones?\npython3 evals/run.py triggering --skill pr-gen --trials 2 --parallel 6\n\n# Given it triggered, is the output good? Runs against fresh tmp git repos.\npython3 evals/run.py functional --skill pr-gen\n```\n\nSee [evals/README.md](evals/README.md) for layout, judge design, and how to\nadd cases for a new skill.\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsebastianelvis%2Fdev-skills","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsebastianelvis%2Fdev-skills","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsebastianelvis%2Fdev-skills/lists"}