{"id":50139396,"url":"https://github.com/ctxr-dev/skills","last_synced_at":"2026-05-24T00:06:06.615Z","repository":{"id":350665742,"uuid":"1207841784","full_name":"ctxr-dev/skills","owner":"ctxr-dev","description":null,"archived":false,"fork":false,"pushed_at":"2026-04-11T14:01:16.000Z","size":0,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-11T14:07:51.706Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","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/ctxr-dev.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-11T13:30:55.000Z","updated_at":"2026-04-11T14:01:21.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/ctxr-dev/skills","commit_stats":null,"previous_names":["ctxr-dev/skills"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/ctxr-dev/skills","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ctxr-dev%2Fskills","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ctxr-dev%2Fskills/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ctxr-dev%2Fskills/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ctxr-dev%2Fskills/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ctxr-dev","download_url":"https://codeload.github.com/ctxr-dev/skills/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ctxr-dev%2Fskills/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33416317,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-23T22:14:44.296Z","status":"ssl_error","status_checked_at":"2026-05-23T22:14:43.778Z","response_time":53,"last_error":"SSL_read: 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-24T00:06:05.928Z","updated_at":"2026-05-24T00:06:06.609Z","avatar_url":"https://github.com/ctxr-dev.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# @ctxr-dev/skills\n\n[![npm](https://img.shields.io/npm/v/@ctxr-dev/skills)](https://www.npmjs.com/package/@ctxr-dev/skills)\n[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)\n\nCLI for managing Claude Code skills — install, validate, update, and scaffold.\n\n## Install\n\n```bash\nnpm install -g @ctxr-dev/skills\n# or use with npx\nnpx @ctxr-dev/skills \u003ccommand\u003e\n```\n\n## Commands\n\n### `skills install \u003cskill\u003e [options]`\n\nInstall a skill. Supports npm packages, GitHub repos, and local paths.\n\n```bash\nskills install @ctxr-dev/skill-code-review              # from npm → .claude/skills/\nskills install @ctxr-dev/skill-code-review -i            # interactive: choose location\nskills install @ctxr-dev/skill-code-review --global      # → ~/.claude/skills/ (shared)\nskills install @ctxr-dev/skill-code-review --dir .agents/skills  # explicit directory\nskills install github:ctxr-dev/skill-code-review         # from GitHub\nskills install ./path/to/local-skill                      # from local path\n```\n\nInstall locations:\n\n- `.claude/skills/` — project-level, Claude Code default\n- `.agents/skills/` — project-level, open standard\n- `~/.claude/skills/` — user-global, shared across projects\n- Custom path via `--dir`\n\nAuto-detects: if `.agents/skills/` exists, installs there. Otherwise `.claude/skills/`.\n\n### `skills validate [path]`\n\nValidate a skill's structure and integrity.\n\n```bash\nskills validate                  # validate skill in current dir\nskills validate ./my-skill       # validate skill at path\n```\n\n### `skills update [skill] [project-path]`\n\nUpdate installed skill(s). Searches all locations (`.claude/skills/`, `.agents/skills/`, `~/.claude/skills/`), finds where each skill lives, updates it in place.\n\n```bash\nskills update                          # update all installed skills\nskills update skill-code-review        # update specific skill\n```\n\n### `skills list [project-path]`\n\nList skills from all discovered locations.\n\n```bash\nskills list                    # current project + global\nskills list ./my-project       # specific project + global\n```\n\n### `skills init [name]`\n\nScaffold a new skill project.\n\n```bash\nskills init my-new-skill\n```\n\n### `skills info \u003cskill\u003e`\n\nShow info about a skill from local install or npm registry. Searches all locations.\n\n```bash\nskills info @ctxr-dev/skill-code-review\nskills info skill-code-review\n```\n\n## Publishing\n\n### First-time setup\n\n1. Create an npm access token: `npm token create`\n2. In GitHub repo: **Settings → Secrets → Actions** → add `NPM_TOKEN`\n\n### Release\n\n1. **Actions → Release → Run workflow** → choose patch/minor/major\n2. Workflow bumps version, tags, pushes → triggers Publish workflow\n\n## Development\n\n```bash\nnpm install\nnpm test              # run all tests\nnpm run test:unit     # unit tests only\nnpm run test:integration  # integration tests only\n```\n\nPre-commit hook runs `npm test` automatically.\n\n## License\n\n[MIT](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fctxr-dev%2Fskills","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fctxr-dev%2Fskills","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fctxr-dev%2Fskills/lists"}