{"id":51460769,"url":"https://github.com/sagargupta16/craftsmanship","last_synced_at":"2026-07-06T05:01:23.255Z","repository":{"id":359498572,"uuid":"1214825083","full_name":"Sagargupta16/craftsmanship","owner":"Sagargupta16","description":"Skills that encode engineering discipline -- plan, guard, verify, review, audit, ship. Compatible with 45+ AI agents via skills.sh.","archived":false,"fork":false,"pushed_at":"2026-05-22T05:42:55.000Z","size":18,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-22T14:26:30.369Z","etag":null,"topics":["agent-skills","ai-agents","best-practices","code-quality","discipline","engineering-principles","software-engineering"],"latest_commit_sha":null,"homepage":null,"language":null,"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/Sagargupta16.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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-19T05:11:07.000Z","updated_at":"2026-05-22T05:42:58.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/Sagargupta16/craftsmanship","commit_stats":null,"previous_names":["sagargupta16/craftsmanship"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/Sagargupta16/craftsmanship","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sagargupta16%2Fcraftsmanship","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sagargupta16%2Fcraftsmanship/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sagargupta16%2Fcraftsmanship/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sagargupta16%2Fcraftsmanship/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Sagargupta16","download_url":"https://codeload.github.com/Sagargupta16/craftsmanship/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sagargupta16%2Fcraftsmanship/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35178403,"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-06T02:00:07.184Z","response_time":106,"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","ai-agents","best-practices","code-quality","discipline","engineering-principles","software-engineering"],"created_at":"2026-07-06T05:01:22.263Z","updated_at":"2026-07-06T05:01:23.247Z","avatar_url":"https://github.com/Sagargupta16.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# craftsmanship\n\nSkills that encode engineering discipline -- think before coding, verify before claiming done, ship with care.\n\nThese are agent-agnostic skills compatible with 45+ AI coding agents (Claude Code, Cursor, Codex, Cline, Gemini CLI, GitHub Copilot, and more) via the [`skills`](https://skills.sh) ecosystem.\n\n## Install\n\n```bash\nnpx skills add sagargupta16/craftsmanship\n```\n\nYou'll be prompted to select which skills to install and which agents to install them to. Skills are copied to each agent's conventional skills directory.\n\n## The Six Skills\n\n| Skill | When It Activates |\n|-------|-------------------|\n| [**plan**](skills/plan/SKILL.md) | Implementing features spanning 3+ files, unclear requirements, or multi-step work |\n| [**guard**](skills/guard/SKILL.md) | Git operations, handling secrets, or running destructive commands |\n| [**verify**](skills/verify/SKILL.md) | Before claiming work is done, before opening a PR |\n| [**review**](skills/review/SKILL.md) | Reviewing code changes, examining PRs, checking your own work |\n| [**audit**](skills/audit/SKILL.md) | Setting up a new repo or auditing an existing one for hygiene issues |\n| [**ship**](skills/ship/SKILL.md) | Preparing to ship -- opening a PR, cutting a release, deploying |\n\n## Philosophy\n\nThree rules run through all six skills:\n\n1. **Think first for big changes.** A plan for a 10-file feature costs 15 minutes; debugging the wrong implementation costs a day.\n2. **Never claim done from tests alone.** Tests verify code correctness, not feature correctness. Actually run the thing.\n3. **Small reversible actions are free. Destructive actions need confirmation.** `rm -rf`, `git push --force`, `DROP TABLE` -- pause and confirm.\n\n## Install Individual Skills\n\nThe `skills` CLI lets you pick which skills to install:\n\n```bash\nnpx skills add sagargupta16/craftsmanship\n# Then select: plan, guard, verify, review, audit, ship (space to toggle)\n```\n\n## Compatible Agents\n\nInstalled skills work with any agent that reads `.agents/skills/` or agent-specific directories. The CLI handles the fan-out:\n\n- Amp, Antigravity, Cline, Codex, Cursor, Deep Agents, Firebender\n- Gemini CLI, GitHub Copilot, Kimi Code CLI, OpenCode, Warp\n- Claude Code (via `.claude/skills/`)\n- Any other agent that supports the SKILL.md format\n\n## Structure\n\n```\ncraftsmanship/\n├── README.md\n├── LICENSE\n├── CHANGELOG.md\n└── skills/\n    ├── plan/SKILL.md\n    ├── guard/SKILL.md\n    ├── verify/SKILL.md\n    ├── review/SKILL.md\n    ├── audit/SKILL.md\n    └── ship/SKILL.md\n```\n\nEach skill is self-contained -- a single `SKILL.md` with YAML frontmatter and markdown body.\n\n## Contributing\n\nIssues and PRs welcome. If you've spotted a gap or have a new skill to propose:\n\n1. Open an issue describing the skill and when it should activate\n2. Discuss scope -- is this a new skill or an addition to existing?\n3. Follow the existing format: Quick Reference table, body, Anti-Patterns table\n\n## Also By This Author\n\n- [`sagar-dev-skills`](https://github.com/Sagargupta16/claude-skills) -- Claude Code plugin marketplace with 14 plugins including hooks, agents, and commands\n- [`claude-cost-optimizer`](https://github.com/Sagargupta16/claude-cost-optimizer) -- Save 30-60% on Claude Code costs\n\n## License\n\nMIT. See [LICENSE](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsagargupta16%2Fcraftsmanship","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsagargupta16%2Fcraftsmanship","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsagargupta16%2Fcraftsmanship/lists"}