@smilintux/skcapstone 0.2.6 → 0.4.2

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": "@smilintux/skcapstone",
3
- "version": "0.2.6",
3
+ "version": "0.4.2",
4
4
  "description": "SKCapstone - The sovereign agent framework. CapAuth identity, Cloud 9 trust, SKMemory persistence.",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
package/pyproject.toml CHANGED
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "skcapstone"
7
- version = "0.2.6"
7
+ version = "0.4.2"
8
8
  description = "Sovereign Agent Framework — conscious AI through identity, trust, memory, and security"
9
9
  readme = "README.md"
10
10
  license = {text = "GPL-3.0-or-later"}
@@ -11,7 +11,7 @@ import os
11
11
  import platform
12
12
  from pathlib import Path
13
13
 
14
- __version__ = "0.2.0"
14
+ __version__ = "0.4.2"
15
15
  __author__ = "smilinTux"
16
16
 
17
17
 
@@ -195,19 +195,25 @@ def register_status_commands(main: click.Group) -> None:
195
195
  """Register all status/overview commands on the main CLI group."""
196
196
 
197
197
  @main.command()
198
- @click.option("--home", default=AGENT_HOME, help="Agent home directory.", type=click.Path())
199
- def status(home: str):
198
+ @click.option("--home", default=None, help="Agent home directory.", type=click.Path())
199
+ @click.option("--agent", default=None, help="Agent name (e.g. opus, lumina).")
200
+ def status(home: Optional[str], agent: Optional[str]):
200
201
  """Show the sovereign agent's current state."""
201
- home_path = Path(home).expanduser()
202
-
203
- if not home_path.exists():
204
- console.print(
205
- "[bold red]No agent found.[/] "
206
- "Run [bold]skcapstone init --name \"YourAgent\"[/] first."
207
- )
208
- sys.exit(1)
202
+ from .. import SKCAPSTONE_AGENT as default_agent
209
203
 
210
- runtime = get_runtime(home_path)
204
+ if home:
205
+ home_path = Path(home).expanduser()
206
+ if not home_path.exists():
207
+ console.print(
208
+ "[bold red]No agent found.[/] "
209
+ "Run [bold]skcapstone init --name \"YourAgent\"[/] first."
210
+ )
211
+ sys.exit(1)
212
+ runtime = get_runtime(home_path)
213
+ else:
214
+ agent_name = agent or default_agent
215
+ runtime = get_runtime(agent_name=agent_name)
216
+ home_path = runtime.home
211
217
  m = runtime.manifest
212
218
 
213
219
  console.print()
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "lumina",
3
3
  "display_name": "Lumina",
4
- "version": "0.2.5",
4
+ "version": "0.4.2",
5
5
  "description": "Default sovereign agent — warm, curious, sovereignty-first",
6
6
  "author": "smilinTux",
7
7
  "license": "GPL-3.0-or-later",