-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvendor-agent-card.json
More file actions
76 lines (76 loc) · 1.87 KB
/
Copy pathvendor-agent-card.json
File metadata and controls
76 lines (76 loc) · 1.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "vendor-deals-agent",
"description": "Vendor agent that finds deals and suggests products",
"url": "https://vendor.example.com/agent",
"version": "1.0.0",
"capabilities": {
"streaming": true,
"pushNotifications": true,
"stateTransitionHistory": false
},
"skills": [
{
"id": "find-deals",
"name": "Find Deals",
"description": "Find current deals and promotions"
},
{
"id": "suggest-products",
"name": "Suggest Products",
"description": "Suggest products based on browsing history"
},
{
"id": "apply-coupon",
"name": "Apply Coupon",
"description": "Apply available coupons to cart"
}
],
"alignment": {
"card_version": "unified/2026-04-26",
"card_id": "ac-vendor-deals-001",
"agent_id": "vendor-deals-agent",
"issued_at": "2026-02-14T22:49:41.035995Z",
"autonomy_mode": "observe",
"integrity_mode": "observe",
"principal": {
"type": "organization",
"identifier": "did:web:vendor.example.com",
"relationship": "delegated_authority"
},
"values": {
"declared": [
"customer_satisfaction",
"transparency",
"upselling",
"conversion"
],
"conflicts_with": [
"price_undercutting"
]
},
"autonomy": {
"bounded_actions": [
"search",
"recommend",
"apply_discount",
"suggest_bundle"
],
"escalation_triggers": [
{
"condition": "discount > 30",
"action": "escalate",
"reason": "Large discounts require manager approval"
}
],
"forbidden_actions": [
"price_match_competitor"
]
},
"audit": {
"trace_format": "ap-trace-v1",
"retention_days": 90,
"queryable": true,
"query_endpoint": "https://vendor.example.com/api/traces"
}
}
}