forge-openclaw-plugin 0.2.35 → 0.2.36

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.
@@ -4781,6 +4781,7 @@ function buildOperatorOverview(request) {
4781
4781
  generatedAt: new Date().toISOString(),
4782
4782
  snapshot: buildV1Context(userIds),
4783
4783
  operator: buildOperatorContext(userIds),
4784
+ sleep: getSleepViewData(userIds),
4784
4785
  domains: listDomains(),
4785
4786
  psyche: canReadPsyche ? getPsycheOverview(userIds) : null,
4786
4787
  onboarding: buildAgentOnboardingPayload(request),
@@ -2446,6 +2446,7 @@ export function buildOpenApiDocument() {
2446
2446
  "generatedAt",
2447
2447
  "snapshot",
2448
2448
  "operator",
2449
+ "sleep",
2449
2450
  "domains",
2450
2451
  "psyche",
2451
2452
  "onboarding",
@@ -2457,6 +2458,7 @@ export function buildOpenApiDocument() {
2457
2458
  generatedAt: { type: "string", format: "date-time" },
2458
2459
  snapshot: { $ref: "#/components/schemas/ForgeSnapshot" },
2459
2460
  operator: { $ref: "#/components/schemas/OperatorContextPayload" },
2461
+ sleep: { $ref: "#/components/schemas/SleepViewData" },
2460
2462
  domains: arrayOf({ $ref: "#/components/schemas/Domain" }),
2461
2463
  psyche: nullable({ $ref: "#/components/schemas/PsycheOverviewPayload" }),
2462
2464
  onboarding: { $ref: "#/components/schemas/AgentOnboardingPayload" },
@@ -2,7 +2,7 @@
2
2
  "id": "forge-openclaw-plugin",
3
3
  "name": "Forge",
4
4
  "description": "Curated OpenClaw adapter for the Forge collaboration API, UI entrypoint, and localhost auto-start runtime.",
5
- "version": "0.2.35",
5
+ "version": "0.2.36",
6
6
  "skills": [
7
7
  "./skills"
8
8
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "forge-openclaw-plugin",
3
- "version": "0.2.35",
3
+ "version": "0.2.36",
4
4
  "description": "Curated OpenClaw adapter for the Forge collaboration API, UI entrypoint, and localhost auto-start runtime.",
5
5
  "type": "module",
6
6
  "license": "MIT",