openclaw-mova 0.5.1 → 0.6.0

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/SKILL.md CHANGED
@@ -68,6 +68,12 @@ Obtain an API key at https://mova-lab.eu/register.
68
68
  | `mova_register_connector` | Register your HTTPS endpoint for a connector |
69
69
  | `mova_delete_connector_override` | Remove a connector override (reverts to MOVA sandbox mock) |
70
70
 
71
+ ### Public contract marketplace (Phase 5)
72
+
73
+ | Tool | Purpose |
74
+ |---|---|
75
+ | `mova_discover_contracts` | Browse public MOVA contracts from all organizations, filter by keyword or execution mode |
76
+
71
77
  ### User contract registry (Phase 4)
72
78
 
73
79
  | Tool | Purpose |
package/dist/index.js CHANGED
@@ -3474,6 +3474,23 @@ var plugin = {
3474
3474
  return toolResult(await movaDelete(cfg(), `/api/v1/connectors/${p.connector_id}/override`));
3475
3475
  }
3476
3476
  });
3477
+ api.registerTool({
3478
+ name: "mova_discover_contracts",
3479
+ label: "MOVA: Discover Public Contracts",
3480
+ description: "Browse the public MOVA contract marketplace. Returns contracts published by all organizations, sorted by usage. Optionally filter by keyword or execution mode.",
3481
+ parameters: Type.Object({
3482
+ keyword: Type.Optional(Type.String({ description: "Filter by title or description keyword, e.g. invoice, aml, compliance" })),
3483
+ execution_mode: Type.Optional(Type.String({ description: "Filter by execution mode: deterministic, bounded_variance, ai_assisted, human_gated" }))
3484
+ }),
3485
+ async execute(_id, p) {
3486
+ const params = new URLSearchParams();
3487
+ if (p.keyword) params.set("keyword", p.keyword);
3488
+ if (p.execution_mode) params.set("execution_mode", p.execution_mode);
3489
+ const qs = params.toString();
3490
+ const path = qs ? `/api/v1/contracts/public?${qs}` : "/api/v1/contracts/public";
3491
+ return toolResult(await movaGet(cfg(), path));
3492
+ }
3493
+ });
3477
3494
  api.registerTool({
3478
3495
  name: "mova_register_contract",
3479
3496
  label: "MOVA: Register Contract",
@@ -2,7 +2,7 @@
2
2
  "id": "mova",
3
3
  "name": "MOVA",
4
4
  "description": "HITL contract execution for business workflows — invoice OCR, PO approval, AML triage, complaints handling, crypto trade review, compliance audit, credit scoring, supply chain risk, churn prediction, contract generation, connector registry, and user contract registration and remote execution.",
5
- "version": "0.5.1",
5
+ "version": "0.6.0",
6
6
  "configSchema": {
7
7
  "type": "object",
8
8
  "required": ["apiKey"],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openclaw-mova",
3
- "version": "0.5.1",
3
+ "version": "0.6.0",
4
4
  "description": "MOVA HITL tools for OpenClaw — native agent tools for contract-driven business workflows",
5
5
  "type": "module",
6
6
  "license": "MIT-0",