mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-22 00:32:49 +00:00
feat(file_watcher): add directory deletion support with descendant indexing Add support for deleting entire directories and their indexed descendants in the file watcher. Previously only individual file deletions were handled properly. Now when a directory is deleted, the system finds all indexed files beneath that directory path and removes them along with their metadata and chunks. The implementation includes: - New `_descendant_indexed_paths` method to find all indexed files under a given directory path - Updated `_on_deleted` method to process both the target path and all its indexed descendants - Proper handling of symlinks and path resolution differences - Enhanced logging to show directory deletion with child count Also adds necessary os import for path operations. refactor(config): restructure configuration profiles for clarity Rename curated.yaml to remove outdated configuration file and rename full.yaml to expert.yaml with updated documentation. Add new service.yaml configuration profile that provides a service-aligned MCP surface with three main tools: - retrieve: graph-aware hybrid retrieval - remember: single write entry point with log/distill modes - maintain: vault hygiene sweep The expert configuration now excludes the ingest tool since cold-path operations are handled by external agents, and adds memory_lint tool for structural issue detection. Updated documentation to clarify the different configuration profiles and their intended usage patterns. ```
67 lines
2.1 KiB
Python
67 lines
2.1 KiB
Python
"""Vault path generation + naming disambiguation.
|
|
|
|
Pure-Python helpers consumed by the `sync` MCP step shell and any
|
|
future flow that needs to materialize a path under the vault layout.
|
|
No async, no MCP awareness — easy to unit-test.
|
|
|
|
Wikilink uniqueness is a *graph* property, not a path-builder concern —
|
|
see `reme2.component.file_store.BaseFileStore.collisions_after_create`
|
|
and `BaseFileStore.all_ambiguous_wikilinks`.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import re
|
|
from collections.abc import Iterable
|
|
from datetime import date as date_type
|
|
from pathlib import Path
|
|
|
|
|
|
def event_path(
|
|
vault_root: str | Path,
|
|
name: str,
|
|
on_date: date_type | str | None = None,
|
|
events_dir: str = "events",
|
|
) -> Path:
|
|
"""events/{YYYY-MM-DD}/{name}/{name}.md under the given vault root."""
|
|
if on_date is None:
|
|
on_date = date_type.today()
|
|
if isinstance(on_date, date_type):
|
|
on_date = on_date.isoformat()
|
|
return Path(vault_root) / events_dir / on_date / name / f"{name}.md"
|
|
|
|
|
|
def is_folder_topic(path: str | Path) -> bool:
|
|
"""True if filename stem == parent directory name (folder note convention)."""
|
|
p = Path(path)
|
|
return p.stem == p.parent.name
|
|
|
|
|
|
def next_suffixed_stem(taken: Iterable[str], base: str) -> str:
|
|
"""Lowest unused `<base>-N` (N≥2). Returns `base` itself if not taken.
|
|
|
|
Used by `sync` when a same-name-on-same-day collision is detected —
|
|
the suggested suffix is *advisory*; the create still rejects so the
|
|
agent can pick a domain-specific qualifier (e.g. `Apple-Inc` vs
|
|
`Apple-Fruit`) that carries more meaning than a numeric suffix.
|
|
|
|
Examples (with taken={"BABA", "BABA-2"}):
|
|
next_suffixed_stem(taken, "BABA") == "BABA-3"
|
|
next_suffixed_stem(taken, "MSFT") == "MSFT"
|
|
"""
|
|
taken_set = set(taken)
|
|
if base not in taken_set:
|
|
return base
|
|
pattern = re.compile(rf"^{re.escape(base)}-(\d+)$")
|
|
used: set[int] = set()
|
|
for s in taken_set:
|
|
m = pattern.match(s)
|
|
if m:
|
|
try:
|
|
used.add(int(m.group(1)))
|
|
except ValueError:
|
|
continue
|
|
n = 2
|
|
while n in used:
|
|
n += 1
|
|
return f"{base}-{n}"
|