Skip to content
Open
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
231b558
feat(ghost-protocol): add AP2 intent mandate for autonomous infra set…
Lesedi37 Apr 13, 2026
106a192
feat(ghost-protocol): add AP2 intent mandate for autonomous infra set…
Lesedi37 Apr 13, 2026
90d910b
fix: resolve false-positive spell-check for 'ethr' in DID string
Lesedi37 Apr 13, 2026
27f75f6
Add JSON structure for words and ignoreWords
Lesedi37 Apr 13, 2026
d111d62
Update intent-mandate.json for clarity and merchants
Lesedi37 Apr 13, 2026
01ef605
Update intent-mandate.json
Lesedi37 Apr 13, 2026
03cd5c0
Update intent-mandate.json with new fields
Lesedi37 Apr 13, 2026
6aede57
Update intent-mandate.json with new proofValue format
Lesedi37 Apr 14, 2026
5eea39a
Update proof creation date and proof value format
Lesedi37 Apr 14, 2026
fe115ec
Add 'google-agentic-commerce' to merchants list
Lesedi37 Apr 14, 2026
e88cccd
Update intent-mandate.json for merchant and proofValue changes
Lesedi37 Apr 14, 2026
d131a5a
Update proofValue and linter instructions in JSON
Lesedi37 Apr 15, 2026
092d4c8
Add new merchant to intent mandate JSON
Lesedi37 Apr 15, 2026
970d677
Update proofValue placeholder in intent-mandate.json
Lesedi37 Apr 15, 2026
0a1697b
Update intent-mandate.json with new values
Lesedi37 Apr 15, 2026
d3076a6
Refactor JSON structure and update description
Lesedi37 Apr 15, 2026
dbb2177
Fix missing newline at end of intent-mandate.json
Lesedi37 Apr 15, 2026
7e98f1e
Modernized the Ghost-Protocol schema, fixed spelling issues, and upda…
Lesedi37 Apr 15, 2026
6050aa7
Update to modernized Ghost-Protocol schema with corrected spelling an…
Lesedi37 Apr 15, 2026
ef7fedb
Update intent-mandate.json
Lesedi37 Apr 16, 2026
a483539
Update intent-mandate.json
Lesedi37 Apr 16, 2026
5488427
Update custom-words.txt
Lesedi37 Apr 16, 2026
d8beedb
Update intent-mandate.json
Lesedi37 Apr 16, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions samples/python/scenarios/ghost-protocol/intent-mandate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"@context": [
"https://www.w3.org/ns/credentials/v2",
"https://ap2-protocol.net/v1"
],
"id": "urn:uuid:58a731d1-b2c3-4d4e-8f9a-0x1db618e6bfc3",
Comment thread
Lesedi37 marked this conversation as resolved.
Outdated
"type": ["VerifiableCredential", "IntentMandate"],
"issuer": "did:ethr:0x1db618e6bfc35bd48b91431a55c4948b27e7a539",

Check warning on line 8 in samples/python/scenarios/ghost-protocol/intent-mandate.json

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (ethr)
"validFrom": "2026-04-13T05:40:00Z",
"credentialSubject": {
"id": "did:ethr:0x1db618e6bfc35bd48b91431a55c4948b27e7a539",

Check warning on line 11 in samples/python/scenarios/ghost-protocol/intent-mandate.json

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (ethr)
"agentId": "ghost-protocol-node-v1",
"isNonCustodial": true,
"constraints": {
"maxAmount": "200.00",
"currency": "USDC",
"allowedMerchants": [
"proxies.sx",
"render.com",
"google-agentic-commerce"
],
"requiresHumanApproval": false
}
},
Comment thread
Lesedi37 marked this conversation as resolved.
Outdated
"proof": {
"type": "DataIntegrityProof",
"cryptosuite": "ecdsa-2019",

Check warning on line 27 in samples/python/scenarios/ghost-protocol/intent-mandate.json

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (cryptosuite)
"created": "2026-04-13T05:41:00Z",
"verificationMethod": "did:ethr:0x1db618e6bfc35bd48b91431a55c4948b27e7a539#controller",

Check warning on line 29 in samples/python/scenarios/ghost-protocol/intent-mandate.json

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (ethr)
"proofPurpose": "assertionMethod",
"proofValue": "[PASTE_YOUR_0x_SIGNATURE_FROM_RABBY_HERE]"

Check warning on line 31 in samples/python/scenarios/ghost-protocol/intent-mandate.json

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (RABBY)
Comment thread
Lesedi37 marked this conversation as resolved.
Outdated
}
}
Loading