{"id":51446299,"url":"https://github.com/udohjeremiah/skills","last_synced_at":"2026-07-05T16:30:24.320Z","repository":{"id":368941469,"uuid":"1286292987","full_name":"udohjeremiah/skills","owner":"udohjeremiah","description":"Reusable Agent Skills for AI coding agents, focused on software engineering workflows.","archived":false,"fork":false,"pushed_at":"2026-07-02T21:37:26.000Z","size":91,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-07-02T23:24:27.827Z","etag":null,"topics":["agent-skills","claude-code","codex","cursor","gemini","skills","vscode"],"latest_commit_sha":null,"homepage":"","language":"Python","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/udohjeremiah.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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-07-01T16:21:56.000Z","updated_at":"2026-07-02T21:37:29.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/udohjeremiah/skills","commit_stats":null,"previous_names":["udohjeremiah/skills"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/udohjeremiah/skills","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/udohjeremiah%2Fskills","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/udohjeremiah%2Fskills/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/udohjeremiah%2Fskills/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/udohjeremiah%2Fskills/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/udohjeremiah","download_url":"https://codeload.github.com/udohjeremiah/skills/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/udohjeremiah%2Fskills/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35162070,"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-07-05T02:00:06.290Z","response_time":100,"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":["agent-skills","claude-code","codex","cursor","gemini","skills","vscode"],"created_at":"2026-07-05T16:30:19.510Z","updated_at":"2026-07-05T16:30:24.270Z","avatar_url":"https://github.com/udohjeremiah.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Skills\n\nA collection of [Agent Skills](https://agentskills.io) — reusable, portable\ncapabilities for AI coding agents like Claude Code, Cursor, Codex, and others.\n\n## What is a Skill?\n\nA skill is a folder containing a `SKILL.md` file\n(YAML frontmatter + instructions), plus optional scripts, references, and\nassets. Agents load skills on demand, giving them domain-specific expertise\nwithout bloating context.\n\n```text\nskill-name/\n├── SKILL.md # required: name, description, instructions\n├── scripts/ # optional: executable code\n├── references/ # optional: docs\n└── assets/ # optional: templates, resources\n```\n\n## Origin and standard\n\nSkills originated at Anthropic as an internal mechanism for Claude Code, then\nwere published as an open standard (Apache 2.0 / CC-BY-4.0) at\n[agentskills.io](https://agentskills.io) in December 2025. The format is now\nsupported natively across Claude Code, Codex CLI, Gemini CLI, GitHub Copilot,\nCursor, and more.\n\nFor the full spec, see\n[agentskills.io/specification](https://agentskills.io/specification).\n\n## Using a Skill\n\nOnce installed, you don't invoke a skill directly — just describe what you want,\nand the agent decides whether to load it based on its `description`. For\nexample, if you have the `pdf` skill installed, asking\n\"extract the text from this PDF\" is enough to trigger it.\n\nAll commands below use the [skills CLI](https://skills.sh) (`npx skills`), which\nsupports Claude Code, Cursor, Codex, and 60+ other agents.\n\n## Install\n\n```bash\n# Interactive — pick which skill(s) and agent(s) to install\nnpx skills add udohjeremiah/skills\n\n# List all skills in this repo without installing\nnpx skills add udohjeremiah/skills --list\n\n# Install a specific skill\nnpx skills add udohjeremiah/skills --skill \u003cskill-name\u003e\n\n# Install multiple specific skills\nnpx skills add udohjeremiah/skills --skill \u003cskill-a\u003e --skill \u003cskill-b\u003e\n\n# Install all skills in this repo\nnpx skills add udohjeremiah/skills --all\n\n# Install to a specific agent (e.g. claude-code, cursor, codex)\nnpx skills add udohjeremiah/skills --skill \u003cskill-name\u003e -a claude-code\n\n# Install globally (available across all your projects, not just this one)\nnpx skills add udohjeremiah/skills --skill \u003cskill-name\u003e -g\n\n# Non-interactive install (skip prompts, e.g. for CI/CD)\nnpx skills add udohjeremiah/skills --skill \u003cskill-name\u003e -y\n```\n\n## Use without installing\n\nGenerate a prompt for a skill, or run it directly through a supported agent.\n\n```bash\n# Interactive — pick the skill and agent\nnpx skills use udohjeremiah/skills\n\n# Print the generated prompt to stdout\nnpx skills use udohjeremiah/skills --skill \u003cskill-name\u003e\n\n# Pipe straight into an agent\nnpx skills use udohjeremiah/skills@\u003cskill-name\u003e | claude\n\n# Start a specific agent interactively with the skill loaded\nnpx skills use udohjeremiah/skills --skill \u003cskill-name\u003e --agent claude-code\n```\n\n## List installed skills\n\n```bash\n# List all installed skills (project + global)\nnpx skills list\n\n# List only global skills\nnpx skills list -g\n\n# Filter by agent\nnpx skills list -a claude-code -a cursor\n```\n\n## Update\n\n```bash\n# Update all installed skills (interactive scope prompt)\nnpx skills update\n\n# Update a specific skill\nnpx skills update \u003cskill-name\u003e\n\n# Update multiple specific skills\nnpx skills update \u003cskill-a\u003e \u003cskill-b\u003e\n\n# Update only global or only project skills\nnpx skills update -g\nnpx skills update -p\n\n# Non-interactive update\nnpx skills update -y\n```\n\n## Remove\n\n```bash\n# Interactive — pick which installed skill(s) to remove\nnpx skills remove\n\n# Remove a specific skill\nnpx skills remove \u003cskill-name\u003e\n\n# Remove multiple skills\nnpx skills remove \u003cskill-a\u003e \u003cskill-b\u003e\n\n# Remove from global scope\nnpx skills remove --global \u003cskill-name\u003e\n\n# Remove from a specific agent only\nnpx skills remove --agent claude-code \u003cskill-name\u003e\n\n# Remove all skills from a specific agent\nnpx skills remove --skill '*' -a cursor\n\n# Remove all installed skills without confirmation\nnpx skills remove --all\n```\n\n## Skills in this repo\n\n| Skill             | Description                                                                                                                                                                                                                      |\n| ----------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| `ts-code-quality` | Sets up TypeScript code quality tooling (ESLint flat config, Prettier, TypeScript configs, VS Code settings, EditorConfig, Knip) for TypeScript projects. Detects Next.js, TanStack Start, React, Fastify, Express, and Node.js. |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fudohjeremiah%2Fskills","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fudohjeremiah%2Fskills","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fudohjeremiah%2Fskills/lists"}