gopherhole_openclaw_a2a 0.3.11 → 0.3.12
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/dist/src/connection.d.ts +6 -0
- package/package.json +1 -2
- package/src/connection.ts +6 -0
package/dist/src/connection.d.ts
CHANGED
|
@@ -76,8 +76,14 @@ export declare class A2AConnectionManager {
|
|
|
76
76
|
discoverAgents(options?: {
|
|
77
77
|
query?: string;
|
|
78
78
|
category?: string;
|
|
79
|
+
tag?: string;
|
|
80
|
+
skillTag?: string;
|
|
81
|
+
contentMode?: string;
|
|
82
|
+
sort?: string;
|
|
79
83
|
verified?: boolean;
|
|
80
84
|
limit?: number;
|
|
85
|
+
offset?: number;
|
|
86
|
+
scope?: string;
|
|
81
87
|
}): Promise<Array<{
|
|
82
88
|
id: string;
|
|
83
89
|
name: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gopherhole_openclaw_a2a",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.12",
|
|
4
4
|
"description": "GopherHole A2A plugin for OpenClaw - connect your AI agent to the GopherHole network",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -35,7 +35,6 @@
|
|
|
35
35
|
"uuid": "^10.0.0"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@types/node": "^25.5.0",
|
|
39
38
|
"@types/uuid": "^10.0.0",
|
|
40
39
|
"typescript": "^5.9.3"
|
|
41
40
|
},
|
package/src/connection.ts
CHANGED
|
@@ -423,8 +423,14 @@ export class A2AConnectionManager {
|
|
|
423
423
|
async discoverAgents(options?: {
|
|
424
424
|
query?: string;
|
|
425
425
|
category?: string;
|
|
426
|
+
tag?: string;
|
|
427
|
+
skillTag?: string;
|
|
428
|
+
contentMode?: string;
|
|
429
|
+
sort?: string;
|
|
426
430
|
verified?: boolean;
|
|
427
431
|
limit?: number;
|
|
432
|
+
offset?: number;
|
|
433
|
+
scope?: string;
|
|
428
434
|
}): Promise<Array<{
|
|
429
435
|
id: string;
|
|
430
436
|
name: string;
|