multi-agent-protocol 0.0.4 → 0.0.6

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/schema/meta.json CHANGED
@@ -252,7 +252,7 @@
252
252
  "implementedBy": "system",
253
253
  "callableBy": ["system"],
254
254
  "capabilities": [],
255
- "description": "Connect to a peer MAP system",
255
+ "description": "Connect to a peer MAP system. Supports single-request auth with inline credentials including did:wba.",
256
256
  "requestType": "FederationConnectRequest",
257
257
  "responseType": "FederationConnectResponse"
258
258
  },
@@ -381,6 +381,60 @@
381
381
  "description": "Replay conversation turns from a specific point",
382
382
  "requestType": "MailReplayRequest",
383
383
  "responseType": "MailReplayResponse"
384
+ },
385
+ "cred/get": {
386
+ "tier": "extension",
387
+ "implementedBy": "system",
388
+ "callableBy": ["agent"],
389
+ "capabilities": ["credentials.canGet"],
390
+ "description": "Request a short-lived credential for a scope and resource",
391
+ "requestType": "CredGetRequest",
392
+ "responseType": "CredGetResponse"
393
+ },
394
+ "cred/list": {
395
+ "tier": "extension",
396
+ "implementedBy": "system",
397
+ "callableBy": ["agent"],
398
+ "capabilities": ["credentials.canList"],
399
+ "description": "List available scopes for the authenticated token",
400
+ "requestType": "CredListRequest",
401
+ "responseType": "CredListResponse"
402
+ },
403
+ "cred/status": {
404
+ "tier": "extension",
405
+ "implementedBy": "system",
406
+ "callableBy": ["client", "agent"],
407
+ "capabilities": [],
408
+ "description": "Check credential broker status and available providers",
409
+ "requestType": "CredStatusRequest",
410
+ "responseType": "CredStatusResponse"
411
+ },
412
+ "workspace/search": {
413
+ "tier": "extension",
414
+ "implementedBy": "system",
415
+ "callableBy": ["client", "agent"],
416
+ "capabilities": ["workspace.canSearch"],
417
+ "description": "Search for files matching a query in an agent's workspace",
418
+ "requestType": "WorkspaceSearchRequest",
419
+ "responseType": "WorkspaceSearchResponse"
420
+ },
421
+ "workspace/list": {
422
+ "tier": "extension",
423
+ "implementedBy": "system",
424
+ "callableBy": ["client", "agent"],
425
+ "capabilities": ["workspace.canList"],
426
+ "description": "List files in a directory of an agent's workspace",
427
+ "requestType": "WorkspaceListRequest",
428
+ "responseType": "WorkspaceListResponse"
429
+ },
430
+ "workspace/read": {
431
+ "tier": "extension",
432
+ "implementedBy": "system",
433
+ "callableBy": ["client", "agent"],
434
+ "capabilities": ["workspace.canRead"],
435
+ "description": "Read file contents from an agent's workspace",
436
+ "requestType": "WorkspaceReadRequest",
437
+ "responseType": "WorkspaceReadResponse"
384
438
  }
385
439
  },
386
440
  "notifications": {
@@ -434,7 +488,9 @@
434
488
  "5000": "Federation unavailable",
435
489
  "5001": "System not found",
436
490
  "5002": "Federation auth failed",
437
- "5003": "Route rejected"
491
+ "5003": "Route rejected",
492
+ "5004": "DID resolution failed",
493
+ "5005": "DID proof invalid"
438
494
  },
439
495
  "mail": {
440
496
  "10000": "Conversation not found",
@@ -448,6 +504,18 @@
448
504
  "10008": "Invalid content type",
449
505
  "10009": "Thread nesting limit exceeded",
450
506
  "10010": "Mail not enabled"
507
+ },
508
+ "credentials": {
509
+ "11000": "Credential broker not enabled",
510
+ "11001": "Credential scope denied",
511
+ "11002": "Credential provider unavailable",
512
+ "11003": "Credential request failed"
513
+ },
514
+ "workspace": {
515
+ "12000": "Workspace not enabled",
516
+ "12001": "File not found",
517
+ "12002": "Permission denied",
518
+ "12003": "Invalid path"
451
519
  }
452
520
  },
453
521
  "tiers": {