{"id":44398026,"url":"https://github.com/daaain/skills","last_synced_at":"2026-02-12T05:41:16.010Z","repository":{"id":337410026,"uuid":"1151646194","full_name":"daaain/skills","owner":"daaain","description":null,"archived":false,"fork":false,"pushed_at":"2026-02-09T11:17:53.000Z","size":35,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-09T16:16:03.898Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Shell","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/daaain.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","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":"AGENTS.md","dco":null,"cla":null},"funding":{"github":"daaain"}},"created_at":"2026-02-06T18:13:35.000Z","updated_at":"2026-02-09T11:17:57.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/daaain/skills","commit_stats":null,"previous_names":["daaain/skills"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/daaain/skills","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daaain%2Fskills","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daaain%2Fskills/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daaain%2Fskills/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daaain%2Fskills/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/daaain","download_url":"https://codeload.github.com/daaain/skills/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daaain%2Fskills/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29359620,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-12T01:03:07.613Z","status":"online","status_checked_at":"2026-02-12T02:00:06.911Z","response_time":55,"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-02-12T05:41:13.565Z","updated_at":"2026-02-12T05:41:16.005Z","avatar_url":"https://github.com/daaain.png","language":"Shell","funding_links":["https://github.com/sponsors/daaain"],"categories":[],"sub_categories":[],"readme":"# Skills for Claude Code\n\nA collection of AI agent skills for Claude Code (and similar AI coding assistants). Each skill gives your agent specialised knowledge and workflows for specific tasks.\n\n**Contributions welcome!** Found a way to improve a skill or have a new one to add? [Open a PR](#contributing).\n\n## What are Skills?\n\nSkills are markdown files that give AI agents specialised knowledge and workflows for specific tasks. When you add these to your project, Claude Code can recognise when you're working on a relevant task and apply the right frameworks and best practices.\n\n## Available Skills\n\n\u003c!-- SKILLS:START --\u003e\n| Skill | Description |\n|-------|-------------|\n| [devcontainer-security](skills/devcontainer-security/) | Guide for setting up secured VS Code dev containers for coding agents. Use when creating or hardening a DevContainer to... |\n\u003c!-- SKILLS:END --\u003e\n\n## Installation\n\n### Option 1: CLI Install (Recommended)\n\nUse [npx skills](https://github.com/vercel-labs/skills) to install skills directly:\n\n```bash\n# Install all skills\nnpx skills add daaain/skills\n\n# Install specific skills\nnpx skills add daaain/skills --skill devcontainer-security\n\n# List available skills\nnpx skills add daaain/skills --list\n```\n\nThis automatically installs to your `.claude/skills/` directory.\n\n### Option 2: Claude Code Plugin\n\nInstall via Claude Code's built-in plugin system:\n\n```bash\n# Add the marketplace\n/plugin marketplace add daaain/skills\n\n# Install all skills\n/plugin install skills\n```\n\n### Option 3: Clone and Copy\n\nClone the entire repo and copy the skills folder:\n\n```bash\ngit clone https://github.com/daaain/skills.git\ncp -r skills/skills/* .claude/skills/\n```\n\n### Option 4: Git Submodule\n\nAdd as a submodule for easy updates:\n\n```bash\ngit submodule add https://github.com/daaain/skills.git .claude/skills-repo\n```\n\nThen reference skills from `.claude/skills-repo/skills/`.\n\n### Option 5: Fork and Customise\n\n1. Fork this repository\n2. Customise skills for your specific needs\n3. Clone your fork into your projects\n\n### Option 6: SkillKit (Multi-Agent)\n\nUse [SkillKit](https://github.com/rohitg00/skillkit) to install skills across multiple AI agents (Claude Code, Cursor, Copilot, etc.):\n\n```bash\n# Install all skills\nnpx skillkit install daaain/skills\n\n# Install specific skills\nnpx skillkit install daaain/skills --skill devcontainer-security\n\n# List available skills\nnpx skillkit install daaain/skills --list\n```\n\n## Usage\n\nOnce installed, just ask Claude Code for help with tasks covered by the installed skills:\n\n```\n\"Help me set up a secure dev container for coding agents\"\n→ Uses devcontainer-security skill\n```\n\nYou can also invoke skills directly:\n\n```\n/devcontainer-security\n```\n\n## Contributing\n\nFound a way to improve a skill? Have a new skill to suggest? PRs and issues welcome!\n\nSee [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines on adding or improving skills.\n\n## License\n\n[MIT](LICENSE) - Use these however you want.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdaaain%2Fskills","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdaaain%2Fskills","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdaaain%2Fskills/lists"}