{"id":51239936,"url":"https://github.com/nimbus-solution/nimbus-skills","last_synced_at":"2026-06-28T23:31:57.349Z","repository":{"id":366233667,"uuid":"1233772242","full_name":"nimbus-solution/nimbus-skills","owner":"nimbus-solution","description":"Curated agent skills for Apex with Nimbus","archived":false,"fork":false,"pushed_at":"2026-06-20T20:59:52.000Z","size":69,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-20T22:19:33.471Z","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":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nimbus-solution.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","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-05-09T10:40:21.000Z","updated_at":"2026-06-20T20:59:55.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/nimbus-solution/nimbus-skills","commit_stats":null,"previous_names":["nimbus-solution/nimbus-skills"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/nimbus-solution/nimbus-skills","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nimbus-solution%2Fnimbus-skills","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nimbus-solution%2Fnimbus-skills/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nimbus-solution%2Fnimbus-skills/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nimbus-solution%2Fnimbus-skills/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nimbus-solution","download_url":"https://codeload.github.com/nimbus-solution/nimbus-skills/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nimbus-solution%2Fnimbus-skills/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34907985,"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-06-28T02:00:05.809Z","response_time":54,"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":[],"created_at":"2026-06-28T23:31:57.267Z","updated_at":"2026-06-28T23:31:57.341Z","avatar_url":"https://github.com/nimbus-solution.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# nimbus-skills\n\nCurated agent skills for working on Apex with **[Nimbus](https://testnimbus.dev)** — the local Apex test runner.\n\nSkills are short, opinionated playbooks that tell an AI coding agent **when** and **how** to use Nimbus's local runtime effectively. Each is a tight loop around a signal only Nimbus produces offline — real test results, per-line coverage, governor usage, execution traces, mutation scores.\n\n**Getting set up**\n- **`bootstrap-nimbus`** — set Nimbus up on a fresh SFDX project, including CI.\n- **`migrate-suite-to-nimbus`** — get an existing org suite running green locally by clearing blockers in dependency order (schema → stubs → setup → fixtures).\n\n**Writing \u0026 fixing code**\n- **`apex-tdd`** — red → green → refactor; the only way to actually do TDD in Apex without an org.\n- **`fix-failing-apex-test`** — the inner loop. Read failure → narrow → edit → re-run, until green.\n- **`triage-apex-failures`** — cluster a wall of failures by root cause before fixing.\n\n**Raising quality**\n- **`apex-coverage-uplift`** — raise coverage by writing targeted tests, not theatre.\n- **`harden-tests-with-mutation`** — kill surviving mutants so assertions actually check behaviour.\n- **`bulkify-apex`** — find and prove fixes for governor-limit / bulk-DML problems with measured usage.\n- **`apex-pre-deploy-check`** — diff-scoped run + coverage delta + governor + risky-pattern gate before you ship.\n\nAll skills assume the project has Nimbus installed and (for the MCP-driven loops) the MCP server registered with the agent (`claude mcp add nimbus -- nimbus mcp`).\n\n## Install\n\n### Recommended: `nimbus skills install`\n\nIf you've already installed [Nimbus](https://testnimbus.dev), one command picks up everything in this repo and writes it to the right place for your agent:\n\n```bash\nnimbus skills list                          # see what's available\nnimbus skills install fix-failing-apex-test # install one\nnimbus skills install all                   # install every skill the agent supports\n```\n\n`nimbus skills` auto-detects your agent from the project root. Override with `--agent claude-code|cursor|aider|agents-md|kiro`. The CLI fetches manifest + files from this repo on demand — your binary stays small and you always get the latest.\n\n### Manual install (no nimbus binary)\n\n#### Claude Code\n\n```bash\nmkdir -p ~/.claude/skills\ngit clone https://github.com/nimbus-solution/nimbus-skills.git /tmp/nimbus-skills\ncp -r /tmp/nimbus-skills/dist/claude-code/* ~/.claude/skills/\n```\n\nOr per-project: copy into `.claude/skills/` at the project root.\n\n#### Cursor\n\n```bash\nmkdir -p .cursor/rules\ncurl -L https://github.com/nimbus-solution/nimbus-skills/raw/main/dist/cursor/fix-failing-apex-test.mdc -o .cursor/rules/fix-failing-apex-test.mdc\ncurl -L https://github.com/nimbus-solution/nimbus-skills/raw/main/dist/cursor/bootstrap-nimbus.mdc -o .cursor/rules/bootstrap-nimbus.mdc\ncurl -L https://github.com/nimbus-solution/nimbus-skills/raw/main/dist/cursor/apex-coverage-uplift.mdc -o .cursor/rules/apex-coverage-uplift.mdc\n```\n\n#### Kiro\n\n```bash\nmkdir -p .kiro/steering\ncurl -L https://github.com/nimbus-solution/nimbus-skills/raw/main/dist/kiro/fix-failing-apex-test.md -o .kiro/steering/fix-failing-apex-test.md\ncurl -L https://github.com/nimbus-solution/nimbus-skills/raw/main/dist/kiro/bootstrap-nimbus.md -o .kiro/steering/bootstrap-nimbus.md\ncurl -L https://github.com/nimbus-solution/nimbus-skills/raw/main/dist/kiro/apex-coverage-uplift.md -o .kiro/steering/apex-coverage-uplift.md\n```\n\nSkills use `inclusion: manual`, so load them on demand by typing `#fix-failing-apex-test` (or another name) in your Kiro prompt.\n\n#### Aider\n\n```bash\ncurl -L https://github.com/nimbus-solution/nimbus-skills/raw/main/dist/aider/CONVENTIONS.md -o CONVENTIONS.md\naider --read CONVENTIONS.md\n```\n\n#### AGENTS.md (OpenCode, Codex, Continue, generic harnesses)\n\n```bash\ncurl -L https://github.com/nimbus-solution/nimbus-skills/raw/main/dist/AGENTS.md -o AGENTS.md\n```\n\nOpenCode reads `AGENTS.md` verbatim — no further config needed.\n\n## Repo layout\n\n```\nskills/                  # Source of truth — edit these\n  \u003cname\u003e/SKILL.md        # one dir per skill (9 today)\ndist/                    # Generated; do not edit\n  claude-code/\u003cname\u003e/SKILL.md\n  cursor/\u003cname\u003e.mdc\n  kiro/\u003cname\u003e.md\n  aider/CONVENTIONS.md\n  AGENTS.md\nmanifest.json            # Generated; consumed by `nimbus skills`\nscripts/build.mjs        # Renders dist/ + manifest.json from skills/\n```\n\nThe build script is dependency-free Node — `node scripts/build.mjs` regenerates `dist/` and `manifest.json`. CI verifies both stay in sync with `skills/` on every PR.\n\n## Contributing\n\nSee [CONTRIBUTING.md](CONTRIBUTING.md). New skills are welcome if they target a real Apex workflow that benefits from sub-second iteration.\n\n## License\n\nMIT.\n\n---\n\nBuilt for [**Nimbus**](https://testnimbus.dev) — Apex testing, locally.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnimbus-solution%2Fnimbus-skills","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnimbus-solution%2Fnimbus-skills","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnimbus-solution%2Fnimbus-skills/lists"}