Ryker_Feng f52818fe5e
feat(skills): export custom skill packages with revision-bound preview (#5332)
* feat(skills): export custom skill packages with revision preview

* docs(gateway): keep export guidance within size budget

* ci: retry checks after transient uv setup download failure

* docs: focus skill export agent guidance on maintenance invariants

* fix(skills): handle export disconnects and bound archive transfers

* docs(gateway): remove redundant export guidance to fit merged budget

* fix(skills): reset export idle deadline after transfer progress
2026-09-11 16:21:23 +08:00

866 lines
35 KiB
Python

"""Materialize enabled-only skill trees for sandbox filesystem exposure."""
from __future__ import annotations
import errno
import hashlib
import json
import logging
import os
import shutil
import tempfile
import threading
from collections.abc import Iterator
from contextlib import contextmanager
from dataclasses import dataclass
from pathlib import Path
from typing import TYPE_CHECKING
from deerflow.skills.parser import parse_skill_file
from deerflow.skills.types import SKILL_MD_FILE, Skill, SkillCategory
if TYPE_CHECKING:
from deerflow.skills.storage.skill_storage import SkillStorage
logger = logging.getLogger(__name__)
try:
import fcntl
except ImportError: # pragma: no cover - Windows
fcntl = None # type: ignore[assignment]
import msvcrt
_locks_guard = threading.Lock()
_process_locks: dict[Path, threading.RLock] = {}
_MANIFEST_VERSION = 1
_MAX_REBUILD_ATTEMPTS = 2
_THREAD_PROJECTION_POLICY_VERSION = 1
@dataclass(frozen=True)
class SkillProjectionPaths:
"""Stable category roots mounted or uploaded by sandbox providers."""
public: Path
custom: Path
legacy: Path
integrations: Path
def get_skill_projection_paths(storage: SkillStorage) -> SkillProjectionPaths:
from deerflow.config.paths import get_paths
paths = getattr(storage, "_paths", None) or get_paths()
user_id = getattr(storage, "user_id", None)
if user_id is None:
return SkillProjectionPaths(
public=paths.public_skills_view_dir,
custom=paths.skills_view_dir / "custom",
legacy=paths.skills_view_dir / "legacy",
integrations=paths.skills_view_dir / "integrations",
)
return SkillProjectionPaths(
public=paths.public_skills_view_dir,
custom=paths.user_custom_skills_view_dir(user_id),
legacy=paths.user_legacy_skills_view_dir(user_id),
integrations=paths.user_integration_skills_view_dir(user_id),
)
def get_thread_skill_projection_paths(storage: SkillStorage, thread_id: str) -> SkillProjectionPaths:
"""Return stable category roots for one user's thread policy view."""
from deerflow.config.paths import get_paths
paths = getattr(storage, "_paths", None) or get_paths()
user_id = getattr(storage, "user_id", None)
if user_id is None:
raise ValueError("Thread skill projections require user-scoped skill storage")
root = paths.thread_skills_view_dir(thread_id, user_id=user_id)
return SkillProjectionPaths(
public=root / SkillCategory.PUBLIC.value,
custom=root / SkillCategory.CUSTOM.value,
legacy=root / SkillCategory.LEGACY.value,
integrations=root / SkillCategory.INTEGRATION.value,
)
def thread_skill_projection_exists(storage: SkillStorage, thread_id: str) -> bool:
"""Whether this thread has crossed into a stable policy-scoped view."""
paths = get_thread_skill_projection_paths(storage, thread_id)
return paths.public.parent.exists()
def _lock_for(path: Path) -> threading.RLock:
resolved = path.resolve()
with _locks_guard:
return _process_locks.setdefault(resolved, threading.RLock())
@contextmanager
def _projection_lock(root: Path) -> Iterator[None]:
"""Serialize projection replacement in-process and across POSIX workers."""
lock_path = root.parent / f".{root.name}.projection.lock"
lock_path.parent.mkdir(parents=True, exist_ok=True)
process_lock = _lock_for(lock_path)
with process_lock, lock_path.open("a", encoding="utf-8") as lock_file:
if fcntl is not None:
fcntl.flock(lock_file, fcntl.LOCK_EX)
else: # pragma: no cover - Windows
lock_file.seek(0)
msvcrt.locking(lock_file.fileno(), msvcrt.LK_LOCK, 1)
try:
yield
finally:
if fcntl is not None:
fcntl.flock(lock_file, fcntl.LOCK_UN)
else: # pragma: no cover - Windows
lock_file.seek(0)
msvcrt.locking(lock_file.fileno(), msvcrt.LK_UNLCK, 1)
def _copy_into_view(source: str, target: str, *, follow_symlinks: bool = True) -> str:
# Always copy. Hardlinks share the source inode, so a LocalSandbox bash
# write through the projected view would mutate the canonical skill file.
# Isolation must live in the projection itself; PathMapping.read_only is
# only enforced by write_file / update_file, not execute_command.
shutil.copy2(source, target, follow_symlinks=follow_symlinks)
return target
def _validate_projected_skill_symlinks(source: Path) -> None:
"""Reject links that would escape a policy-scoped skill package.
Relative links to support files inside the same package remain useful and
resolve inside the copied projection. Absolute links would keep pointing at
the canonical host tree, and links outside the package could expose an
omitted skill, so both fail closed before any live view is changed.
"""
package_root = source.resolve(strict=True)
for current_root, dir_names, file_names in os.walk(source, followlinks=False):
current = Path(current_root)
for name in (*dir_names, *file_names):
path = current / name
if not path.is_symlink():
continue
raw_target = Path(os.readlink(path))
if raw_target.is_absolute():
raise ValueError(f"Policy-scoped skill contains an absolute symlink: {path}")
try:
resolved_target = path.resolve(strict=True)
except (OSError, RuntimeError) as exc:
raise ValueError(f"Policy-scoped skill contains an invalid symlink: {path}") from exc
if not resolved_target.is_relative_to(package_root):
raise ValueError(f"Policy-scoped skill symlink escapes its package: {path}")
def _stage_skill(
source: Path,
target: Path,
nested_skill_roots: set[Path],
*,
enforce_symlink_boundary: bool = False,
) -> None:
if enforce_symlink_boundary:
_validate_projected_skill_symlinks(source)
def _exclude_nested_skills(current: str, names: list[str]) -> list[str]:
relative_root = Path(current).relative_to(source)
return [name for name in names if relative_root / name in nested_skill_roots]
shutil.copytree(
source,
target,
copy_function=_copy_into_view,
symlinks=True,
ignore=_exclude_nested_skills,
dirs_exist_ok=True,
)
def _path_kind(path: Path) -> str:
if path.is_symlink():
return "symlink"
if path.is_dir():
return "directory"
return "file"
def _tree_entries(root: Path) -> dict[Path, str]:
entries: dict[Path, str] = {}
for current_root, dir_names, file_names in os.walk(root, followlinks=False):
current = Path(current_root)
for name in dir_names:
path = current / name
entries[path.relative_to(root)] = _path_kind(path)
dir_names[:] = [name for name in dir_names if not (current / name).is_symlink()]
for name in file_names:
path = current / name
entries[path.relative_to(root)] = _path_kind(path)
return entries
def _remove_projection_entry(path: Path) -> None:
if path.is_dir() and not path.is_symlink():
shutil.rmtree(path)
else:
path.unlink(missing_ok=True)
def _validate_projection_relative_path(relative_path: Path) -> None:
if relative_path.is_absolute() or not relative_path.parts or any(part in {"", ".", ".."} for part in relative_path.parts):
raise ValueError("Projection removal path must identify a package within its category root")
def _remove_projection_relative(root: Path, relative_path: Path) -> None:
"""Remove a projected package without following a drifted namespace symlink."""
current = root
parts = relative_path.parts
for index, part in enumerate(parts):
current /= part
if current.is_symlink():
current.unlink()
return
# A namespace component that exists as a regular file means the
# projection was externally replaced (drifted). Fail closed on every
# platform: os.unlink() reports this as ENOTDIR on POSIX but ENOENT
# on Windows, where unlink(missing_ok=True) swallows the ENOENT.
if index < len(parts) - 1 and current.exists() and not current.is_dir():
raise NotADirectoryError(errno.ENOTDIR, f"Projection namespace drifted to a file: {current}")
_remove_projection_entry(current)
def _sync_staged_category(root: Path, staging: Path) -> None:
desired = _tree_entries(staging)
live = _tree_entries(root)
for relative_path, live_kind in sorted(live.items(), key=lambda item: len(item[0].parts), reverse=True):
if desired.get(relative_path) != live_kind:
_remove_projection_entry(root / relative_path)
for relative_path, kind in sorted(desired.items(), key=lambda item: len(item[0].parts)):
if kind == "directory":
(root / relative_path).mkdir(parents=True, exist_ok=True)
for relative_path, kind in desired.items():
if kind == "directory":
continue
target = root / relative_path
target.parent.mkdir(parents=True, exist_ok=True)
(staging / relative_path).replace(target)
def _replace_category(
root: Path,
desired: dict[Path, Skill],
skill_boundaries: set[Path],
*,
enforce_symlink_boundary: bool = False,
) -> None:
"""Reconcile entries beneath a stable category root without blanking it."""
root.mkdir(parents=True, exist_ok=True)
with tempfile.TemporaryDirectory(prefix=f".{root.name}.projection-", dir=root.parent) as staging_dir:
staging = Path(staging_dir)
for relative_path, skill in desired.items():
nested_roots = {boundary.relative_to(relative_path) for boundary in skill_boundaries if boundary != relative_path and boundary.is_relative_to(relative_path)}
_stage_skill(
skill.skill_dir,
staging / relative_path,
nested_roots,
enforce_symlink_boundary=enforce_symlink_boundary,
)
_sync_staged_category(root, staging)
def _clear_category(root: Path) -> None:
root.mkdir(parents=True, exist_ok=True)
for path in root.iterdir():
if path.is_dir() and not path.is_symlink():
shutil.rmtree(path)
else:
path.unlink()
def _clear_projection_scope(scope_root: Path, *category_roots: Path) -> None:
for category_root in category_roots:
_clear_category(category_root)
_manifest_path(scope_root).unlink(missing_ok=True)
def _update_tree_digest(
digest,
root: Path,
label: str,
*,
follow_package_directory_symlinks: bool = False,
) -> None:
"""Hash directory metadata (inode/mode/size/mtime), not file contents.
Trade-off: fast enough to run on every sandbox acquire (O(files), no
reads), but an external edit that preserves inode+size+mtime — unlikely,
not zero-probability — is invisible to this signature and leaves the
projection stale until the next explicit rebuild. Runtime writes through
this codebase are covered regardless: the mutation path rebuilds under
lock, and atomic-rename always changes the inode.
Custom skill roots may contain an operator-managed package directory
symlink. Follow only those links directly below the category root so
changes in their external target tree invalidate the projection, while
nested and unrelated symlinks remain boundary markers.
"""
digest.update(f"root:{label}\0".encode())
if not root.exists():
digest.update(b"absent\0")
return
stack = [(root, Path("."))]
while stack:
current, relative_root = stack.pop()
with os.scandir(current) as entries:
ordered = sorted(entries, key=lambda entry: entry.name)
child_dirs: list[tuple[Path, Path]] = []
for entry in ordered:
relative = relative_root / entry.name
metadata = entry.stat(follow_symlinks=False)
if entry.is_symlink():
kind = "link"
if follow_package_directory_symlinks and relative_root == Path(".") and entry.is_dir(follow_symlinks=True):
digest.update(f"{label}:{relative.as_posix()}:target:{Path(entry.path).resolve(strict=False)}\0".encode())
child_dirs.append((Path(entry.path), relative))
elif entry.is_dir(follow_symlinks=False):
kind = "dir"
child_dirs.append((Path(entry.path), relative))
else:
kind = "file"
digest.update((f"{label}:{relative.as_posix()}:{kind}:{metadata.st_ino}:{metadata.st_mode}:{metadata.st_size}:{metadata.st_mtime_ns}\0").encode())
stack.extend(reversed(child_dirs))
def _extensions_state() -> dict:
from deerflow.config.extensions_config import ExtensionsConfig
config = ExtensionsConfig.from_file()
return {name: state.model_dump(mode="json") for name, state in config.skills.items()}
def _source_signature(storage: SkillStorage, scope: str) -> str:
digest = hashlib.sha256()
host_root = storage.get_skills_root_path()
if scope == "public":
_update_tree_digest(digest, host_root / SkillCategory.PUBLIC.value, "public")
state = {"extensions": _extensions_state()}
elif scope == "user":
user_custom_root = storage.get_user_custom_root()
integration_root = storage.get_user_integrations_root()
_update_tree_digest(
digest,
user_custom_root,
"custom",
follow_package_directory_symlinks=True,
)
_update_tree_digest(
digest,
host_root / SkillCategory.CUSTOM.value,
"legacy",
follow_package_directory_symlinks=True,
)
_update_tree_digest(digest, integration_root, "integrations")
# CUSTOM/LEGACY/INTEGRATION visibility is the intersection of the
# per-user state and the global extensions default, so both belong in
# this signature.
state = {
"extensions": _extensions_state(),
"user": storage._read_skill_states(),
}
else: # pragma: no cover - internal invariant
raise ValueError(f"Unknown skill projection scope: {scope}")
digest.update(json.dumps(state, sort_keys=True, separators=(",", ":")).encode())
return digest.hexdigest()
def _manifest_path(scope_root: Path) -> Path:
return scope_root / ".projection-manifest.json"
def _read_manifest(scope_root: Path) -> dict | None:
try:
value = json.loads(_manifest_path(scope_root).read_text(encoding="utf-8"))
except (OSError, json.JSONDecodeError):
return None
return value if isinstance(value, dict) else None
def _write_manifest(scope_root: Path, source_signature: str, view_signature: str | None = None) -> None:
scope_root.mkdir(parents=True, exist_ok=True)
target = _manifest_path(scope_root)
fd, temporary_name = tempfile.mkstemp(prefix=".projection-manifest-", suffix=".tmp", dir=scope_root)
temporary = Path(temporary_name)
payload = {
"version": _MANIFEST_VERSION,
"source_signature": source_signature,
}
if view_signature is not None:
payload["view_signature"] = view_signature
try:
with os.fdopen(fd, "w", encoding="utf-8") as stream:
json.dump(payload, stream, sort_keys=True)
temporary.replace(target)
except Exception:
temporary.unlink(missing_ok=True)
raise
def _view_signature(paths: SkillProjectionPaths, scope: str) -> str:
digest = hashlib.sha256()
if scope == "public":
_update_tree_digest(digest, paths.public, "public_view")
elif scope in {"user", "thread"}:
if scope == "thread":
_update_tree_digest(digest, paths.public, "public_view")
_update_tree_digest(digest, paths.custom, "custom_view")
_update_tree_digest(digest, paths.legacy, "legacy_view")
_update_tree_digest(digest, paths.integrations, "integrations_view")
else: # pragma: no cover - internal invariant
raise ValueError(f"Unknown skill projection scope: {scope}")
return digest.hexdigest()
def _thread_source_signature(
storage: SkillStorage,
allowed_skills: set[str] | None,
) -> str:
"""Sign every input that changes a thread's effective skill view."""
digest = hashlib.sha256()
digest.update(f"policy-version:{_THREAD_PROJECTION_POLICY_VERSION}\0".encode())
digest.update(f"public:{_source_signature(storage, 'public')}\0".encode())
digest.update(f"user:{_source_signature(storage, 'user')}\0".encode())
policy = None if allowed_skills is None else sorted(allowed_skills)
digest.update(json.dumps(policy, separators=(",", ":"), ensure_ascii=True).encode())
return digest.hexdigest()
def _thread_projection_is_fresh(
storage: SkillStorage,
paths: SkillProjectionPaths,
allowed_skills: set[str] | None,
) -> bool:
scope_root = paths.public.parent
if not all(path.is_dir() for path in (paths.public, paths.custom, paths.legacy, paths.integrations)):
return False
manifest_before = _read_manifest(scope_root)
if manifest_before is None or manifest_before.get("version") != _MANIFEST_VERSION:
return False
source_sig = _thread_source_signature(storage, allowed_skills)
view_sig = _view_signature(paths, "thread")
manifest_after = _read_manifest(scope_root)
return manifest_before == manifest_after and manifest_before.get("source_signature") == source_sig and manifest_before.get("view_signature") == view_sig
def _load_public_skills(storage: SkillStorage, *, enabled_only: bool) -> list[Skill]:
from deerflow.config.extensions_config import ExtensionsConfig
public_root = storage.get_skills_root_path() / SkillCategory.PUBLIC.value
if not public_root.is_dir():
return []
extensions = ExtensionsConfig.from_file()
skills: list[Skill] = []
for current_root, dir_names, file_names in os.walk(public_root, followlinks=True):
dir_names[:] = sorted(name for name in dir_names if not name.startswith("."))
if SKILL_MD_FILE not in file_names:
continue
# Match the runtime loader: nested SKILL.md files inside a package are
# support data, not independently configurable skills.
dir_names.clear()
skill_file = Path(current_root) / SKILL_MD_FILE
skill = parse_skill_file(
skill_file,
category=SkillCategory.PUBLIC,
relative_path=skill_file.parent.relative_to(public_root),
)
if skill is None:
continue
enabled = extensions.is_skill_enabled(skill.name, SkillCategory.PUBLIC.value)
if not enabled_only or enabled:
skills.append(skill)
return skills
def _by_relative_path(skills: list[Skill], category: SkillCategory) -> dict[Path, Skill]:
return {skill.relative_path: skill for skill in skills if skill.category == category}
def _category_boundaries(skills: list[Skill], category: SkillCategory) -> set[Path]:
return {skill.relative_path for skill in skills if skill.category == category}
def _rebuild_public_locked(storage: SkillStorage, paths: SkillProjectionPaths) -> None:
scope_root = paths.public.parent
try:
for _attempt in range(_MAX_REBUILD_ATTEMPTS):
before = _source_signature(storage, "public")
all_public_skills = _load_public_skills(storage, enabled_only=False)
enabled_public_skills = _load_public_skills(storage, enabled_only=True)
_replace_category(
paths.public,
_by_relative_path(enabled_public_skills, SkillCategory.PUBLIC),
_category_boundaries(all_public_skills, SkillCategory.PUBLIC),
)
after = _source_signature(storage, "public")
if before == after:
_write_manifest(scope_root, after, _view_signature(paths, "public"))
return
raise RuntimeError("Public skills changed repeatedly while rebuilding the sandbox projection")
except Exception:
_clear_projection_scope(scope_root, paths.public)
raise
def _rebuild_user_locked(storage: SkillStorage, paths: SkillProjectionPaths) -> None:
scope_root = paths.custom.parent
try:
for _attempt in range(_MAX_REBUILD_ATTEMPTS):
before = _source_signature(storage, "user")
all_user_skills = storage.load_skills(enabled_only=False)
enabled_user_skills = [skill for skill in all_user_skills if skill.enabled]
_replace_category(
paths.custom,
_by_relative_path(enabled_user_skills, SkillCategory.CUSTOM),
_category_boundaries(all_user_skills, SkillCategory.CUSTOM),
)
_replace_category(
paths.legacy,
_by_relative_path(enabled_user_skills, SkillCategory.LEGACY),
_category_boundaries(all_user_skills, SkillCategory.LEGACY),
)
_replace_category(
paths.integrations,
_by_relative_path(enabled_user_skills, SkillCategory.INTEGRATION),
_category_boundaries(all_user_skills, SkillCategory.INTEGRATION),
)
after = _source_signature(storage, "user")
if before == after:
_write_manifest(scope_root, after, _view_signature(paths, "user"))
return
raise RuntimeError("User skills changed repeatedly while rebuilding the sandbox projection")
except Exception:
_clear_projection_scope(scope_root, paths.custom, paths.legacy, paths.integrations)
raise
def _rebuild_thread_locked(
storage: SkillStorage,
paths: SkillProjectionPaths,
allowed_skills: set[str] | None,
) -> None:
"""Rebuild one thread's effective view, removing old authority first.
Category roots stay inode-stable for live bind mounts. Clearing all four
before repopulating is deliberately fail-closed: concurrent readers may
briefly observe fewer allowed skills, but never a skill removed by the new
policy.
"""
scope_root = paths.public.parent
category_roots = (paths.public, paths.custom, paths.legacy, paths.integrations)
try:
for _attempt in range(_MAX_REBUILD_ATTEMPTS):
before = _thread_source_signature(storage, allowed_skills)
# User-scoped loading performs the same name-shadow resolution as
# prompt discovery. Use that effective catalog for every category;
# independently loading public skills would expose both copies when
# a custom or integration skill shadows a built-in skill by name.
all_effective_skills = storage.load_skills(enabled_only=False)
enabled_skills = [skill for skill in all_effective_skills if skill.enabled]
if allowed_skills is not None:
enabled_skills = [skill for skill in enabled_skills if skill.name in allowed_skills]
# Revoke the previous policy before exposing any part of the new
# one. The enclosing cross-process lock serializes competing runs.
_clear_projection_scope(scope_root, *category_roots)
_replace_category(
paths.public,
_by_relative_path(enabled_skills, SkillCategory.PUBLIC),
_category_boundaries(all_effective_skills, SkillCategory.PUBLIC),
enforce_symlink_boundary=True,
)
_replace_category(
paths.custom,
_by_relative_path(enabled_skills, SkillCategory.CUSTOM),
_category_boundaries(all_effective_skills, SkillCategory.CUSTOM),
enforce_symlink_boundary=True,
)
_replace_category(
paths.legacy,
_by_relative_path(enabled_skills, SkillCategory.LEGACY),
_category_boundaries(all_effective_skills, SkillCategory.LEGACY),
enforce_symlink_boundary=True,
)
_replace_category(
paths.integrations,
_by_relative_path(enabled_skills, SkillCategory.INTEGRATION),
_category_boundaries(all_effective_skills, SkillCategory.INTEGRATION),
enforce_symlink_boundary=True,
)
after = _thread_source_signature(storage, allowed_skills)
if before == after:
_write_manifest(scope_root, after, _view_signature(paths, "thread"))
return
raise RuntimeError("Skills changed repeatedly while rebuilding the thread sandbox projection")
except Exception:
_clear_projection_scope(scope_root, *category_roots)
raise
def ensure_thread_skill_projection(
storage: SkillStorage,
thread_id: str,
allowed_skills: set[str] | None,
) -> SkillProjectionPaths | None:
"""Ensure the filesystem view for one run's effective Agent skill policy.
``None`` keeps the existing shared projection for threads that have never
needed policy isolation. Once a thread has a scoped view, later unrestricted
runs rebuild that same stable mount with all enabled skills so switching
agents cannot leave the thread accidentally restricted.
"""
paths = get_thread_skill_projection_paths(storage, thread_id)
scope_root = paths.public.parent
if allowed_skills is None and not scope_root.exists():
return None
try:
fresh = _thread_projection_is_fresh(storage, paths, allowed_skills)
except Exception:
fresh = False
if fresh:
return paths
with _projection_lock(scope_root):
try:
if not _thread_projection_is_fresh(storage, paths, allowed_skills):
_rebuild_thread_locked(storage, paths, allowed_skills)
except Exception:
_clear_projection_scope(
scope_root,
paths.public,
paths.custom,
paths.legacy,
paths.integrations,
)
raise
return paths
def rebuild_skill_projections(
storage: SkillStorage,
*,
include_public: bool = True,
include_user: bool = True,
) -> SkillProjectionPaths:
"""Rebuild enabled-only projection scopes visible through ``storage``."""
paths = get_skill_projection_paths(storage)
user_id = getattr(storage, "user_id", None)
if include_public:
with _projection_lock(paths.public.parent):
_rebuild_public_locked(storage, paths)
if include_user and user_id is not None:
with _projection_lock(paths.custom.parent):
_rebuild_user_locked(storage, paths)
return paths
def _public_projection_is_fresh(storage: SkillStorage, paths: SkillProjectionPaths) -> bool:
if not paths.public.is_dir():
return False
manifest_before = _read_manifest(paths.public.parent)
if manifest_before is None or manifest_before.get("version") != _MANIFEST_VERSION:
return False
source_sig = _source_signature(storage, "public")
view_sig = _view_signature(paths, "public")
manifest_after = _read_manifest(paths.public.parent)
return manifest_before == manifest_after and manifest_before.get("source_signature") == source_sig and manifest_before.get("view_signature") == view_sig
def ensure_skill_projections(storage: SkillStorage) -> SkillProjectionPaths:
"""Repair stale projection scopes, otherwise leave their inodes untouched."""
paths = get_skill_projection_paths(storage)
try:
public_is_fresh = _public_projection_is_fresh(storage, paths)
except Exception:
# Re-check under the mutation lock before failing closed. A concurrent
# writer may have exposed a transient source/manifest state.
public_is_fresh = False
if not public_is_fresh:
with _projection_lock(paths.public.parent):
try:
if not _public_projection_is_fresh(storage, paths):
_rebuild_public_locked(storage, paths)
except Exception:
_clear_projection_scope(paths.public.parent, paths.public)
raise
if getattr(storage, "user_id", None) is not None:
with _projection_lock(paths.custom.parent):
try:
manifest = _read_manifest(paths.custom.parent)
source_sig = _source_signature(storage, "user")
view_sig = _view_signature(paths, "user")
if (
not paths.custom.is_dir()
or not paths.legacy.is_dir()
or not paths.integrations.is_dir()
or manifest is None
or manifest.get("version") != _MANIFEST_VERSION
or manifest.get("source_signature") != source_sig
or manifest.get("view_signature") != view_sig
):
_rebuild_user_locked(storage, paths)
except Exception:
_clear_projection_scope(paths.custom.parent, paths.custom, paths.legacy, paths.integrations)
raise
return paths
@contextmanager
def skill_projection_mutation(
storage: SkillStorage,
scope: str,
*,
remove: tuple[tuple[SkillCategory, Path], ...] = (),
remove_names: tuple[str, ...] = (),
) -> Iterator[None]:
"""Hold a projection scope lock across a source/state mutation."""
if not isinstance(storage.get_skills_root_path(), Path):
# Lightweight unit-test doubles sometimes return MagicMock here. The
# SkillStorage contract requires a Path; real storage implementations
# therefore never take this compatibility branch.
yield
return
paths = get_skill_projection_paths(storage)
if scope == "public":
scope_root = paths.public.parent
category_roots = {SkillCategory.PUBLIC: paths.public}
def rebuild() -> None:
_rebuild_public_locked(storage, paths)
elif scope == "user":
scope_root = paths.custom.parent
category_roots = {
SkillCategory.CUSTOM: paths.custom,
SkillCategory.LEGACY: paths.legacy,
SkillCategory.INTEGRATION: paths.integrations,
}
def rebuild() -> None:
_rebuild_user_locked(storage, paths)
else:
raise ValueError(f"Unknown skill projection scope: {scope}")
removals: set[tuple[Path, Path]] = set()
for category, relative_path in remove:
root = category_roots.get(category)
if root is None:
raise ValueError(f"Skill category {category.value!r} does not belong to projection scope {scope!r}")
_validate_projection_relative_path(relative_path)
removals.add((root, relative_path))
with _projection_lock(scope_root):
if remove_names:
names = set(remove_names)
skills = _load_public_skills(storage, enabled_only=False) if scope == "public" else storage.load_skills(enabled_only=False)
for skill in skills:
root = category_roots.get(skill.category)
if skill.name not in names or root is None:
continue
_validate_projection_relative_path(skill.relative_path)
removals.add((root, skill.relative_path))
try:
_manifest_path(scope_root).unlink(missing_ok=True)
for root, relative_path in removals:
_remove_projection_relative(root, relative_path)
yield
rebuild()
except Exception:
_clear_projection_scope(scope_root, *category_roots.values())
raise
def ensure_public_skill_projection(*, app_config=None) -> bool:
"""Ensure the global public view during boot without scanning user data.
User projections are repaired lazily by sandbox acquire. Eagerly rebuilding
every historical user would make gateway readiness scale with tenant count,
while providing no additional safety before that user's next acquire.
"""
from deerflow.config import get_app_config
from deerflow.config.paths import get_paths
from deerflow.skills.storage import get_or_new_skill_storage
try:
config = app_config or get_app_config()
public_storage = get_or_new_skill_storage(app_config=config)
ensure_skill_projections(public_storage)
except Exception:
logger.warning("Failed to ensure the public skill projection during boot; clearing it until a sandbox acquire self-heals it", exc_info=True)
try:
paths = get_paths()
with _projection_lock(paths.public_skills_view_dir.parent):
_clear_projection_scope(paths.public_skills_view_dir.parent, paths.public_skills_view_dir)
except Exception:
logger.error("Failed to clear the public skill projection after a boot-time error", exc_info=True)
return False
return True
@contextmanager
def skill_projection_read_lock(storage: SkillStorage, *, timeout: float = 5.0, check=None) -> Iterator[None]:
"""Bounded, non-mutating acquisition of the existing user projection lock."""
import time
root = (storage.get_skills_root_path() / "custom") if getattr(storage, "user_id", None) is None else get_skill_projection_paths(storage).custom.parent
lock_path = root.parent / f".{root.name}.projection.lock"
lock_path.parent.mkdir(parents=True, exist_ok=True)
process_lock = _lock_for(lock_path)
deadline = time.monotonic() + timeout
acquired = False
try:
while not acquired:
if check:
check()
acquired = process_lock.acquire(timeout=min(0.05, max(0, deadline - time.monotonic())))
if not acquired and time.monotonic() >= deadline:
raise TimeoutError("Skill projection lock timeout")
with lock_path.open("a", encoding="utf-8") as lock_file:
locked = False
try:
while not locked:
if check:
check()
try:
if fcntl is not None:
fcntl.flock(lock_file, fcntl.LOCK_EX | fcntl.LOCK_NB)
else: # pragma: no cover - Windows
lock_file.seek(0)
msvcrt.locking(lock_file.fileno(), msvcrt.LK_NBLCK, 1)
locked = True
except OSError as error:
if error.errno not in (errno.EACCES, errno.EAGAIN, errno.EDEADLK):
raise
if time.monotonic() >= deadline:
raise TimeoutError("Skill projection lock timeout") from None
time.sleep(0.02)
yield
finally:
if locked:
if fcntl is not None:
fcntl.flock(lock_file, fcntl.LOCK_UN)
else: # pragma: no cover - Windows
lock_file.seek(0)
msvcrt.locking(lock_file.fileno(), msvcrt.LK_UNLCK, 1)
finally:
if acquired:
process_lock.release()