mirror of
https://github.com/eigent-ai/eigent.git
synced 2026-05-23 04:17:45 +00:00
Co-authored-by: Douglas <douglas.ym.lai@gmail.com> Co-authored-by: Douglas Lai <115660088+Douglasymlai@users.noreply.github.com>
110 lines
3.9 KiB
Python
110 lines
3.9 KiB
Python
# ========= Copyright 2025-2026 @ Eigent.ai All Rights Reserved. =========
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
# ========= Copyright 2025-2026 @ Eigent.ai All Rights Reserved. =========
|
|
|
|
"""
|
|
EnvironmentHands — IHands implementation driven by BrainCapabilities.
|
|
|
|
Brain deployment env determines capability set; all Channels share one instance.
|
|
Channel only handles message display format adaptation.
|
|
"""
|
|
|
|
from pathlib import Path
|
|
|
|
from app.hands.capabilities import BrainCapabilities
|
|
from app.hands.interface import IHands
|
|
|
|
|
|
class EnvironmentHands(IHands):
|
|
"""
|
|
IHands implementation based on BrainCapabilities.
|
|
Initialized at Brain startup from deployment env; globally reused.
|
|
"""
|
|
|
|
def __init__(self, caps: BrainCapabilities) -> None:
|
|
self._caps = caps
|
|
self.workspace_root = Path(caps.workspace_root).expanduser()
|
|
|
|
@property
|
|
def mode(self) -> str:
|
|
"""Capability tier: full | sandbox"""
|
|
return self._caps.mode
|
|
|
|
def can_execute_terminal(self) -> bool:
|
|
return self._caps.has_terminal
|
|
|
|
def can_access_filesystem(self, path: str) -> bool:
|
|
if self._caps.filesystem_scope == "full":
|
|
try:
|
|
resolved = Path(path).expanduser().resolve()
|
|
home = Path.home()
|
|
workspace = self.workspace_root.resolve()
|
|
try:
|
|
resolved.relative_to(home)
|
|
return True
|
|
except ValueError:
|
|
pass
|
|
try:
|
|
resolved.relative_to(workspace)
|
|
return True
|
|
except ValueError:
|
|
return False
|
|
except (OSError, RuntimeError):
|
|
return False
|
|
if self._caps.filesystem_scope == "workspace_only":
|
|
try:
|
|
resolved = Path(path).expanduser().resolve()
|
|
workspace = self.workspace_root.resolve()
|
|
resolved.relative_to(workspace)
|
|
return True
|
|
except ValueError:
|
|
return False
|
|
except (OSError, RuntimeError):
|
|
return False
|
|
return False # none
|
|
|
|
def can_use_mcp(self, mcp_name: str) -> bool:
|
|
if self._caps.mcp_mode == "all":
|
|
return True
|
|
return mcp_name in self._caps.mcp_allowlist
|
|
|
|
def can_use_browser(self) -> bool:
|
|
return self._caps.has_browser
|
|
|
|
def get_working_directory(
|
|
self, session_id: str, tenant_id: str = "default"
|
|
) -> str:
|
|
return str(self.workspace_root / session_id)
|
|
|
|
def get_capability_manifest(self) -> dict[str, str | bool | list[str]]:
|
|
return {
|
|
"mode": self.mode,
|
|
"terminal": self._caps.has_terminal,
|
|
"browser": self._caps.has_browser,
|
|
"filesystem": self._caps.filesystem_scope,
|
|
"mcp": self._caps.mcp_mode,
|
|
"mcp_allowlist": list(self._caps.mcp_allowlist),
|
|
"deployment": self._caps.deployment_type,
|
|
"workspace_root": str(self.workspace_root),
|
|
}
|
|
|
|
def acquire_resource(
|
|
self, resource_type: str, session_id: str, **kwargs
|
|
) -> str:
|
|
if resource_type == "browser":
|
|
port = kwargs.get("port", 9222)
|
|
return f"http://localhost:{port}"
|
|
raise ValueError(f"Unknown resource type: {resource_type}")
|
|
|
|
def release_resource(self, resource_type: str, session_id: str) -> None:
|
|
return None
|