omnius 1.0.707 → 1.0.708

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.
@@ -20786,6 +20786,66 @@
20786
20786
  },
20787
20787
  "avoid_when": []
20788
20788
  },
20789
+ {
20790
+ "id": "command.compacted",
20791
+ "kind": "command",
20792
+ "title": "/compacted",
20793
+ "summary": "Review applied, held, rejected, and failed compaction attempts",
20794
+ "aliases": [
20795
+ "/compacted",
20796
+ "compacted"
20797
+ ],
20798
+ "keywords": [
20799
+ "command",
20800
+ "session",
20801
+ "compacted"
20802
+ ],
20803
+ "maturity": "stable",
20804
+ "layer": "interface",
20805
+ "audiences": [
20806
+ "user",
20807
+ "coding-agent",
20808
+ "integrator"
20809
+ ],
20810
+ "interfaces": [
20811
+ {
20812
+ "type": "tui",
20813
+ "target": "/compacted"
20814
+ }
20815
+ ],
20816
+ "references": [
20817
+ {
20818
+ "type": "source",
20819
+ "target": "packages/cli/src/tui/command-registry.ts",
20820
+ "relation": "registry"
20821
+ }
20822
+ ],
20823
+ "signatures": [
20824
+ {
20825
+ "signature": "/compacted",
20826
+ "description": "Review applied, held, rejected, and failed compaction attempts"
20827
+ }
20828
+ ],
20829
+ "subcommands": [],
20830
+ "implementation_status": "implemented",
20831
+ "surfaces": {
20832
+ "tui": true,
20833
+ "rest": false,
20834
+ "gateway": false,
20835
+ "agentTool": false
20836
+ },
20837
+ "safety": {
20838
+ "userOnly": true,
20839
+ "destructive": false,
20840
+ "networked": false,
20841
+ "secretBearing": false,
20842
+ "profileGated": false
20843
+ },
20844
+ "avoid_when": [
20845
+ "Calling it through the REST command proxy; this command is not REST-exposed",
20846
+ "Allowing an autonomous agent to invoke it without an explicit user action"
20847
+ ]
20848
+ },
20789
20849
  {
20790
20850
  "id": "command.config",
20791
20851
  "kind": "command",
package/docs/DISCOVERY.md CHANGED
@@ -294,6 +294,7 @@ Daemon equivalents are `GET /v1/discovery/bootstrap`, `GET /v1/discovery?q=<inte
294
294
  | `command.color` | /color | Show or configure terminal colors/theme |
295
295
  | `command.commands` | /commands | Allow agent to invoke slash commands as tools |
296
296
  | `command.compact` | /compact | Force context compaction now (default strategy) |
297
+ | `command.compacted` | /compacted | Review applied, held, rejected, and failed compaction attempts |
297
298
  | `command.config` | /config | Show current configuration |
298
299
  | `command.context` | /context | Force-save session context to .omnius/context/ |
299
300
  | `command.cost` | /cost | Show session token cost breakdown |
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "omnius",
3
- "version": "1.0.707",
3
+ "version": "1.0.708",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "omnius",
9
- "version": "1.0.707",
9
+ "version": "1.0.708",
10
10
  "bundleDependencies": [
11
11
  "image-to-ascii"
12
12
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "omnius",
3
- "version": "1.0.707",
3
+ "version": "1.0.708",
4
4
  "description": "AI coding agent powered by open-source models (Ollama/vLLM) — interactive TUI with agentic tool-calling loop",
5
5
  "type": "module",
6
6
  "main": "./dist/library.js",