Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/renovate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v7
- name: Renovate
uses: renovatebot/github-action@v46.1.15
uses: renovatebot/github-action@v46.1.16
with:
configurationFile: renovate.json
token: ${{ secrets.PAT_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
"@kaitranntt/ccs": "^8.6.0",
"@mariozechner/pi-coding-agent": "^0.73.1",
"@nanocollective/nanocoder": "^1.28.0",
"@oh-my-pi/pi-coding-agent": "^16.1.7",
"@oh-my-pi/pi-natives": "^16.1.7",
"@oh-my-pi/pi-coding-agent": "^16.1.13",
"@oh-my-pi/pi-natives": "^16.1.13",
"@oh-my-pi/swarm-extension": "^13.17.0",
"@openai/codex": "^0.141.0",
"@pencil.dev/cli": "^0.2.7",
Expand All @@ -49,7 +49,7 @@
"@vibe-kit/grok-cli": "^0.0.34",
"acpx": "^0.11.0",
"agent-browser": "^0.29.1",
"agentcash": "^0.15.0",
"agentcash": "^0.15.1",
"btca": "^2.0.5",
"ccusage": "^20.0.14",
"chrome-devtools-axi": "^0.1.24",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ tools = [
"mempalace>=3.4.1",
"mistral-vibe>=2.17.1",
"nvitop>=1.7.0",
"ruff>=0.15.17",
"ruff>=0.15.18",

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
rg -n -C2 --glob 'pyproject.toml' --glob 'Makefile' --glob '.github/workflows/*.yml' '\bruff\b|uv pip install --system ruff|uv run --with ruff'

Repository: shunkakinoki/dotfiles

Length of output: 159


🏁 Script executed:

#!/bin/bash
set -euo pipefail

printf '--- pyproject.toml ---\n'
nl -ba pyproject.toml | sed -n '1,120p'

printf '\n--- Makefile Ruff references ---\n'
rg -n -C2 '\bruff\b|uv run --with ruff|uv pip install --system ruff' Makefile

printf '\n--- GitHub workflow Ruff references ---\n'
rg -n -C2 '\bruff\b|uv run --with ruff|uv pip install --system ruff' .github/workflows/python.yml

printf '\n--- dependency-groups/tools references in repository ---\n'
rg -n -C2 'dependency-groups|tools' pyproject.toml .github/workflows/python.yml Makefile

Repository: shunkakinoki/dotfiles

Length of output: 250


🏁 Script executed:

#!/bin/bash
set -euo pipefail

printf '%s\n' '--- pyproject.toml ---'
nl -ba pyproject.toml | sed -n '1,120p'

printf '\n%s\n' '--- Makefile Ruff references ---'
rg -n -C2 '\bruff\b|uv run --with ruff|uv pip install --system ruff' Makefile

printf '\n%s\n' '--- GitHub workflow Ruff references ---'
rg -n -C2 '\bruff\b|uv run --with ruff|uv pip install --system ruff' .github/workflows/python.yml

printf '\n%s\n' '--- dependency-groups/tools references in repository ---'
rg -n -C2 'dependency-groups|tools' pyproject.toml .github/workflows/python.yml Makefile

Repository: shunkakinoki/dotfiles

Length of output: 222


🏁 Script executed:

#!/bin/bash
set -euo pipefail

printf '%s\n' '--- pyproject.toml ---'
awk '{printf "%5d  %s\n", NR, $0}' pyproject.toml | sed -n '1,120p'

printf '\n%s\n' '--- Makefile Ruff references ---'
rg -n -C2 '\bruff\b|uv run --with ruff|uv pip install --system ruff' Makefile

printf '\n%s\n' '--- GitHub workflow Ruff references ---'
rg -n -C2 '\bruff\b|uv run --with ruff|uv pip install --system ruff' .github/workflows/python.yml

printf '\n%s\n' '--- dependency-groups/tools references in repository ---'
rg -n -C2 'dependency-groups|tools' pyproject.toml .github/workflows/python.yml Makefile

Repository: shunkakinoki/dotfiles

Length of output: 3221


Pin Ruff in the active entrypoints too. pyproject.toml:18 only updates the dependency group; .github/workflows/python.yml:42-47 and Makefile:1304-1307 install/run Ruff independently, so CI and the local lint target will keep floating. If the goal is a single Ruff version, update those commands as well.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@pyproject.toml` at line 18, Ruff is only pinned in the dependency group, but
the independent install/run paths still float. Update the Ruff references in the
Python workflow and the Makefile lint target alongside the pyproject dependency
so `python.yml` and the local `ruff` invocation use the same fixed version. Use
the existing Ruff install/run entries in those locations to keep all entrypoints
aligned.

"serena-agent>=1.5.3",
"transformers>=5.12.1",
"vllm>=0.23.0",
Expand Down
Loading