diff --git a/.claude/skills/cleanup/SKILL.md b/.claude/skills/cleanup/SKILL.md index 1eec144..eae2c1e 100644 --- a/.claude/skills/cleanup/SKILL.md +++ b/.claude/skills/cleanup/SKILL.md @@ -116,7 +116,7 @@ Detect package manager and sync: - If `uv.lock` exists: `uv sync` - Else if `bun.lockb` exists: `bun install` - Else if `package-lock.json` exists: `npm install` -- Else if `requirements.txt` exists: `pip install -r requirements.txt` +- Else if `requirements.txt` exists: `uv pip install -r requirements.txt` - Else: Skip dependency sync ### 11. Git garbage collection diff --git a/.claude/skills/code-quality/SKILL.md b/.claude/skills/code-quality/SKILL.md index 7a282ab..1d2861f 100644 --- a/.claude/skills/code-quality/SKILL.md +++ b/.claude/skills/code-quality/SKILL.md @@ -14,7 +14,7 @@ Use the following `make` targets to ensure code quality: - `make ruff`: Runs the `ruff` linter to catch common errors and style issues. - `make vulture`: Searches for dead code across the project. - `make ty`: Runs the `ty` type checker to ensure type safety. -- `make ci`: Runs all of the above checks (`ruff`, `vulture`, `import_lint`, `ty`, `docs_lint`, `check_deps`) in sequence. +- `make ci`: Runs all of the above checks (`ruff`, `vulture`, `import_lint`, `ty`, `docs_lint`, `lint_links`, `check_deps`, `file_len_check`) in sequence. ## Workflow diff --git a/.claude/skills/ralph/SKILL.md b/.claude/skills/ralph/SKILL.md index 5d163ed..067ba35 100644 --- a/.claude/skills/ralph/SKILL.md +++ b/.claude/skills/ralph/SKILL.md @@ -39,7 +39,7 @@ Take a PRD (markdown file or text) and convert it to `prd.json` in your ralph di **Each story must be completable in ONE Ralph iteration (one context window).** -Ralph spawns a fresh Claude Code/OpenCode instance per iteration with no memory of previous work. If a story is too big, the LLM runs out of context before finishing and produces broken code. +Ralph spawns a fresh Claude Code instance per iteration with no memory of previous work. If a story is too big, the LLM runs out of context before finishing and produces broken code. ### Right-sized stories: - Add a database column and migration