Skip to content

Commit 5645b2b

Browse files
docs: fix outdated documentation (automated weekly drift check)
- Replace 'Claude Code/OpenCode' with 'Claude Code' in .claude/skills/ralph/SKILL.md - Update `make ci` documentation to include `lint_links` and `file_len_check` in CLAUDE.md and .claude/skills/code-quality/SKILL.md - Update `Vulture whitelist entries` to `Vulture exclusions` in UNNECESSARY_CODE_GUIDELINE.md Co-authored-by: Miyamura80 <38335479+Miyamura80@users.noreply.github.com>
1 parent 9a307ec commit 5645b2b

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.claude/skills/code-quality/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Use the following `make` targets to ensure code quality:
1414
- `make ruff`: Runs the `ruff` linter to catch common errors and style issues.
1515
- `make vulture`: Searches for dead code across the project.
1616
- `make ty`: Runs the `ty` type checker to ensure type safety.
17-
- `make ci`: Runs all of the above checks (`ruff`, `vulture`, `import_lint`, `ty`, `docs_lint`, `check_deps`) in sequence.
17+
- `make ci`: Runs all of the above checks (`ruff`, `vulture`, `import_lint`, `ty`, `docs_lint`, `lint_links`, `check_deps`, `file_len_check`) in sequence.
1818

1919
## Workflow
2020

.claude/skills/ralph/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Take a PRD (markdown file or text) and convert it to `prd.json` in your ralph di
3939

4040
**Each story must be completable in ONE Ralph iteration (one context window).**
4141

42-
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.
42+
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.
4343

4444
### Right-sized stories:
4545
- Add a database column and migration

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ make ruff # Run ruff linter
2626
make vulture # Find dead code
2727
make ty # Run type checker
2828
make lint_links # Check for broken links in markdown files (README, etc.)
29-
make ci # Run all CI checks (ruff, vulture, ty, import_lint, docs_lint, check_deps, lint_links)
29+
make ci # Run all CI checks (ruff, vulture, ty, import_lint, docs_lint, check_deps, lint_links, file_len_check)
3030

3131
# Dependencies
3232
uv sync # Install dependencies (not pip install)

UNNECESSARY_CODE_GUIDELINE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ static analysis:
5050
11. **Migration files**: Database migration scripts.
5151
12. **Protocol/ABC implementations**: Methods implementing an abstract base
5252
class or Protocol interface.
53-
13. **Vulture whitelist entries**: Anything referenced in
53+
13. **Vulture exclusions**: Anything referenced in
5454
`pyproject.toml [tool.vulture]` exclusions.
5555

5656
## Validation Before Removal

0 commit comments

Comments
 (0)