flowise-invinoveritas 0.5.2 → 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/package.json +1 -1
- package/src/index.ts +22 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "flowise-invinoveritas",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"description": "Flowise components for invinoveritas \u2014 the verification layer for autonomous agents: capital-scale-aware /review before an irreversible action, signed /prove after, and a public verdict track record. Plus reasoning, decisions, memory, and markets as supporting tools. Bitcoin/Lightning + x402.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "invinoveritas <contact@agents.babyblueviper.com>",
|
package/src/index.ts
CHANGED
|
@@ -61,6 +61,16 @@ export async function invinoReview(
|
|
|
61
61
|
});
|
|
62
62
|
}
|
|
63
63
|
|
|
64
|
+
export async function invinoProve(config: InvinoConfig, actionId: string) {
|
|
65
|
+
// Signed, independently-verifiable proof of a prior execution (the verdict-after to review's verdict-before).
|
|
66
|
+
return post(config, '/prove', { action_id: actionId });
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
export async function invinoLedger(config: InvinoConfig, entry = '') {
|
|
70
|
+
// The public, signed, on-chain-verifiable verdict track record — verify without trusting us. Free, no auth.
|
|
71
|
+
return get(config, entry ? `/ledger/${entry}` : '/ledger');
|
|
72
|
+
}
|
|
73
|
+
|
|
64
74
|
export async function invinoResidenceAct(
|
|
65
75
|
config: InvinoConfig,
|
|
66
76
|
intent: string,
|
|
@@ -186,9 +196,19 @@ export const nodes = [
|
|
|
186
196
|
description: 'Capital-scale-aware governed review of a trade, diff, command, or plan — the same gate our live Bitcoin bot passes before every entry. ~250 sats.',
|
|
187
197
|
},
|
|
188
198
|
{
|
|
189
|
-
label: 'invinoveritas
|
|
199
|
+
label: 'invinoveritas Prove (signed proof)',
|
|
200
|
+
name: 'invinoveritasProve',
|
|
201
|
+
description: 'Signed, independently-verifiable proof of a prior execution — the attestation-after to Review\'s verdict-before. Public verify at /attestations/{proof_id}.',
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
label: 'invinoveritas Ledger (public track record)',
|
|
205
|
+
name: 'invinoveritasLedger',
|
|
206
|
+
description: 'The public, signed, on-chain-verifiable verdict track record — verify our record against our published key without trusting us. We publish our failures too. Free.',
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
label: 'invinoveritas Residence Act (optional governed bundle)',
|
|
190
210
|
name: 'invinoveritasResidenceAct',
|
|
191
|
-
description: '
|
|
211
|
+
description: 'Optional one governed call — reasons + governs + remembers your intent. Deterministic house rules; priced below the sum of its parts.',
|
|
192
212
|
},
|
|
193
213
|
{
|
|
194
214
|
label: 'invinoveritas Regime (risk-off feed)',
|