@kaitranntt/ccs

by kaitranntt · v1.0.0 · prompt

AI-facing guidance for Claude Code when working with this repository.

Install

Add @kaitranntt/ccs to Claude Code with the PolySkill CLI: polyskill add @kaitranntt/ccs

Instructions

# CLAUDE.md AI-facing guidance for Claude Code when working with this repository. ## Critical Constraints (NEVER VIOLATE) ### Test Isolation (MANDATORY) **NEVER touch the user's real `~/.ccs/` or `~/.claude/` directories during tests.** - All code accessing CCS paths MUST use `getCcsDir()` from `src/utils/config-manager.ts` - This function respects `CCS_HOME` env var for test isolation - **WRONG:** `path.join(os.homedir(), '.ccs', ...)` - **CORRECT:** `path.join(getCcsDir(), ...)` Tests set `process.env.CCS_HOME` to a temp directory. Code using `os.homedir()` directly will modify the user's r…

Keywords: github, claude-code, ai-guidance, repository-management, coding-assistance, developer-tools, code-review, software-development, collaboration