From e4f16ff22aaad85aea0fae204a2497d9d544b19c Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Wed, 17 Jun 2026 18:27:24 +0000 Subject: [PATCH] docs: fix outdated documentation (automated weekly drift check) - Updated `make ci` description in `.claude/skills/code-quality/SKILL.md` to include missing checks: `lint_links`, `file_len_check`. - Replaced `pip install` with `uv pip install` in `.claude/skills/cleanup/SKILL.md` to reflect `uv` adoption in package management. - Removed deprecated reference to "OpenCode" and replaced with "Claude Code" in `.claude/skills/ralph/SKILL.md`. Co-authored-by: Miyamura80 <38335479+Miyamura80@users.noreply.github.com> --- .claude/skills/cleanup/SKILL.md | 2 +- .claude/skills/code-quality/SKILL.md | 2 +- .claude/skills/ralph/SKILL.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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