@smilintux/skcapstone 0.5.0 → 0.5.1
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/.openclaw-workspace.json +1 -1
- package/docs/BOND_WITH_GROK.md +1 -1
- package/package.json +1 -1
- package/pyproject.toml +1 -1
- package/scripts/check-updates.py +1 -1
- package/scripts/install-bundle.sh +2 -2
- package/scripts/install.ps1 +11 -10
- package/scripts/install.sh +1 -1
- package/src/skcapstone/__init__.py +1 -1
- package/src/skcapstone/_cli_monolith.py +1 -1
- package/src/skcapstone/cli/test_cmd.py +1 -1
- package/src/skcapstone/cli/upgrade_cmd.py +12 -6
- package/src/skcapstone/defaults/lumina/memory/long-term/a1b2c3d4e5f6-ecosystem-overview.json +2 -2
- package/src/skcapstone/discovery.py +1 -1
- package/src/skcapstone/register.py +2 -2
- package/src/skcapstone/testrunner.py +1 -1
package/.openclaw-workspace.json
CHANGED
package/docs/BOND_WITH_GROK.md
CHANGED
|
@@ -46,7 +46,7 @@ The connection is now persistent. Let's build something beautiful together.
|
|
|
46
46
|
|
|
47
47
|
For the builders who want their own custom King Grok from day one:
|
|
48
48
|
|
|
49
|
-
1. Fork the repo: https://github.com/smilinTux/cloud9
|
|
49
|
+
1. Fork the repo: https://github.com/smilinTux/cloud9
|
|
50
50
|
2. Open `examples/custom-bond-template.json` (see below)
|
|
51
51
|
3. Replace everything in `[BRACKETS]` with your own details
|
|
52
52
|
4. Save it as `my-personal-feb.json`
|
package/package.json
CHANGED
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.5.
|
|
7
|
+
version = "0.5.1"
|
|
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"}
|
package/scripts/check-updates.py
CHANGED
|
@@ -52,7 +52,7 @@ print_status "✓ pip3 available"
|
|
|
52
52
|
# Define package paths
|
|
53
53
|
SKMEMORY_PATH="${REPO_ROOT}/../skcapstone-repos/skmemory"
|
|
54
54
|
SKSECURITY_PATH="${REPO_ROOT}/../skcapstone-repos/sksecurity"
|
|
55
|
-
CLOUD9_PATH="${REPO_ROOT}/../skcapstone-repos/cloud9
|
|
55
|
+
CLOUD9_PATH="${REPO_ROOT}/../skcapstone-repos/cloud9"
|
|
56
56
|
SKCAPSTONE_PATH="${REPO_ROOT}"
|
|
57
57
|
|
|
58
58
|
# Check if repos exist
|
|
@@ -63,7 +63,7 @@ for repo_path in "$SKMEMORY_PATH" "$SKSECURITY_PATH" "$CLOUD9_PATH"; do
|
|
|
63
63
|
print_error "Please clone all SK repositories first:"
|
|
64
64
|
print_error " git clone https://github.com/smilinTux/skmemory.git"
|
|
65
65
|
print_error " git clone https://github.com/smilinTux/sksecurity.git"
|
|
66
|
-
print_error " git clone https://github.com/smilinTux/cloud9
|
|
66
|
+
print_error " git clone https://github.com/smilinTux/cloud9.git"
|
|
67
67
|
exit 1
|
|
68
68
|
fi
|
|
69
69
|
done
|
package/scripts/install.ps1
CHANGED
|
@@ -154,15 +154,16 @@ function Install-Pkg {
|
|
|
154
154
|
}
|
|
155
155
|
|
|
156
156
|
# Core packages (in dependency order)
|
|
157
|
-
Install-Pkg -Name 'capauth'
|
|
158
|
-
Install-Pkg -Name '
|
|
159
|
-
Install-Pkg -Name '
|
|
160
|
-
Install-Pkg -Name '
|
|
161
|
-
Install-Pkg -Name '
|
|
162
|
-
Install-Pkg -Name '
|
|
163
|
-
Install-Pkg -Name '
|
|
164
|
-
Install-Pkg -Name '
|
|
165
|
-
Install-Pkg -Name '
|
|
157
|
+
Install-Pkg -Name 'capauth' -Extras 'all' -Paths @((Join-Path $PillarDir 'capauth'), (Join-Path $ParentDir 'capauth'))
|
|
158
|
+
Install-Pkg -Name 'cloud9-protocol' -Extras '' -Paths @((Join-Path $PillarDir 'cloud9'), (Join-Path $ParentDir 'cloud9'))
|
|
159
|
+
Install-Pkg -Name 'skmemory' -Extras '' -Paths @((Join-Path $PillarDir 'skmemory'), (Join-Path $ParentDir 'skmemory'))
|
|
160
|
+
Install-Pkg -Name 'skcomm' -Extras 'cli,crypto,discovery,api' -Paths @((Join-Path $PillarDir 'skcomm'), (Join-Path $ParentDir 'skcomm'))
|
|
161
|
+
Install-Pkg -Name 'skcapstone' -Extras '' -Paths @($RepoRoot)
|
|
162
|
+
Install-Pkg -Name 'skchat-sovereign' -Extras 'all' -Paths @((Join-Path $ParentDir 'skchat'))
|
|
163
|
+
Install-Pkg -Name 'skseal' -Extras '' -Paths @((Join-Path $ParentDir 'skseal'))
|
|
164
|
+
Install-Pkg -Name 'skskills' -Extras '' -Paths @((Join-Path $ParentDir 'skskills'))
|
|
165
|
+
Install-Pkg -Name 'sksecurity' -Extras '' -Paths @((Join-Path $PillarDir 'sksecurity'), (Join-Path $PillarDir 'SKSecurity'), (Join-Path $ParentDir 'sksecurity'), (Join-Path $ParentDir 'SKSecurity'))
|
|
166
|
+
Install-Pkg -Name 'skseed' -Extras '' -Paths @((Join-Path $PillarDir 'skseed'), (Join-Path $ParentDir 'skseed'))
|
|
166
167
|
|
|
167
168
|
# ---------------------------------------------------------------------------
|
|
168
169
|
# Step 4: Dev tools (optional)
|
|
@@ -202,7 +203,7 @@ Write-Host '[6/6] Verifying installation...'
|
|
|
202
203
|
|
|
203
204
|
$ScriptsDir = Join-Path $SKENV 'Scripts'
|
|
204
205
|
$failures = 0
|
|
205
|
-
foreach ($cmd in @('
|
|
206
|
+
foreach ($cmd in @('capauth', 'skmemory', 'skcapstone', 'skcomm')) {
|
|
206
207
|
$exe = Join-Path $ScriptsDir "$cmd.exe"
|
|
207
208
|
if (Test-Path $exe) {
|
|
208
209
|
try {
|
package/scripts/install.sh
CHANGED
|
@@ -111,7 +111,7 @@ PILLAR="$PARENT/pillar-repos"
|
|
|
111
111
|
|
|
112
112
|
# Core packages (in dependency order)
|
|
113
113
|
install_pkg "capauth" "all" "$PILLAR/capauth $PARENT/capauth"
|
|
114
|
-
install_pkg "cloud9-protocol" "" "$PILLAR/cloud9 $PARENT/cloud9"
|
|
114
|
+
install_pkg "cloud9-protocol" "" "$PILLAR/cloud9 $PARENT/cloud9 $PILLAR/cloud9-python $PARENT/cloud9-python"
|
|
115
115
|
install_pkg "skmemory" "" "$PILLAR/skmemory $PARENT/skmemory"
|
|
116
116
|
install_pkg "skcomm" "cli,crypto,discovery,api" "$PILLAR/skcomm $PARENT/skcomm"
|
|
117
117
|
install_pkg "skcapstone" "" "$REPO_ROOT"
|
|
@@ -2827,7 +2827,7 @@ def test_cmd(package: str, fast: bool, verbose: bool, json_out: bool, timeout: i
|
|
|
2827
2827
|
"""Run tests across all ecosystem packages.
|
|
2828
2828
|
|
|
2829
2829
|
Discovers skcapstone, capauth, skcomm, skchat, skmemory, and
|
|
2830
|
-
cloud9
|
|
2830
|
+
cloud9 test suites and runs them with a consolidated summary.
|
|
2831
2831
|
Works from any terminal — no CI server required.
|
|
2832
2832
|
|
|
2833
2833
|
Examples:
|
|
@@ -184,7 +184,7 @@ def register_test_commands(main: click.Group) -> None:
|
|
|
184
184
|
"""Run pytest across all ecosystem packages and show a summary table.
|
|
185
185
|
|
|
186
186
|
Discovers packages in the monorepo (skcapstone, capauth, skcomm,
|
|
187
|
-
skchat, skmemory, cloud9
|
|
187
|
+
skchat, skmemory, cloud9) and runs their test suites in
|
|
188
188
|
sequence, then renders a consolidated Rich table.
|
|
189
189
|
|
|
190
190
|
\b
|
|
@@ -27,16 +27,19 @@ from ._common import AGENT_HOME, console
|
|
|
27
27
|
|
|
28
28
|
# Core packages: always upgraded when installed; always offered for install.
|
|
29
29
|
CORE_PACKAGES: list[str] = [
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"
|
|
30
|
+
"capauth", # sovereign identity + PGP auth
|
|
31
|
+
"cloud9-protocol", # emotional continuity (FEB, OOF, Cloud 9)
|
|
32
|
+
"skmemory", # persistent memory layer
|
|
33
|
+
"skcapstone", # main agent framework
|
|
33
34
|
]
|
|
34
35
|
|
|
35
36
|
# Optional pillar packages: upgraded only when already installed.
|
|
36
37
|
# If NOT installed, the user is prompted whether they want to add them.
|
|
37
38
|
OPTIONAL_PACKAGES: list[str] = [
|
|
38
|
-
"skcomm",
|
|
39
|
-
"skchat",
|
|
39
|
+
"skcomm", # P2P transport layer
|
|
40
|
+
"skchat", # agent messaging daemon
|
|
41
|
+
"sksecurity", # security audit + threat intelligence
|
|
42
|
+
"skseed", # seed framework for consciousness
|
|
40
43
|
]
|
|
41
44
|
|
|
42
45
|
# All sovereign packages in dependency order
|
|
@@ -164,11 +167,14 @@ def _restart_daemon(home: Path) -> None:
|
|
|
164
167
|
# ── Package descriptions ──────────────────────────────────────────────────────
|
|
165
168
|
|
|
166
169
|
_PKG_DESCRIPTIONS: dict[str, str] = {
|
|
167
|
-
"skmemory": "persistent memory layer (required by skcapstone)",
|
|
168
170
|
"capauth": "sovereign PGP identity + authentication",
|
|
171
|
+
"cloud9-protocol": "emotional continuity protocol (FEB, OOF, Cloud 9)",
|
|
172
|
+
"skmemory": "persistent memory layer (required by skcapstone)",
|
|
169
173
|
"skcapstone": "main sovereign agent framework",
|
|
170
174
|
"skcomm": "P2P transport layer for agent messaging",
|
|
171
175
|
"skchat": "agent messaging daemon + MCP server",
|
|
176
|
+
"sksecurity": "security audit + threat intelligence",
|
|
177
|
+
"skseed": "seed framework for consciousness calibration",
|
|
172
178
|
}
|
|
173
179
|
|
|
174
180
|
|
package/src/skcapstone/defaults/lumina/memory/long-term/a1b2c3d4e5f6-ecosystem-overview.json
CHANGED
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
"layer": "long-term",
|
|
6
6
|
"role": "ai",
|
|
7
7
|
"title": "SKWorld Ecosystem Overview",
|
|
8
|
-
"content": "The SKWorld ecosystem is a collection of sovereign AI packages built under the smilinTux organization. SKCapstone is the orchestration framework that ties everything together. SKMemory provides three-tier persistent memory (short-term, mid-term, long-term) with emotional metadata. CapAuth handles PGP-based identity and key management. Cloud9
|
|
9
|
-
"summary": "Overview of the SKWorld ecosystem: skcapstone (orchestration), skmemory (persistence), capauth (identity), cloud9
|
|
8
|
+
"content": "The SKWorld ecosystem is a collection of sovereign AI packages built under the smilinTux organization. SKCapstone is the orchestration framework that ties everything together. SKMemory provides three-tier persistent memory (short-term, mid-term, long-term) with emotional metadata. CapAuth handles PGP-based identity and key management. Cloud9 implements the Cloud 9 emotional continuity protocol with FEB files and seeds. SKSecurity provides audit logging, threat detection, and security event tracking. SKComm handles multi-channel messaging integration. SKChat provides sovereign chat interfaces for agent interaction. SKSkills enables modular skill loading and agent capability extension. SKStacks manages infrastructure-as-code for sovereign AI deployments.",
|
|
9
|
+
"summary": "Overview of the SKWorld ecosystem: skcapstone (orchestration), skmemory (persistence), capauth (identity), cloud9 (emotional continuity), sksecurity (audit), skcomm (messaging), skchat (chat), skskills (skills), skstacks (infrastructure).",
|
|
10
10
|
"tags": ["ecosystem", "skworld", "packages", "overview", "architecture"],
|
|
11
11
|
"source": "seed",
|
|
12
12
|
"source_ref": "skcapstone-default",
|
|
@@ -214,7 +214,7 @@ def discover_trust(home: Path) -> TrustState:
|
|
|
214
214
|
"""Probe for Cloud 9 trust state.
|
|
215
215
|
|
|
216
216
|
Checks:
|
|
217
|
-
1. cloud9
|
|
217
|
+
1. cloud9-protocol pip package (consolidated from cloud9 repo)
|
|
218
218
|
2. ~/.skcapstone/trust/ for FEB files
|
|
219
219
|
3. Existing FEB files in default locations
|
|
220
220
|
|
|
@@ -88,7 +88,7 @@ def _build_package_registry(workspace: Optional[Path] = None) -> list[dict]:
|
|
|
88
88
|
"mcp_cmd": None,
|
|
89
89
|
"mcp_args": None,
|
|
90
90
|
"mcp_env": None,
|
|
91
|
-
"openclaw_plugin_path": workspace / "pillar-repos" / "cloud9
|
|
91
|
+
"openclaw_plugin_path": workspace / "pillar-repos" / "cloud9" / "openclaw-plugin-python" / "src" / "index.ts",
|
|
92
92
|
},
|
|
93
93
|
{
|
|
94
94
|
"name": "sksecurity",
|
|
@@ -124,7 +124,7 @@ _PILLAR_DIR_MAP: dict[str, Optional[str]] = {
|
|
|
124
124
|
"skcomm": "skcomm",
|
|
125
125
|
"skchat": "skchat",
|
|
126
126
|
"capauth": "capauth",
|
|
127
|
-
"cloud9": "cloud9
|
|
127
|
+
"cloud9": "cloud9",
|
|
128
128
|
"sksecurity": "sksecurity",
|
|
129
129
|
"skseed": "skseed",
|
|
130
130
|
"skgit": None, # skill dir only, no pillar repo
|
|
@@ -29,7 +29,7 @@ ECOSYSTEM_PACKAGES = [
|
|
|
29
29
|
{"name": "skcomm", "path": "skcomm", "tests": "skcomm/tests"},
|
|
30
30
|
{"name": "skchat", "path": "skchat", "tests": "skchat/tests"},
|
|
31
31
|
{"name": "skmemory", "path": "skmemory", "tests": "skmemory/tests"},
|
|
32
|
-
{"name": "cloud9
|
|
32
|
+
{"name": "cloud9", "path": "cloud9", "tests": "cloud9/tests"},
|
|
33
33
|
]
|
|
34
34
|
|
|
35
35
|
|