arkaos 2.46.1 → 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 +15 -2
- package/VERSION +1 -1
- package/core/release/__pycache__/preflight.cpython-313.pyc +0 -0
- package/package.json +1 -1
- package/pyproject.toml +1 -1
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,
|
|
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.
|
|
1
|
+
2.46.3
|
|
Binary file
|
package/package.json
CHANGED