Fill high-value skill registry gaps

This commit is contained in:
732642856
2026-06-27 12:27:13 +08:00
parent 63c9195c96
commit 4edbc43bf9
3 changed files with 181 additions and 1 deletions
@@ -0,0 +1,34 @@
from __future__ import annotations
import json
from pathlib import Path
ROOT = Path(__file__).resolve().parents[1]
REGISTRY = ROOT / "references" / "technique_registry.json"
def test_registry_includes_high_value_traditional_techniques() -> None:
techniques = json.loads(REGISTRY.read_text(encoding="utf-8"))["techniques"]
required = {
"tara_bala": "covered",
"vimsopaka_bala": "covered",
"deha_jeeva": "covered",
"shodasavarga": "covered",
"moolatrikona": "covered",
}
for key, status in required.items():
assert key in techniques, key
assert techniques[key]["status"] == status
assert techniques[key]["knowledge_refs"]
assert techniques[key]["commands"]
assert techniques[key]["output_paths"]
def test_registry_keeps_neechabhanga_alias_aligned() -> None:
techniques = json.loads(REGISTRY.read_text(encoding="utf-8"))["techniques"]
assert "nicha_bhanga_raj" in techniques
assert "neechabhanga" in techniques
assert techniques["neechabhanga"]["status"] == techniques["nicha_bhanga_raj"]["status"]