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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arkaos",
3
- "version": "4.9.0",
3
+ "version": "4.10.0",
4
4
  "description": "The Operating System for AI Agent Teams",
5
5
  "type": "module",
6
6
  "bin": {
package/pyproject.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "arkaos-core"
3
- version = "4.9.0"
3
+ version = "4.10.0"
4
4
  description = "Core engine for ArkaOS — The Operating System for AI Agent Teams"
5
5
  readme = "README.md"
6
6
  license = {text = "MIT"}
@@ -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-v2.json"
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-v2.json").exists())
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-v2.json"
115
+ path = root / "knowledge" / "commands-registry.json"
116
116
  if not path.exists():
117
117
  return []
118
118
  try: