{"id":49488408,"url":"https://github.com/takezoh/plasticscm-cli-skill","last_synced_at":"2026-05-01T03:03:57.388Z","repository":{"id":348472179,"uuid":"1197942657","full_name":"takezoh/plasticscm-cli-skill","owner":"takezoh","description":"Run PlasticSCM operations as Claude Code skills on WSL/Windows","archived":false,"fork":false,"pushed_at":"2026-04-09T03:47:00.000Z","size":15,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-09T05:30:40.250Z","etag":null,"topics":["claude-code","cli","plasticscm","wsl"],"latest_commit_sha":null,"homepage":"","language":"Go","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/takezoh.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"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":null,"dco":null,"cla":null}},"created_at":"2026-04-01T02:12:29.000Z","updated_at":"2026-04-09T03:47:04.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/takezoh/plasticscm-cli-skill","commit_stats":null,"previous_names":["takezoh/plasticscm-cli-skill"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/takezoh/plasticscm-cli-skill","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/takezoh%2Fplasticscm-cli-skill","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/takezoh%2Fplasticscm-cli-skill/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/takezoh%2Fplasticscm-cli-skill/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/takezoh%2Fplasticscm-cli-skill/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/takezoh","download_url":"https://codeload.github.com/takezoh/plasticscm-cli-skill/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/takezoh%2Fplasticscm-cli-skill/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32483405,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"online","status_checked_at":"2026-05-01T02:00:05.856Z","response_time":64,"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":["claude-code","cli","plasticscm","wsl"],"created_at":"2026-05-01T03:03:46.021Z","updated_at":"2026-05-01T03:03:57.383Z","avatar_url":"https://github.com/takezoh.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# plasticscm-cli-skill\n\nRun PlasticSCM operations (checkin, branch, merge, diff, history, shelve, etc.) as Claude Code skills. Works on WSL/Windows.\n\n## Build\n\n```bash\nmake        # produces skills/bin/plasticscm.exe\n```\n\n## Commands\n\n```bash\nplasticscm.exe status [\u003cpath\u003e]\nplasticscm.exe info\nplasticscm.exe checkin -m \u003ccomment\u003e [\u003cfile\u003e...]\nplasticscm.exe checkout [-r] \u003cfile\u003e\nplasticscm.exe undo \u003cfile\u003e\nplasticscm.exe add \u003cfile\u003e\nplasticscm.exe delete \u003cfile\u003e\nplasticscm.exe move \u003csrc\u003e \u003cdst\u003e\nplasticscm.exe diff [-c \u003ccs\u003e] [\u003cfile\u003e]\nplasticscm.exe history [-n \u003ccount\u003e] [\u003cfile\u003e]\nplasticscm.exe branch [-n \u003cname\u003e]\nplasticscm.exe switch -b \u003cbranch\u003e\nplasticscm.exe label -n \u003cname\u003e [-m \u003ccomment\u003e]\nplasticscm.exe merge \u003cbranch\u003e\nplasticscm.exe shelves\nplasticscm.exe shelve -n \u003cname\u003e [\u003cfile\u003e...]\nplasticscm.exe unshelve -n \u003cname\u003e\nplasticscm.exe find \u003cquery\u003e\nplasticscm.exe update [\u003ccs\u003e]\n```\n\nPaths must be in Windows format (e.g. `D:\\foo\\bar.cpp`).\n\n## Claude Code Skill\n\n```bash\n# Install skill via symlink\nmkdir -p .claude/skills \u0026\u0026 ln -s /path/to/plasticscm-cli-skill/skills/plasticscm .claude/skills/plasticscm\n\n# Build the binary (run in plasticscm-cli-skill repo)\ncd /path/to/plasticscm-cli-skill \u0026\u0026 make\n```\n\n## Architecture\n\n```\nsrc/main.go\n  -\u003e flag.NewFlagSet() per subcommand   # 19 subcommands\n  -\u003e client.Client.Execute()\n  -\u003e cm \u003csubcommand\u003e [args]             # PlasticSCM CLI\n```\n\n- **`src/main.go`**: Subcommand dispatcher\n- **`src/client/client.go`**: `cm` CLI wrapper. `diff` generates changeset-aware unified diffs internally\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftakezoh%2Fplasticscm-cli-skill","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftakezoh%2Fplasticscm-cli-skill","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftakezoh%2Fplasticscm-cli-skill/lists"}