@kbwo/ccmanager
- Tests sit beside the code they cover (e.g., Menu.tsx and Menu.test.tsx), enabling focused updates.
Install
Add @kbwo/ccmanager to Claude Code with the PolySkill CLI: polyskill add @kbwo/ccmanager
Instructions
# Repository Guidelines ## Project Structure & Module Organization - `src/` holds all TypeScript sources; UI lives in `src/components/`, domain logic in `src/services/`, shared hooks in `src/hooks/`, and utilities/constants in their respective folders. - Tests sit beside the code they cover (e.g., `Menu.tsx` and `Menu.test.tsx`), enabling focused updates. - Built artifacts compile into `dist/`; keep changes out of version control. - Long-form notes and design references live under `docs/`; sync any behavior changes here when relevant. ## Build, Test & Development Commands - `npm run dev` laun…
Keywords: github, unit-testing, test-driven-development, javascript-testing, react-testing, code-coverage, automated-testing, frontend-testing