@kynver-app/openclaw-agent-os 0.1.37 → 0.1.38

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/index.js CHANGED
@@ -2976,6 +2976,11 @@ var commandCenterDashboardContractSchema = {
2976
2976
  limit: {
2977
2977
  type: "number",
2978
2978
  description: "Max tasks to load when building counts (server cap 10000)."
2979
+ },
2980
+ projection: {
2981
+ type: "string",
2982
+ enum: ["mcp", "slim"],
2983
+ description: "mcp (default) \u2014 agentReadable + resultContract + dashboard fields. slim \u2014 legacy dashboard DTO only."
2979
2984
  }
2980
2985
  },
2981
2986
  additionalProperties: false,
@@ -3000,6 +3005,11 @@ var commandCenterGetSchema = {
3000
3005
  harnessLimit: {
3001
3006
  type: "number",
3002
3007
  description: "Max harness runs in the rollup (server cap 200)."
3008
+ },
3009
+ projection: {
3010
+ type: "string",
3011
+ enum: ["compact", "full"],
3012
+ description: "Response shape. Default compact \u2014 agentReadable summary, countSnapshot, capped previews; omits graph/hierarchy."
3003
3013
  }
3004
3014
  },
3005
3015
  additionalProperties: false,
@@ -3135,7 +3145,7 @@ function createCommandCenterTools(config) {
3135
3145
  ),
3136
3146
  mk(
3137
3147
  "agent_os_command_center_dashboard_contract_get",
3138
- "Slim dashboard contract for runtime verification: countSnapshot, packageVersionHealth, runtime capacity, activePlanRollups \u2014 no graph/hierarchy.",
3148
+ "Slim dashboard contract for runtime verification: countSnapshot, packageVersionHealth, runtime capacity, activePlanRollups, blockerSlo \u2014 no graph/hierarchy.",
3139
3149
  commandCenterDashboardContractSchema
3140
3150
  ),
3141
3151
  mk(