mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
feat: refactor MCP tools to use terminal names instead of IDs - Replace terminalId parameter with terminalName across all tools - Add window name uniqueness validation for create/rename operations - Implement terminal name-to-window resolution in all MCP tools - Add home directory tilde expansion in working directory paths - Update terminal resources to use encoded names in URIs - Remove terminal IDs from API responses (list-terminals, resources) - Add type checking and error handling for Python agent 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> ```
19 lines
380 B
YAML
19 lines
380 B
YAML
repos:
|
|
- repo: local
|
|
hooks:
|
|
- id: mypy
|
|
name: mypy
|
|
entry: uv run mypy
|
|
language: system
|
|
types: [python]
|
|
pass_filenames: false
|
|
args: [agent.py]
|
|
|
|
- id: ruff-check
|
|
name: ruff check
|
|
entry: uv run ruff check
|
|
language: system
|
|
types: [python]
|
|
pass_filenames: false
|
|
args: [.]
|