@keemakr/agent-sdk 0.8.0 → 0.9.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/dist/tool-directory.d.ts +9 -1
- package/package.json +3 -3
package/dist/tool-directory.d.ts
CHANGED
|
@@ -1 +1,9 @@
|
|
|
1
|
-
export declare const keemakrToolDirectory: import("eve/tools").DynamicSentinel
|
|
1
|
+
export declare const keemakrToolDirectory: import("eve/tools").DynamicSentinel<{
|
|
2
|
+
[k: string]: import("eve/tools").ToolDefinition<{
|
|
3
|
+
args?: Record<string, unknown> | undefined;
|
|
4
|
+
}, {
|
|
5
|
+
ok: boolean;
|
|
6
|
+
tool: string;
|
|
7
|
+
result: unknown;
|
|
8
|
+
}>;
|
|
9
|
+
} | null>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keemakr/agent-sdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"description": "The floor for keemakr marketplace agents: verify the capability grant and reach tenant connections, memory, and shared platform tools through keemakr-core — without holding raw secrets or resolving the tenant yourself.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -39,12 +39,12 @@
|
|
|
39
39
|
"prepublishOnly": "npm run build"
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {
|
|
42
|
-
"eve": "0.
|
|
42
|
+
"eve": "0.22.1",
|
|
43
43
|
"jose": "^6.2.3"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@types/node": "^20.19.43",
|
|
47
|
-
"eve": "0.
|
|
47
|
+
"eve": "0.22.1",
|
|
48
48
|
"jose": "^6.2.3",
|
|
49
49
|
"typescript": "^5"
|
|
50
50
|
},
|