Rename Castle -> Wild PC across the repo

Repo-side rename only (Phases 1-3 of the migration plan); the live box
(~/.castle, systemd units, /data/castle, domains) is a separate cutover.

- Slug `castle` -> `wildpc`: CLI command, module names (wildpc_core/cli/api),
  dist names, entry point `wildpc = wildpc_cli.main:main`.
- Identifiers: CastleConfig/NATSClient/DirError/MDNS -> Wildpc*.
- Env/constants: CASTLE_* -> WILDPC_*; ~/.castle -> ~/.wildpc, castle.yaml ->
  wildpc.yaml, /data/castle -> /data/wildpc.
- Systemd UNIT_PREFIX castle- -> wildpc-; own programs castle-api/gateway/etc.
- Display prose "Castle" -> "Wild PC" in docs, agent-guide files, README, frontend.
- Package dirs and bootstrap yaml renamed via git mv; lockfiles regenerated;
  redundant nested uv.lock files dropped (workspace root lock is authoritative).

Tests: core 273, cli 47, wildpc-api 120 all pass. Frontend type-checks + builds.
Fixed a stale test fixture (secret_env_path kind arg) broken pre-rename.
This commit is contained in:
2026-07-18 22:55:08 -07:00
parent 25d7a522cc
commit 05b28cb584
190 changed files with 2428 additions and 3337 deletions

View File

@@ -1,4 +1,4 @@
"""Tests for castle create command."""
"""Tests for wildpc create command."""
from __future__ import annotations
@@ -6,24 +6,24 @@ from argparse import Namespace
from pathlib import Path
from unittest.mock import patch
from castle_cli.config import load_config
from wildpc_cli.config import load_config
class TestCreateCommand:
"""Tests for the create command."""
def test_create_service(self, castle_root: Path, tmp_path: Path) -> None:
def test_create_service(self, wildpc_root: Path, tmp_path: Path) -> None:
"""Create a new service project."""
repos = tmp_path / "repos"
with (
patch("castle_cli.commands.create.load_config") as mock_load,
patch("castle_cli.commands.create.save_config") as mock_save,
patch("wildpc_cli.commands.create.load_config") as mock_load,
patch("wildpc_cli.commands.create.save_config") as mock_save,
):
config = load_config(castle_root)
config = load_config(wildpc_root)
config.repos_dir = repos
mock_load.return_value = config
from castle_cli.commands.create import run_create
from wildpc_cli.commands.create import run_create
args = Namespace(
name="my-api",
@@ -51,18 +51,18 @@ class TestCreateCommand:
assert svc.program == "my-api"
mock_save.assert_called_once()
def test_create_tool(self, castle_root: Path, tmp_path: Path) -> None:
def test_create_tool(self, wildpc_root: Path, tmp_path: Path) -> None:
"""Create a new tool project."""
repos = tmp_path / "repos"
with (
patch("castle_cli.commands.create.load_config") as mock_load,
patch("castle_cli.commands.create.save_config"),
patch("wildpc_cli.commands.create.load_config") as mock_load,
patch("wildpc_cli.commands.create.save_config"),
):
config = load_config(castle_root)
config = load_config(wildpc_root)
config.repos_dir = repos
mock_load.return_value = config
from castle_cli.commands.create import run_create
from wildpc_cli.commands.create import run_create
args = Namespace(name="my-tool2", stack="python-cli", description="My tool", port=None)
result = run_create(args)
@@ -77,19 +77,19 @@ class TestCreateCommand:
assert config.tools["my-tool2"].manager == "path"
assert config.deployments_of("my-tool2") == [("my-tool2", "tool")]
def test_create_supabase_app(self, castle_root: Path, tmp_path: Path) -> None:
def test_create_supabase_app(self, wildpc_root: Path, tmp_path: Path) -> None:
"""A supabase app scaffolds a Patch-shaped project registered as a static
frontend (build.outputs=[public]) with no service."""
repos = tmp_path / "repos"
with (
patch("castle_cli.commands.create.load_config") as mock_load,
patch("castle_cli.commands.create.save_config"),
patch("wildpc_cli.commands.create.load_config") as mock_load,
patch("wildpc_cli.commands.create.save_config"),
):
config = load_config(castle_root)
config = load_config(wildpc_root)
config.repos_dir = repos
mock_load.return_value = config
from castle_cli.commands.create import run_create
from wildpc_cli.commands.create import run_create
args = Namespace(name="guestbook", stack="supabase", description="Guestbook", port=None)
result = run_create(args)
@@ -114,13 +114,13 @@ class TestCreateCommand:
assert [(r.kind, r.ref) for r in dep.requires] == [("deployment", "supabase")]
assert config.deployments_of("guestbook") == [("guestbook", "static")]
def test_create_duplicate_fails(self, castle_root: Path, capsys: object) -> None:
def test_create_duplicate_fails(self, wildpc_root: Path, capsys: object) -> None:
"""Creating a project with existing name fails."""
with patch("castle_cli.commands.create.load_config") as mock_load:
config = load_config(castle_root)
with patch("wildpc_cli.commands.create.load_config") as mock_load:
config = load_config(wildpc_root)
mock_load.return_value = config
from castle_cli.commands.create import run_create
from wildpc_cli.commands.create import run_create
# test-svc exists in the services section
args = Namespace(
@@ -133,17 +133,17 @@ class TestCreateCommand:
assert result == 1
def test_create_auto_port(self, castle_root: Path, tmp_path: Path) -> None:
def test_create_auto_port(self, wildpc_root: Path, tmp_path: Path) -> None:
"""Service creation auto-assigns next available port."""
with (
patch("castle_cli.commands.create.load_config") as mock_load,
patch("castle_cli.commands.create.save_config"),
patch("wildpc_cli.commands.create.load_config") as mock_load,
patch("wildpc_cli.commands.create.save_config"),
):
config = load_config(castle_root)
config = load_config(wildpc_root)
config.repos_dir = tmp_path / "repos"
mock_load.return_value = config
from castle_cli.commands.create import run_create
from wildpc_cli.commands.create import run_create
args = Namespace(
name="auto-port-svc",