Hồi quy đã vá
-------------
F-12 Kéo–thả hoặc dán tệp vào ô chat ném NameError. R08 tách `_Input` sang
`chat_input_box.py` nhưng để `_paths_from_mime()` ở lại
`composer_widget.py`, nên hai hàm sự kiện Qt gọi một cái tên không tồn
tại. Bốn hàm dùng chung chuyển sang `composer_mime.py` — module thứ ba
là chỗ duy nhất không lặp lại được lỗi này. Đo lại: cả thả lẫn dán đều
gắn 1 tệp, khớp bản trước refactor.
F-01 Đổi provider thì bộ chọn model AI-Edit không làm gì. Hook cũ kiểm
`folder.ai_model_combo`, thuộc tính R08-T12 đã dời sang
`ai_panel.resolver`. Làm mới vô điều kiện, đúng như tab cũ: lần lấy đầu
tiên hỏng thì đổi provider chính là lúc phải thử lại.
F-07 Hàng chọn kỳ của Dashboard bị đẩy xuống dưới các thẻ số liệu. Hàng này
lọc CẢ BA thẻ con chứ không riêng biểu đồ, nên để nó nằm dưới là bắt
người dùng đọc con số trước khi thấy con số đó tính cho kỳ nào. Kèm
theo: `TokenUsageCardWidget` bị bỏ sót `setContentsMargins(0,0,0,0)`
mà hai thẻ con còn lại đã có, đẩy cả hàng thẻ lệch 9px.
`check_layout_geometry` nay khớp TỪNG BYTE với bản trước refactor.
F-11 Hai lớp khai trùng tên phương thức; Python giữ bản sau nên bản đầu là
mã chết. `co4e_tab.py::showEvent` bản đầu gọi `_narrow_guard.attach()`
và không bao giờ chạy.
Tách file (F-09)
----------------
Bốn file chạm trần 400 dòng, mỗi lần cắt ra một trách nhiệm thật:
graph_renderer.py -> graph_scene_builder.py + graph_export.py
co4e_workflow_service.py -> co4e_run_history.py
json_config_repository.py -> config_sections.py
agents_admin_tab.py -> shared/agent_kind_visuals.py
File cuối còn xoá 3 bản sao của hàm đã có trong `shared/formatters.py`,
giống hệt đến từng dòng — nay định dạng thời gian và avatar không lệch nhau
giữa các bảng Giám sát nữa.
Docstring
---------
41,6% -> 100% (3.478/3.478 định nghĩa production), kể cả module dormant và
phương thức dunder. Toàn bộ phần bổ sung viết bằng tiếng Việt; comment tiếng
Anh có sẵn giữ nguyên — dịch ngược là một đợt riêng.
Seam chưa nối dây (F-05)
------------------------
9 seam mang nhãn `SEAM · dựng <ngày>` kèm hai câu: được nối khi nào, và để
dormant thì hỏng gì. Ngày lấy từ lịch sử git, không phải hạn tự đặt. Gate O
đọc nhãn đó và nhắc khi quá 30 ngày.
859 test xanh · 4/4 cổng CASAN · 19/24 checker khớp từng byte bản cũ.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
85 lines
4.0 KiB
Python
85 lines
4.0 KiB
Python
"""FileWorkspaceService - the safe file operations File Explorer and the AI
|
|
File Editor need, outside the agent tool loop (R06-T05).
|
|
|
|
``ui/folder_tab.py`` (File Explorer) and the AI File Editor dialog need the
|
|
exact same guarantees the agent's tools already have — path containment
|
|
inside the workspace, precise context-anchored edits, syntax warnings on a
|
|
bad Python write — but today that logic only exists wired to a model's tool
|
|
call (``core/tools.py::execute_tool``). A UI action that isn't a tool call
|
|
(browsing the tree, applying an AI-suggested diff from a review dialog) has
|
|
no equivalent entry point of its own.
|
|
|
|
This service IS that entry point. It reuses ``core/tools.py::execute_tool``
|
|
verbatim - same dispatch table, same ``ToolContext`` containment check, same
|
|
audit-log entry, same Python-syntax warning on write/edit - rather than
|
|
re-implementing any of it, so a fix to one path fixes both. It only adds the
|
|
:class:`~domain.workspaces.workspace_session.WorkspaceSession` seam: which
|
|
workspace root a call is scoped to is decided by the session, not by
|
|
whichever folder a widget happens to have open.
|
|
"""
|
|
from __future__ import annotations
|
|
|
|
from typing import Any, Dict
|
|
|
|
|
|
class FileWorkspaceService:
|
|
"""File operations scoped to one :class:`WorkspaceSession`.
|
|
|
|
Read-only by name (``list_tree``/``read_preview``) vs. writing
|
|
(``write_file``/``apply_edit``) mirrors the same READ/WRITE split
|
|
``domain/tools/tool_registry.py`` uses for the agent's own tools - a
|
|
caller that only wants to browse never accidentally has write access.
|
|
"""
|
|
|
|
def __init__(self, session) -> None: # WorkspaceSession - see module docstring
|
|
"""Nhận một ``WorkspaceSession`` — mọi đường dẫn về sau đều bị nó chặn trong
|
|
phạm vi cho phép.
|
|
"""
|
|
self._session = session
|
|
|
|
def list_tree(self, rel: str = ".") -> Dict[str, Any]:
|
|
"""Entries at ``rel`` (default: the workspace root)."""
|
|
return self._execute("list_dir", {"path": rel})
|
|
|
|
def read_preview(self, rel: str) -> Dict[str, Any]:
|
|
"""A text file's content (truncated by
|
|
``infrastructure/filesystem/file_tools.py::MAX_READ_BYTES``, same as
|
|
the agent's ``read_file`` tool)."""
|
|
return self._execute("read_file", {"path": rel})
|
|
|
|
def write_file(self, rel: str, content: str) -> Dict[str, Any]:
|
|
"""Create or fully overwrite ``rel``."""
|
|
return self._execute("write_file", {"path": rel, "content": content})
|
|
|
|
def apply_edit(self, rel: str, old_string: str, new_string: str,
|
|
replace_all: bool = False) -> Dict[str, Any]:
|
|
"""Replace an exact snippet in an existing file - the same
|
|
context-anchored algorithm the agent's ``edit_file`` tool uses, so an
|
|
AI-suggested diff applies with the same precision and the same
|
|
"old_string not found / ambiguous" failure messages either path
|
|
would give the caller."""
|
|
return self._execute("edit_file", {
|
|
"path": rel, "old_string": old_string, "new_string": new_string,
|
|
"replace_all": replace_all,
|
|
})
|
|
|
|
# -- internals --------------------------------------------------------- #
|
|
def _tool_context(self):
|
|
"""A ``ToolContext`` scoped to this session's workspace root.
|
|
``flatten_writes=False`` (unlike Cowork's agent context) - File
|
|
Explorer must preserve whatever subfolder structure the user is
|
|
actually browsing, not collapse every write into the root."""
|
|
from cowork_local.infrastructure.filesystem.tool_context import ToolContext
|
|
|
|
return ToolContext(self._session.workspace_root, flatten_writes=False)
|
|
|
|
def _execute(self, name: str, args: Dict[str, Any]) -> Dict[str, Any]:
|
|
"""Dispatch through ``core/tools.py::execute_tool`` - see the module
|
|
docstring for why this delegates instead of reimplementing."""
|
|
from cowork_local.core.tools import execute_tool
|
|
|
|
return execute_tool(self._tool_context(), name, args)
|
|
|
|
|
|
__all__ = ["FileWorkspaceService"]
|