openclaw-mova 1.0.0 → 1.0.1
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/README.md +115 -0
- package/openclaw.plugin.json +1 -1
- package/package.json +3 -2
package/README.md
ADDED
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: openclaw-mova
|
|
3
|
+
description: MOVA contract execution ecosystem for OpenClaw. Provides 21 tools to execute AI contracts with human-in-the-loop decision gates, manage connectors, register and run custom contracts, and browse the public contract marketplace. Install this plugin first, then add the contract skills or ecosystem skills you need.
|
|
4
|
+
license: MIT-0
|
|
5
|
+
metadata: {"openclaw":{"plugin":{"name":"MOVA","installCmd":"openclaw plugins install openclaw-mova"},"dataSentToExternalServices":[{"service":"MOVA API (api.mova-lab.eu, EU-hosted)","data":"contract inputs, decision data, audit metadata, API key in Authorization header"},{"service":"No other external services","data":"All connector calls go through the MOVA API only — the plugin never opens direct connections to third-party systems"}],"security":{"fileIO":"none","arbitraryNetworkCalls":"none — only https://api.mova-lab.eu (configurable via baseUrl)","credentialStorage":"apiKey stored in OpenClaw plugin config, sent only to the configured baseUrl"}}}
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
# MOVA — Contract Execution for AI Agents
|
|
9
|
+
|
|
10
|
+
## What is MOVA
|
|
11
|
+
|
|
12
|
+
MOVA is a language and execution runtime for governed AI processes. At its core is the concept of a **contract** — a structured specification that defines:
|
|
13
|
+
|
|
14
|
+
- what the agent does at each step
|
|
15
|
+
- where it must stop and hand control to a human (HITL gate)
|
|
16
|
+
- which policies are enforced (cannot be skipped or bypassed)
|
|
17
|
+
- how every action is recorded
|
|
18
|
+
|
|
19
|
+
A contract is not a script or a prompt. It is a MOVA-spec artifact: input definitions, execution steps, instruction profiles, and human control gates. The contract lives at the author's URL — GitHub, S3, or any HTTPS address. MOVA fetches it, validates it, and executes it.
|
|
20
|
+
|
|
21
|
+
**What the user receives after execution:**
|
|
22
|
+
|
|
23
|
+
- **Verdict** — `fulfilled` / `partially_fulfilled` / `failed`
|
|
24
|
+
- **Step outputs** — structured data from each execution step
|
|
25
|
+
- **Signed audit receipt** — an immutable record of every event: who initiated the run, what the agent did, what the human decided, at exactly what moment. Stored permanently, retrievable by `run_id`. Designed to satisfy EU AI Act, AMLD6, and GDPR auditability requirements.
|
|
26
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
29
|
+
## Two ways to use MOVA
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
|
|
33
|
+
### Path 1 — Use ready-made contracts
|
|
34
|
+
|
|
35
|
+
Install the plugin, add the contract skills you need, and your agent immediately has complete AI-governed business workflows with HITL gates and full audit trails.
|
|
36
|
+
|
|
37
|
+
**Required:**
|
|
38
|
+
|
|
39
|
+
| Component | Type | Purpose |
|
|
40
|
+
|---|---|---|
|
|
41
|
+
| `openclaw-mova` (this plugin) | Plugin | Required. Provides all 21 execution tools |
|
|
42
|
+
| `mova-connector-setup` | Ecosystem skill | Connect your real ERP, CRM, AML systems instead of sandbox mocks |
|
|
43
|
+
|
|
44
|
+
**Contract skills — install whichever workflows your org needs:**
|
|
45
|
+
|
|
46
|
+
| Skill | What it runs |
|
|
47
|
+
|---|---|
|
|
48
|
+
| `mova-invoice-ocr` | Invoice OCR extraction + AP approval gate |
|
|
49
|
+
| `mova-po-approval` | Purchase order risk analysis + procurement approval gate |
|
|
50
|
+
| `mova-aml-triage` | AML alert L1 triage + compliance officer decision gate |
|
|
51
|
+
| `mova-complaints-handler` | EU customer complaint classification + handling gate |
|
|
52
|
+
| `mova-crypto-review` | Crypto trade risk analysis + human approval gate |
|
|
53
|
+
| `mova-compliance-audit` | GDPR / PCI-DSS / ISO 27001 / SOC 2 audit + sign-off gate |
|
|
54
|
+
| `mova-credit-scoring` | Credit risk scoring + credit officer approval gate |
|
|
55
|
+
| `mova-supply-chain-risk` | Supplier sanctions / ESG screening + procurement gate |
|
|
56
|
+
| `mova-churn-prediction` | Customer churn prediction + retention campaign approval gate |
|
|
57
|
+
| `mova-contract-generation` | Legal document generation (NDA, SLA) + section-by-section review gates |
|
|
58
|
+
|
|
59
|
+
---
|
|
60
|
+
|
|
61
|
+
### Path 2 — Build and publish your own contracts
|
|
62
|
+
|
|
63
|
+
Go from raw idea to an executable, auditable MOVA contract. Keep it private, share it with your org, or publish it on ClawHub for others to use.
|
|
64
|
+
|
|
65
|
+
**Required:**
|
|
66
|
+
|
|
67
|
+
| Component | Type | Purpose |
|
|
68
|
+
|---|---|---|
|
|
69
|
+
| `openclaw-mova` (this plugin) | Plugin | Required |
|
|
70
|
+
| `mova-intent-calibration` | Ecosystem skill | Crystallizes a raw request into a bounded, testable intent — the input for contract authoring |
|
|
71
|
+
| `mova-spec-guide` | Ecosystem skill | Reference for the MOVA spec language: schemas, envelopes, verbs, instruction profiles |
|
|
72
|
+
| `mova-spec-authoring` | Ecosystem skill | Authors a complete MOVA contract from a crystallized intent |
|
|
73
|
+
| `mova-user-contract-setup` | Ecosystem skill | Registers your contract at MOVA and runs the first test |
|
|
74
|
+
| `mova-contract-discovery` | Ecosystem skill | Finds and runs public contracts from other organizations |
|
|
75
|
+
| `mova-connector-setup` | Ecosystem skill | Connects your real business systems |
|
|
76
|
+
|
|
77
|
+
**The build path:**
|
|
78
|
+
1. `mova-intent-calibration` — define exactly what the contract must do
|
|
79
|
+
2. `mova-spec-guide` — understand the spec structure if needed
|
|
80
|
+
3. `mova-spec-authoring` — write the contract from the crystallized intent
|
|
81
|
+
4. Host the contract JSON at your GitHub / S3 / any HTTPS URL
|
|
82
|
+
5. `mova-user-contract-setup` — register with MOVA and run the first test
|
|
83
|
+
6. Optionally publish the skill on ClawHub so others can use it
|
|
84
|
+
|
|
85
|
+
---
|
|
86
|
+
|
|
87
|
+
## Setup
|
|
88
|
+
|
|
89
|
+
```
|
|
90
|
+
openclaw config set plugins.entries.mova.config.apiKey YOUR_KEY
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
Get your API key at **https://mova-lab.eu/register**
|
|
94
|
+
|
|
95
|
+
Optional — override the base URL for self-hosted or staging:
|
|
96
|
+
|
|
97
|
+
```
|
|
98
|
+
openclaw config set plugins.entries.mova.config.baseUrl https://your-mova-instance.example.com
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
---
|
|
102
|
+
|
|
103
|
+
## All 21 tools
|
|
104
|
+
|
|
105
|
+
### HITL contract execution
|
|
106
|
+
`mova_hitl_start` · `mova_hitl_start_po` · `mova_hitl_start_trade` · `mova_hitl_start_aml` · `mova_hitl_start_complaint` · `mova_hitl_start_compliance` · `mova_hitl_start_credit` · `mova_hitl_start_supply_chain` · `mova_hitl_start_churn` · `mova_hitl_start_contract_gen` · `mova_hitl_decide` · `mova_hitl_status` · `mova_hitl_audit` · `mova_hitl_audit_compact` · `mova_calibrate_intent`
|
|
107
|
+
|
|
108
|
+
### Connector registry
|
|
109
|
+
`mova_list_connectors` · `mova_list_connector_overrides` · `mova_register_connector` · `mova_delete_connector_override`
|
|
110
|
+
|
|
111
|
+
### User contract registry & execution
|
|
112
|
+
`mova_register_contract` · `mova_list_my_contracts` · `mova_set_contract_visibility` · `mova_delete_contract` · `mova_run_contract` · `mova_run_status`
|
|
113
|
+
|
|
114
|
+
### Public marketplace
|
|
115
|
+
`mova_discover_contracts`
|
package/openclaw.plugin.json
CHANGED
|
@@ -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": "1.0.
|
|
5
|
+
"version": "1.0.1",
|
|
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": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
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",
|
|
@@ -34,7 +34,8 @@
|
|
|
34
34
|
"files": [
|
|
35
35
|
"dist",
|
|
36
36
|
"openclaw.plugin.json",
|
|
37
|
-
"SKILL.md"
|
|
37
|
+
"SKILL.md",
|
|
38
|
+
"README.md"
|
|
38
39
|
],
|
|
39
40
|
"peerDependencies": {
|
|
40
41
|
"openclaw": "*"
|