@keemakr/agent-sdk 0.13.1 → 0.14.0-dev-20260916111321

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/README.md CHANGED
@@ -210,6 +210,17 @@ Inside an eve channel, `grantAuth()` already accepts machine grants (same token
210
210
 
211
211
  Full contract: keemakr-core `docs/CONNECTOR-CONTRACT.md`.
212
212
 
213
+ ## Building the agent itself
214
+
215
+ This SDK covers the grant and capability half. The delegation half — how the Operator talks to
216
+ your root, what it expects back, and what it will not do for you — is in keemakr-core:
217
+
218
+ - `docs/building-department-agents.md` — declared subagents and the isolation trap, parallel
219
+ fan-out as a barrier, the `DelegationResult` contract, the ONE-combined-message-per-department
220
+ obligation, the ~45s promotion budget, and voice.
221
+ - `docs/authoring-manifest-descriptions.md` — the manifest description is the routing signal. An
222
+ empty one on the department surface stops intent routing for your department entirely.
223
+
213
224
  ## License
214
225
 
215
226
  MIT
@@ -5,5 +5,13 @@ export declare const keemakrToolDirectory: import("eve/tools").DynamicSentinel<{
5
5
  ok: boolean;
6
6
  tool: string;
7
7
  result: unknown;
8
- }>;
8
+ }> & {
9
+ execute(input: {
10
+ args?: Record<string, unknown> | undefined;
11
+ }, ctx: import("eve/tools").ToolContext): Promise<{
12
+ ok: boolean;
13
+ tool: string;
14
+ result: unknown;
15
+ }>;
16
+ };
9
17
  } | null>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keemakr/agent-sdk",
3
- "version": "0.13.1",
3
+ "version": "0.14.0-dev-20260916111321",
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",
@@ -40,12 +40,12 @@
40
40
  "typecheck:peer-ceiling": "npm run gen:connectors && tsc -p tsconfig.peer-ceiling.json"
41
41
  },
42
42
  "peerDependencies": {
43
- "eve": ">=0.22.1 <0.41",
43
+ "eve": ">=0.40.0 <0.57",
44
44
  "jose": "^6.2.3"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@types/node": "^20.19.43",
48
- "eve": "0.22.1",
48
+ "eve": "0.40.0",
49
49
  "jose": "^6.2.3",
50
50
  "typescript": "^5"
51
51
  },