Twelve scripts retired, three domains registered. `reach` now covers nine. generate: `generate-brands` and `generate-corporations` were the second and third copies of the same 24-line build-if-missing-then-exec bash `tooling/atlas` carried, so they collapsed into `core.process.cargo_binary` rather than being ported. `import_economics` shelled out to the first of those, so it now calls that helper — `generated_brands.toml` comes back byte-identical, and the stamp registry swaps the retired wrapper for `core/process.py`. pr: `watchlist-diff` derives its watched set from `generator_sources.py` instead of restating it, so it cannot drift from the stamp check. dev: the environment scripts split decision from performing, per D-263's guarded-exec rule. `godot_plan()` and `worktree_plan()` decide what would happen; `install_godot()`, `install_rust()` and `setup_worktree()` do it. `tooling/test_environment.py` pins the version pin, both override precedences, the already-current skip, the platform refusal and both worktree refusals — none of them performed. `make setup` now installs reach first, since the targets that install rust and godot are reach verbs. Two live bugs found while porting: - The clerk read its decision index from `decisions/README.md`, a path that stopped existing when the DQR tree moved to `governance/`. Every clerk agent has been grepping blind; its prompt pointed at the same dead directory. - The conformance exec-check matched any `x.system()` regardless of receiver, so `platform.system()` read as `os.system()`. Narrowed and re-proved against a real mutant. `process.run` gains `input=`, `timeout=` and a `ProcessTimeout` subclass so a killed run stays distinguishable from a verdict. The pre-push hook no longer merges the clerk's stderr into its stdout — under streaming the last merged line is a JSONL event, which would read as an unrecognised verdict and block. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
62 lines
2.2 KiB
Python
62 lines
2.2 KiB
Python
"""Source-file path constants for the economy_import modules.
|
|
|
|
Single façade: modules import their input paths from here. Paths that are
|
|
also part of the import_economics meta-stamp source set are defined once in
|
|
tooling/generator_sources.py and re-exported, so the stamp registry and the
|
|
importer can never disagree about where a stamped source lives.
|
|
"""
|
|
|
|
from pathlib import Path
|
|
|
|
from generator_sources import (
|
|
ARCHITECTURE_TRAIT_BIAS_TOML,
|
|
ARCHITECTURE_TRAIT_CATALOG_TOML,
|
|
ARCHITECTURE_ZONE_BIAS_TOML,
|
|
COLOR_REGISTER_BANDS_TOML,
|
|
CORP_HQ_PLACEMENT_TOML,
|
|
CORPORATIONS_DIR,
|
|
OBJECT_TAG_VOCABULARY_TOML,
|
|
REPO_ROOT,
|
|
SETTLEMENT_NAME_LOCKED_TOML,
|
|
SPECIALIZATION_VOCAB_TOML,
|
|
SYSTEM_SPECIALIZATION_TOML,
|
|
)
|
|
|
|
__all__ = [
|
|
"ARCHITECTURE_TRAIT_BIAS_TOML",
|
|
"ARCHITECTURE_TRAIT_CATALOG_TOML",
|
|
"ARCHITECTURE_ZONE_BIAS_TOML",
|
|
"BRANDS_TOML",
|
|
"CHAINS_TOML",
|
|
"COLOR_REGISTER_BANDS_TOML",
|
|
"COMMODITIES_TOML",
|
|
"CORPORATIONS_DIR",
|
|
"CORP_HQ_PLACEMENT_TOML",
|
|
"CURRENCY_ZONES_TOML",
|
|
"DB_PATH",
|
|
"GENERATED_BRANDS_TOML",
|
|
"OBJECT_TAG_VOCABULARY_TOML",
|
|
"REPO_ROOT",
|
|
"SCHEMA_SQL",
|
|
"SETTLEMENT_NAME_LOCKED_TOML",
|
|
"SPECIALIZATION_VOCAB_TOML",
|
|
"STAR_MAP",
|
|
"SYSTEM_SPECIALIZATION_TOML",
|
|
"WIKI_STAR_SYSTEMS",
|
|
]
|
|
|
|
DB_PATH: Path = REPO_ROOT / "server" / "data" / "systems.db"
|
|
STAR_MAP: Path = REPO_ROOT / "docs" / "design" / "star-map.json"
|
|
COMMODITIES_TOML: Path = REPO_ROOT / "wiki" / "economics" / "commodities.toml"
|
|
CHAINS_TOML: Path = REPO_ROOT / "wiki" / "economics" / "production_chains.toml"
|
|
CURRENCY_ZONES_TOML: Path = REPO_ROOT / "wiki" / "economics" / "currency_zones.toml"
|
|
SCHEMA_SQL: Path = REPO_ROOT / "server" / "data" / "systems-schema.sql"
|
|
# CORPORATIONS_DIR moved to generator_sources.py (T1, PR #177): the corp pages
|
|
# are now part of the stamped source set, and stamped paths are defined once
|
|
# in the registry — re-exported via the import block above.
|
|
WIKI_STAR_SYSTEMS: Path = REPO_ROOT / "wiki" / "star-systems"
|
|
BRANDS_TOML: Path = REPO_ROOT / "wiki" / "economics" / "corporations" / "brands.toml"
|
|
GENERATED_BRANDS_TOML: Path = (
|
|
REPO_ROOT / "wiki" / "economics" / "corporations" / "generated_brands.toml"
|
|
)
|