@wipcomputer/wip-ldm-os 0.4.4 → 0.4.5

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.
Files changed (3) hide show
  1. package/SKILL.md +1 -1
  2. package/bin/ldm.js +13 -3
  3. package/package.json +1 -1
package/SKILL.md CHANGED
@@ -5,7 +5,7 @@ license: MIT
5
5
  interface: [cli, skill]
6
6
  metadata:
7
7
  display-name: "LDM OS"
8
- version: "0.4.4"
8
+ version: "0.4.5"
9
9
  homepage: "https://github.com/wipcomputer/wip-ldm-os"
10
10
  author: "Parker Todd Brooks"
11
11
  category: infrastructure
package/bin/ldm.js CHANGED
@@ -1279,11 +1279,21 @@ function cmdStackList() {
1279
1279
 
1280
1280
  for (const [id, stack] of Object.entries(stacks)) {
1281
1281
  const resolved = resolveStack(id);
1282
- const compCount = resolved.components.length;
1283
- const mcpCount = resolved.mcpServers.length;
1284
1282
  console.log(` ${id}: ${stack.name}`);
1285
1283
  console.log(` ${stack.description}`);
1286
- console.log(` ${compCount} component(s), ${mcpCount} MCP server(s)`);
1284
+ if (resolved.components.length > 0) {
1285
+ console.log(` Components:`);
1286
+ for (const compId of resolved.components) {
1287
+ const entry = findInCatalog(compId);
1288
+ console.log(` - ${entry?.name || compId}`);
1289
+ }
1290
+ }
1291
+ if (resolved.mcpServers.length > 0) {
1292
+ console.log(` MCP Servers:`);
1293
+ for (const mcp of resolved.mcpServers) {
1294
+ console.log(` - ${mcp.name}`);
1295
+ }
1296
+ }
1287
1297
  console.log('');
1288
1298
  }
1289
1299
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wipcomputer/wip-ldm-os",
3
- "version": "0.4.4",
3
+ "version": "0.4.5",
4
4
  "type": "module",
5
5
  "description": "LDM OS: identity, memory, and sovereignty infrastructure for AI agents",
6
6
  "main": "src/boot/boot-hook.mjs",