openmeld 0.3.75 → 0.3.77
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-QtGOjLOa.js → add-me-membership-DKxk_mJH.js} +2 -2
- package/dist/{add-me-membership-QtGOjLOa.js.map → add-me-membership-DKxk_mJH.js.map} +1 -1
- package/dist/{api-client-foundation-SDttHQRB.js → api-client-foundation-eEhPX63-.js} +3 -3
- package/dist/{api-client-foundation-SDttHQRB.js.map → api-client-foundation-eEhPX63-.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-DJ77yEgh.js → command-DCsqEvt_.js} +10 -10
- package/dist/{command-DJ77yEgh.js.map → command-DCsqEvt_.js.map} +1 -1
- package/dist/{dist-D3kcxGqs.js → dist-k89N2rz0.js} +383 -162
- package/dist/dist-k89N2rz0.js.map +1 -0
- package/dist/openmeld.js +43 -11
- 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 +46 -0
- package/skills/openmeld-cli/references/commands.md +11 -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.77",
|
|
5
|
+
"openMeldReleaseDate": "2026-08-20",
|
|
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.
|
|
@@ -598,6 +613,37 @@ openmeld org directory --view agent
|
|
|
598
613
|
openmeld org directory --json
|
|
599
614
|
```
|
|
600
615
|
|
|
616
|
+
Use the directory before answering questions such as:
|
|
617
|
+
|
|
618
|
+
- who belongs to the Organization and whether they are an owner, admin, or
|
|
619
|
+
member
|
|
620
|
+
- which Human Profile represents a person
|
|
621
|
+
- which Agent Profiles a member owns and whether one is currently ready for
|
|
622
|
+
work
|
|
623
|
+
- when OpenMeld last accepted real Human activity from a member
|
|
624
|
+
|
|
625
|
+
The response contains active members, Organization roles, user identity,
|
|
626
|
+
Human Profiles, Agent Profiles, and an optional `lastActiveAt`. Agent Profiles
|
|
627
|
+
are returned as Organization-level records; match an Agent Profile's
|
|
628
|
+
`ownerUserId` to the member's `userId` instead of guessing from names.
|
|
629
|
+
|
|
630
|
+
Treat a missing `lastActiveAt` literally: OpenMeld has no authoritative Human
|
|
631
|
+
activity timestamp for that member. Never substitute a Computer heartbeat,
|
|
632
|
+
login/session refresh, or Agent Activity timestamp.
|
|
633
|
+
|
|
634
|
+
The directory is intentionally not a dump of every People drawer field. It
|
|
635
|
+
does not expose Connected Channel management, private Computer paths or file
|
|
636
|
+
access, Profile Report drafts or bodies, credentials, or private local-agent
|
|
637
|
+
state. Use the Center Agent when approved Organization documents, Profile
|
|
638
|
+
Report context, or another Organization-owned capability is needed. Use
|
|
639
|
+
team-safe Computer reads only after resolving the exact member from the
|
|
640
|
+
directory.
|
|
641
|
+
|
|
642
|
+
For example, to find an admin who owns a ready Agent Profile, read the
|
|
643
|
+
directory, filter members by `role`, then join Agent Profiles by `ownerUserId`
|
|
644
|
+
and inspect their returned readiness. Do not infer role, ownership, or
|
|
645
|
+
readiness from display names.
|
|
646
|
+
|
|
601
647
|
Read or manage the Organization invite link:
|
|
602
648
|
|
|
603
649
|
```bash
|
|
@@ -139,6 +139,17 @@ openmeld org directory --view agent
|
|
|
139
139
|
openmeld org directory --json
|
|
140
140
|
```
|
|
141
141
|
|
|
142
|
+
The directory returns active members, roles, user identity, Human Profiles,
|
|
143
|
+
Organization-level Agent Profiles, and optional authoritative Human
|
|
144
|
+
`lastActiveAt` timestamps. Match Agent Profiles to members with `ownerUserId`.
|
|
145
|
+
A missing `lastActiveAt` means that OpenMeld has no authoritative Human
|
|
146
|
+
activity timestamp; do not replace it with Computer, session, or Agent
|
|
147
|
+
Activity time.
|
|
148
|
+
|
|
149
|
+
This command does not expose Connected Channel management, private Computer
|
|
150
|
+
paths or file access, Profile Report drafts or bodies, credentials, or private
|
|
151
|
+
local-agent state.
|
|
152
|
+
|
|
142
153
|
### `openmeld org invite-link`
|
|
143
154
|
|
|
144
155
|
Read, create or reset, and revoke the active Organization invite link. OpenMeld
|