Merged
Conversation
Sync with upstream AMAP-ML/SkillClaw
- Switch lint workflow to uvx ruff@0.12.2 (matches pre-commit); the prior `uv run ruff` failed with "failed to spawn ruff" because ruff was not a project dependency installed by `uv sync --extra all`. - Remove unused locals in skillclaw/api_server.py (F841). - Wrap long lines across api_server.py, claw_adapter.py, config_store.py, and evolve_server/core/config.py (E501). - Ignore E501 in evolve_server/pipeline/execution.py where long lines are single-line prompt-template prose. - Apply ruff format across the tree so `ruff format --check` passes. https://claude.ai/code/session_01W6H4XZCMnzavGL2agRvSda
uv.lock is generated locally by uv tooling; upstream does not track it, and the lint CI uses `uvx ruff@0.12.2` which pins ruff directly. https://claude.ai/code/session_01W6H4XZCMnzavGL2agRvSda
ci(lint): fix Ruff CI and resolve lint/format violations
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR fixes the CI issues from PR #2 into main that just merged by running uvx instead of uv. We also fix the lint errors that resulted therefrom.
Apologies for not testing #2 more thoroughly!