openmeld 0.3.76 → 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-C_dCTz9h.js → add-me-membership-DKxk_mJH.js} +2 -2
- package/dist/{add-me-membership-C_dCTz9h.js.map → add-me-membership-DKxk_mJH.js.map} +1 -1
- package/dist/{api-client-foundation-CO_4tB8y.js → api-client-foundation-eEhPX63-.js} +2 -2
- package/dist/{api-client-foundation-CO_4tB8y.js.map → api-client-foundation-eEhPX63-.js.map} +1 -1
- package/dist/{command-Bn3Sm1p8.js → command-DCsqEvt_.js} +7 -7
- package/dist/{command-Bn3Sm1p8.js.map → command-DCsqEvt_.js.map} +1 -1
- package/dist/{dist-nJqZxjtc.js → dist-k89N2rz0.js} +7 -4
- package/dist/dist-k89N2rz0.js.map +1 -0
- package/dist/openmeld.js +5 -5
- package/dist/openmeld.js.map +1 -1
- package/package.json +2 -2
- package/skills/openmeld-cli/SKILL.md +31 -0
- package/skills/openmeld-cli/references/commands.md +11 -0
- package/dist/dist-nJqZxjtc.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",
|
|
@@ -613,6 +613,37 @@ openmeld org directory --view agent
|
|
|
613
613
|
openmeld org directory --json
|
|
614
614
|
```
|
|
615
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
|
+
|
|
616
647
|
Read or manage the Organization invite link:
|
|
617
648
|
|
|
618
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
|