arkaos 2.46.2 → 2.46.3

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/README.md CHANGED
@@ -464,8 +464,10 @@ npx arkaos uninstall # Remove ArkaOS
464
464
 
465
465
  ```
466
466
  /arka update # Sync all project configs after core update
467
- /arka status # System health + LLM costs (24h)
467
+ /arka status # System health + LLM costs + Enforcement + Reorganization (24h)
468
468
  /arka costs [today|week|month|all|sessions] # LLM cost visibility
469
+ /arka enforcement [today|week|month|all] # Flow-marker compliance (v2.41.0)
470
+ /arka reorganize [--since-days N] # KB → agent proposal markdown (v2.42.0)
469
471
  /arka index # (Re)index Obsidian vault into vector store
470
472
  /arka search <query> # Semantic search in knowledge base
471
473
  /arka standup # Daily standup (projects, blockers, updates)
@@ -474,13 +476,24 @@ npx arkaos uninstall # Remove ArkaOS
474
476
  /do <description> # Universal routing — natural language to department
475
477
  ```
476
478
 
479
+ **Release pipeline (operator-side, headless):**
480
+
481
+ ```
482
+ python -m core.release.preflight_cli --expected-npm-user <user>
483
+ # Step 0 NON-NEGOTIABLE before any tag/push/publish (v2.43.0+).
484
+ # Six checks: version-alignment / npm-auth / npm-publish-capability /
485
+ # gh-auth / git-remote / git-clean. Plus no-client-name-leaks
486
+ # (v2.44.0+, BLOCKING since v2.45.0).
487
+ # Exit 1 = STOP, fix every remediation, re-run.
488
+ ```
489
+
477
490
  Department commands: `/dev`, `/mkt`, `/brand`, `/fin`, `/strat`, `/ecom`, `/kb`, `/ops`, `/pm`, `/saas`, `/landing`, `/content`, `/community`, `/sales`, `/lead`, `/org`.
478
491
 
479
492
  ---
480
493
 
481
494
  ## Contributing
482
495
 
483
- See [CONTRIBUTING.md](.github/CONTRIBUTING.md). PRs welcome — all changes require passing the full test suite (3,025 tests) and Quality Gate review.
496
+ See [CONTRIBUTING.md](.github/CONTRIBUTING.md). PRs welcome — all changes require passing the full test suite (3,473+ tests as of v2.46.x) and Quality Gate review (Marta CQO + Eduardo Copy + Francisca Tech, all Opus).
484
497
 
485
498
  ## License
486
499
 
package/VERSION CHANGED
@@ -1 +1 @@
1
- 2.46.2
1
+ 2.46.3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arkaos",
3
- "version": "2.46.2",
3
+ "version": "2.46.3",
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 = "2.46.2"
3
+ version = "2.46.3"
4
4
  description = "Core engine for ArkaOS — The Operating System for AI Agent Teams"
5
5
  readme = "README.md"
6
6
  license = {text = "MIT"}