{"id":45186761,"url":"https://github.com/wrsmith108/claude-skill-version-sync","last_synced_at":"2026-02-20T11:02:54.584Z","repository":{"id":337708857,"uuid":"1127479366","full_name":"wrsmith108/claude-skill-version-sync","owner":"wrsmith108","description":"Claude Code skill for detecting and synchronizing Node.js version specifications across project files","archived":false,"fork":false,"pushed_at":"2026-02-10T21:53:26.000Z","size":10,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-11T00:28:33.689Z","etag":null,"topics":["ci-cd","claude-code","claude-skill","developer-tools","nodejs","version-management"],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","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/wrsmith108.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-01-04T01:01:14.000Z","updated_at":"2026-02-10T21:53:29.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/wrsmith108/claude-skill-version-sync","commit_stats":null,"previous_names":["wrsmith108/claude-skill-version-sync"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/wrsmith108/claude-skill-version-sync","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wrsmith108%2Fclaude-skill-version-sync","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wrsmith108%2Fclaude-skill-version-sync/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wrsmith108%2Fclaude-skill-version-sync/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wrsmith108%2Fclaude-skill-version-sync/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wrsmith108","download_url":"https://codeload.github.com/wrsmith108/claude-skill-version-sync/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wrsmith108%2Fclaude-skill-version-sync/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29648437,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-20T09:27:29.698Z","status":"ssl_error","status_checked_at":"2026-02-20T09:26:12.373Z","response_time":59,"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":["ci-cd","claude-code","claude-skill","developer-tools","nodejs","version-management"],"created_at":"2026-02-20T11:02:54.509Z","updated_at":"2026-02-20T11:02:54.579Z","avatar_url":"https://github.com/wrsmith108.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Version Sync\n\nA Claude Code skill for detecting and synchronizing Node.js version specifications across project files.\n\n## Installation\n\n### As a Claude Code Skill\n\n```bash\n# Clone to your Claude skills directory\ngit clone https://github.com/wrsmith108/claude-skill-version-sync.git ~/.claude/skills/version-sync\n```\n\n### Standalone Usage\n\n```bash\nnpx tsx scripts/index.ts \u003ccommand\u003e [options]\n```\n\n## Trigger Phrases\n\nThis skill activates when you mention:\n- \"version mismatch\"\n- \"upgrade node\"\n- \"sync versions\"\n- \"update node version\"\n- \"version drift\"\n- \"check node versions\"\n- \"node version conflict\"\n\n## Commands\n\n### Check Version Status\n\n```bash\nnpx tsx scripts/index.ts check\n```\n\nScans the current project for Node.js version specifications and reports any mismatches.\n\n### Update All Versions\n\n```bash\nnpx tsx scripts/index.ts update \u003cversion\u003e\n```\n\nUpdates all version files to the specified target version.\n\n**Options:**\n- `--dry-run` - Preview changes without modifying files\n- `--no-backup` - Skip creating backup files before updates\n\n## Supported Files\n\n| File | Pattern | Example |\n|------|---------|---------|\n| `.nvmrc` | First line number | `22` |\n| `package.json` | `engines.node` | `\"\u003e=22.0.0\"` |\n| `Dockerfile` | `FROM node:\u003cversion\u003e` | `FROM node:22-slim` |\n| `.github/workflows/*.yml` | `node-version` | `node-version: '22'` |\n| `docker-compose.yml` | `image: node:\u003cversion\u003e` | `image: node:22-alpine` |\n\n## Usage Examples\n\n```bash\n# Check for version mismatches\nnpx tsx scripts/index.ts check\n\n# Preview updating to Node 22\nnpx tsx scripts/index.ts update 22 --dry-run\n\n# Update all files to Node 22\nnpx tsx scripts/index.ts update 22\n```\n\n## Output Format\n\n```markdown\n## Node.js Version Status\n\n| File | Current | Target | Action |\n|------|---------|--------|--------|\n| .nvmrc | 22 | 22 | No change |\n| Dockerfile | 20-slim | 22-slim | Will update |\n| package.json | \u003e=20.0.0 | \u003e=22.0.0 | Will update |\n```\n\n## Best Practices\n\n1. Always run `check` first to understand current state\n2. Use `--dry-run` before applying updates\n3. Commit version changes separately for clear git history\n4. Test after updating to ensure compatibility\n\n## Requirements\n\n- Node.js 18+\n- TypeScript (tsx for execution)\n\n## Changelog\n\n### 1.0.1 (2026-02-10)\n\n- **Fixed**: Replaced hardcoded `~/.claude/skills/` paths with relative paths for portability across different install locations\n\n## License\n\nMIT\n\n## Related Skills\n\n- [ci-doctor](https://github.com/wrsmith108/claude-skill-ci-doctor) - Diagnose CI/CD pipeline issues\n- [flaky-test-detector](https://github.com/wrsmith108/claude-skill-flaky-test-detector) - Detect flaky tests\n- [docker-optimizer](https://github.com/wrsmith108/claude-skill-docker-optimizer) - Optimize Dockerfiles\n- [security-auditor](https://github.com/wrsmith108/claude-skill-security-auditor) - Security audits\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwrsmith108%2Fclaude-skill-version-sync","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwrsmith108%2Fclaude-skill-version-sync","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwrsmith108%2Fclaude-skill-version-sync/lists"}