openmeld 0.3.74 → 0.3.76
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/dist/{add-me-membership-DS6wZdmz.js → add-me-membership-C_dCTz9h.js} +2 -2
- package/dist/{add-me-membership-DS6wZdmz.js.map → add-me-membership-C_dCTz9h.js.map} +1 -1
- package/dist/{api-client-foundation-SDttHQRB.js → api-client-foundation-CO_4tB8y.js} +3 -3
- package/dist/{api-client-foundation-SDttHQRB.js.map → api-client-foundation-CO_4tB8y.js.map} +1 -1
- package/dist/{auth-session-zqpRQEFv.js → auth-session-BZgsNHJA.js} +2 -2
- package/dist/{auth-session-zqpRQEFv.js.map → auth-session-BZgsNHJA.js.map} +1 -1
- package/dist/{command-B7sD5SNn.js → command-Bn3Sm1p8.js} +28 -13
- package/dist/{command-B7sD5SNn.js.map → command-Bn3Sm1p8.js.map} +1 -1
- package/dist/{dist-D3kcxGqs.js → dist-nJqZxjtc.js} +377 -159
- package/dist/dist-nJqZxjtc.js.map +1 -0
- package/dist/openmeld.js +42 -10
- package/dist/openmeld.js.map +1 -1
- package/dist/{runtime-transport-BxhzIxn4.js → runtime-transport-Bs6YfTqj.js} +2 -1
- package/dist/runtime-transport-Bs6YfTqj.js.map +1 -0
- package/package.json +2 -2
- package/skills/openmeld-cli/SKILL.md +15 -0
- package/dist/dist-D3kcxGqs.js.map +0 -1
- package/dist/runtime-transport-BxhzIxn4.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://www.schemastore.org/package.json",
|
|
3
3
|
"name": "openmeld",
|
|
4
|
-
"version": "0.3.
|
|
5
|
-
"openMeldReleaseDate": "2026-08-
|
|
4
|
+
"version": "0.3.76",
|
|
5
|
+
"openMeldReleaseDate": "2026-08-19",
|
|
6
6
|
"description": "OpenMeld CLI - https://openmeld.ai",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"type": "module",
|
|
@@ -449,6 +449,21 @@ openmeld agents repair --agent <agent-id> --view agent
|
|
|
449
449
|
openmeld agents show <agent-id> --view agent
|
|
450
450
|
```
|
|
451
451
|
|
|
452
|
+
Inspect every Computer connected to the current user's account, then read the
|
|
453
|
+
current Computer's owner-only diagnostics:
|
|
454
|
+
|
|
455
|
+
```bash
|
|
456
|
+
openmeld computer list --view agent
|
|
457
|
+
openmeld computer current --view agent
|
|
458
|
+
```
|
|
459
|
+
|
|
460
|
+
`computer list` returns the user's full Computer inventory and Local Agent
|
|
461
|
+
snapshots. `computer current` adds current reply diagnostics, OpenMeld Tools
|
|
462
|
+
versions and update state, and a File Access summary. The File Access summary
|
|
463
|
+
contains the mode and selected-folder count, never local folder paths. These
|
|
464
|
+
current-Computer diagnostics help explain whether a Local Agent is usable, but
|
|
465
|
+
they do not replace an Agent Profile's authoritative readiness result.
|
|
466
|
+
|
|
452
467
|
What setup means:
|
|
453
468
|
|
|
454
469
|
- It makes this computer available to run local agents.
|