chore: remove dead expand() function and skills/ bootstrap dirs

expand() had zero callers anywhere in the codebase. The skills/bash,
skills/powershell, and skills/python directories were created on every
startup but the skills/ tree is not part of the current architecture.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
curo1305
2026-05-17 18:09:36 +02:00
parent 27cc925965
commit 7bdb2c3faf
2 changed files with 0 additions and 5 deletions
-3
View File
@@ -33,9 +33,6 @@ def bootstrap() -> None:
ensure_dir(home / "memory" / "user", 0o700)
ensure_dir(home / "memory" / "context", 0o700)
ensure_dir(home / "memory" / "knowledge", 0o700)
ensure_dir(home / "skills" / "bash", 0o700)
ensure_dir(home / "skills" / "powershell", 0o700)
ensure_dir(home / "skills" / "python", 0o700)
ensure_dir(home / "vault" / "secrets", 0o700)
ensure_dir(home / "plugins", 0o700)
ensure_dir(home / "logs", 0o700)
-2
View File
@@ -17,5 +17,3 @@ def safe_chmod(path: Path, mode: int) -> None:
path.chmod(mode)
def expand(p: str) -> Path:
return Path(p).expanduser().resolve()