arkaos 4.9.0 → 4.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/VERSION +1 -1
- package/bin/arka +5 -1
- package/bin/arkaos +2 -2
- package/core/evals/__pycache__/__init__.cpython-313.pyc +0 -0
- package/core/evals/__pycache__/schema.cpython-313.pyc +0 -0
- package/core/evals/__pycache__/verdict_labels.cpython-313.pyc +0 -0
- package/core/registry/__pycache__/__init__.cpython-312.pyc +0 -0
- package/core/registry/__pycache__/generator.cpython-312.pyc +0 -0
- package/core/registry/__pycache__/generator.cpython-313.pyc +0 -0
- package/core/registry/generator.py +138 -110
- package/core/runtime/__pycache__/llm_cost_telemetry.cpython-314.pyc +0 -0
- package/departments/dev/skills/scaffold/SKILL.md +3 -3
- package/knowledge/commands-registry.json +4194 -2627
- package/knowledge/commands-registry.json.bak +4194 -2627
- package/package.json +1 -1
- package/pyproject.toml +1 -1
- package/scripts/__pycache__/dashboard-api.cpython-313.pyc +0 -0
- package/scripts/__pycache__/synapse-bridge.cpython-313.pyc +0 -0
- package/scripts/__pycache__/synapse-bridge.cpython-314.pyc +0 -0
- package/scripts/dashboard-api.py +2 -2
- package/scripts/synapse-bridge.py +1 -1
- package/scripts/tools/__pycache__/prompt_surface_benchmark.cpython-313.pyc +0 -0
- package/knowledge/commands-registry-v2.json +0 -3777
package/package.json
CHANGED
package/pyproject.toml
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/scripts/dashboard-api.py
CHANGED
|
@@ -95,7 +95,7 @@ def _load_agents() -> list[dict]:
|
|
|
95
95
|
def _load_commands() -> list[dict]:
|
|
96
96
|
global _commands_cache
|
|
97
97
|
if _commands_cache is None:
|
|
98
|
-
path = ARKAOS_ROOT / "knowledge" / "commands-registry
|
|
98
|
+
path = ARKAOS_ROOT / "knowledge" / "commands-registry.json"
|
|
99
99
|
if path.exists():
|
|
100
100
|
data = json.loads(path.read_text())
|
|
101
101
|
_commands_cache = data.get("commands", [])
|
|
@@ -1730,7 +1730,7 @@ def health():
|
|
|
1730
1730
|
check("agents_registry",
|
|
1731
1731
|
(ARKAOS_ROOT / "knowledge" / "agents-registry-v2.json").exists())
|
|
1732
1732
|
check("commands_registry",
|
|
1733
|
-
(ARKAOS_ROOT / "knowledge" / "commands-registry
|
|
1733
|
+
(ARKAOS_ROOT / "knowledge" / "commands-registry.json").exists())
|
|
1734
1734
|
check("hooks_dir", (arkaos_home / "config" / "hooks").exists(),
|
|
1735
1735
|
"npx arkaos install")
|
|
1736
1736
|
|
|
@@ -112,7 +112,7 @@ def load_agents_registry(root: Path) -> dict:
|
|
|
112
112
|
|
|
113
113
|
def load_commands_registry(root: Path) -> list:
|
|
114
114
|
"""Load commands registry JSON."""
|
|
115
|
-
path = root / "knowledge" / "commands-registry
|
|
115
|
+
path = root / "knowledge" / "commands-registry.json"
|
|
116
116
|
if not path.exists():
|
|
117
117
|
return []
|
|
118
118
|
try:
|
|
Binary file
|