{"id":49083597,"url":"https://github.com/cukas/claude-workflow-skills","last_synced_at":"2026-04-20T14:08:38.218Z","repository":{"id":343215411,"uuid":"1176645899","full_name":"cukas/claude-workflow-skills","owner":"cukas","description":"Guarded development workflows for Claude Code — investigation before fixes, orchestration before implementation, verification before completion","archived":false,"fork":false,"pushed_at":"2026-03-09T14:01:40.000Z","size":12,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-09T15:51:20.496Z","etag":null,"topics":["claude-code","claude-code-plugin","claude-code-skills","code-quality","developer-tools","tdd"],"latest_commit_sha":null,"homepage":"","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/cukas.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-03-09T08:25:55.000Z","updated_at":"2026-03-09T15:02:48.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/cukas/claude-workflow-skills","commit_stats":null,"previous_names":["cukas/claude-workflow-skills"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/cukas/claude-workflow-skills","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cukas%2Fclaude-workflow-skills","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cukas%2Fclaude-workflow-skills/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cukas%2Fclaude-workflow-skills/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cukas%2Fclaude-workflow-skills/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cukas","download_url":"https://codeload.github.com/cukas/claude-workflow-skills/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cukas%2Fclaude-workflow-skills/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32050463,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T11:35:06.609Z","status":"ssl_error","status_checked_at":"2026-04-20T11:34:48.899Z","response_time":94,"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":["claude-code","claude-code-plugin","claude-code-skills","code-quality","developer-tools","tdd"],"created_at":"2026-04-20T14:08:37.215Z","updated_at":"2026-04-20T14:08:38.213Z","avatar_url":"https://github.com/cukas.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Claude Workflow Skills\n\nGuarded development workflows for Claude Code. Investigation before fixes. Orchestration before implementation. Verification before completion.\n\n\u003e **Pure discipline, zero infrastructure.** No databases, no MCP servers, no build tools. Just markdown skills that teach Claude to work methodically — read before edit, test before ship, verify before done. Works standalone. Layers with [patrol](https://github.com/cukas/patrol) and [remembrall](https://github.com/cukas/remembrall) if installed.\n\n## Skills\n\n### `/build-guard`\n\nOrchestrated multi-file implementation with regression checkpoints.\n\n1. **Plan** — enters plan mode (read-only), explores the codebase, writes a numbered plan with risks\n2. **Implement** — dispatches subagents for larger changes (one per file or logical chunk), type-checks after every file, runs tests every 3 files\n3. **Verify** — auto-invokes `/review-gate` before declaring done\n\nAuto-scales: small changes (1-2 files) run inline, larger changes use subagents to keep context clean. For big plans that consume context, hands off via remembrall and resumes with full budget.\n\n```\n/build-guard  →  plan mode  →  approval  →  subagent dispatch  →  checkpoints  →  /review-gate\n```\n\n### `/trace-fix`\n\nInvestigation-first bug fixing with TDD loop.\n\n1. **Trace** — reads every file in the call chain, documents the root cause before touching code\n2. **Fix** — writes a failing test, implements the minimal fix, runs full test suite\n3. **Verify** — auto-invokes `/review-gate` when green\n\nEscapes after 5 failed iterations instead of spinning forever. Falls back gracefully when no test framework or type checker exists.\n\n```\n/trace-fix  →  trace root cause  →  failing test  →  minimal fix  →  verify  →  /review-gate\n```\n\n### `/review-gate`\n\nStructured post-implementation review with pass/fail output.\n\nTraces affected code paths, scans for bug patterns (null safety, async errors, security, stale data), runs build/type/test verification, checks architectural consistency. Outputs a structured report:\n\n```\n| Check            | Status | Notes                      |\n|------------------|--------|----------------------------|\n| Code path trace  | PASS   | 3 callers, 2 dependents    |\n| Bug pattern scan | PASS   | No issues found            |\n| Build            | PASS   | npm run build              |\n| Type check       | PASS   | npx tsc --noEmit           |\n| Tests            | PASS   | 47 passed, 0 failed        |\n| Architecture     | PASS   | Consistent with src/utils  |\n```\n\nBoth `/build-guard` and `/trace-fix` auto-invoke this — nothing ships without passing the gate.\n\n## Install\n\n```bash\nclaude plugin marketplace add cukas/claude-workflow-skills\nclaude plugin install workflow-skills@cukas\n```\n\n## Works With\n\nThese skills are **self-contained** — they enforce discipline on their own. But they integrate smoothly with:\n\n- **[patrol](https://github.com/cukas/patrol)** — If installed, build-guard and trace-fix respect patrol's investigation warnings and escalation. If not, the skills enforce the same read-before-edit discipline themselves.\n- **[remembrall](https://github.com/cukas/remembrall)** — If installed, build-guard hands off context-heavy sessions automatically for clean context on resume. If not, plans are saved to `docs/plans/` as files.\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcukas%2Fclaude-workflow-skills","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcukas%2Fclaude-workflow-skills","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcukas%2Fclaude-workflow-skills/lists"}