@yanlinglabs/winter-agent-sdk 0.0.2 → 0.0.4
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 +30 -0
- package/dist/{index-h1tryj38.js → index-51ysrfm8.js} +1 -1
- package/dist/index-9e98bg1r.js +707 -0
- package/dist/index.d.ts +2 -1
- package/dist/index.js +64 -744
- package/dist/messaging/index.js +1 -1
- package/dist/messaging/router.d.ts +10 -0
- package/dist/paths/project-key.d.ts +2 -0
- package/dist/tools/accept.d.ts +39 -0
- package/dist/tools/advisor.d.ts +106 -0
- package/dist/tools/definitions.d.ts +31 -0
- package/dist/tools/index.d.ts +14 -0
- package/dist/tools/index.js +438 -0
- package/dist/tools/messaging-handlers.d.ts +52 -0
- package/dist/tools/port.d.ts +39 -0
- package/dist/tools/schemas.d.ts +48 -0
- package/dist/version.d.ts +1 -0
- package/package.json +9 -5
package/README.md
CHANGED
|
@@ -38,6 +38,36 @@ files, `README.md` and `LICENSE`. It does **not** ship `src/`: the TypeScript so
|
|
|
38
38
|
<https://github.com/yanlingLabs/winter-agent-sdk>, which is where to read them, file an issue, or send
|
|
39
39
|
a patch.
|
|
40
40
|
|
|
41
|
+
## Subpaths
|
|
42
|
+
|
|
43
|
+
The main entry is the wrapper surface above. Two subpaths ship beside it, for hosts that compose
|
|
44
|
+
Winter rather than only call it:
|
|
45
|
+
|
|
46
|
+
**`@yanlinglabs/winter-agent-sdk/messaging`** (since 0.0.2) — the cross-runtime messaging contract
|
|
47
|
+
and its router core: addresses, listings, delivery outcomes, the adapter interface, inbound policy,
|
|
48
|
+
the `notify_when_idle` subscription store, and the three orchestration functions a host drives them
|
|
49
|
+
with. It ships no adapter and no process-level singleton; those are host composition.
|
|
50
|
+
|
|
51
|
+
**`@yanlinglabs/winter-agent-sdk/tools`** (since 0.0.3) — Winter's default tools, declared and
|
|
52
|
+
implemented once:
|
|
53
|
+
|
|
54
|
+
- `WINTER_DEFAULT_TOOL_DEFINITIONS` — `send_message`, `list_agents`, `read_notifications` and
|
|
55
|
+
`advisor`, each a `WinterToolDefinition` carrying a BARE `toolName`, the official built-in alias
|
|
56
|
+
key in `builtinName`, the description, the schemas and a permission class. No registry policy
|
|
57
|
+
fields: a host supplies its own.
|
|
58
|
+
- the native schemas and their bounds (`NATIVE_SEND_MESSAGE_SCHEMA`, `SEND_MESSAGE_TO_MAX` and the
|
|
59
|
+
rest), plus strict acceptors — unknown arguments are refused, `summary` is truncated rather than
|
|
60
|
+
rejected, and a refusal is returned as data the model can correct from, never thrown.
|
|
61
|
+
- `MessagingToolPort` + `messagingToolPortFromRuntimeDeps`, and `createMessagingToolHandlers`, which
|
|
62
|
+
turn a messaging world into the three tool handlers over it.
|
|
63
|
+
- `createAdvisorToolHandler` and `transcriptSourceForSessionKey`, with the reviewer left to the host
|
|
64
|
+
to resolve.
|
|
65
|
+
|
|
66
|
+
A host BINDS these under its own names: the Winter runtime registers them as its native built-ins
|
|
67
|
+
plus two canonical standing-server twins, and `@yanlinglabs/winter-runtime-sdk` binds the same
|
|
68
|
+
definitions under Claude's built-in names. Handlers return `{ text, isError? }` for each host to
|
|
69
|
+
wrap in its own result shape.
|
|
70
|
+
|
|
41
71
|
## License
|
|
42
72
|
|
|
43
73
|
MIT — see [`LICENSE`](./LICENSE), which ships in the published tarball.
|
|
@@ -611,4 +611,4 @@ function createMessagingRouter2(deps) {
|
|
|
611
611
|
readNotifications: (caller) => readNotifications2(deps, caller)
|
|
612
612
|
};
|
|
613
613
|
}
|
|
614
|
-
export { serializeRuntimeAddress2, createFakeMessagingRouterSeam2, REFERENCE_RUNTIME_KIND2, validateToField2, buildSessionAddress2, buildChildAddress2, parseRuntimeAddress2, sameAddress2, MAX_GLOBAL_MESSAGE_SIZE2, DEFAULT_MESSAGE_TTL_MS2, MAX_HOP_COUNT2, RAPID_REPEAT_WINDOW_MS2, HELD_INBOX_CAP2, ACCEPTED_QUEUE_CAP2, DEFAULT_HOLD_EXPIRY_MS2, NOTIFY_IDLE_EXPIRY_MS2, messageExceedsMaxSize2, hopCountExceeded2, delivered2, queued2, resumedAndDelivered2, held2, subscribed2, deliveryUncertain2, refused2, ambiguous2, notFound2, unavailable2, createLoopGuard2, childToListedRuntimeObject2, resolveTarget2, classifyPermissionMode2, mapFromModeToPermissionClass2, defaultInboundResult2, resolveInboundDecision2, createMailbox2, buildDefaultHoldEntry2, buildExplicitHoldEntry2, isIdleSubscribeSenderAllowed2, isIdleSubscribeTargetAllowed2, createNotificationQueue2, createIdleSubscriptionStore2, AGENT_MESSAGE_TAG2, escapeAttributionText2, escapeAttributionAttribute2, RESERVED_NOTIFICATION_KEY_PREFIX2, facetNotificationKey2, isReservedNotificationKey2, MAX_TRACKED_MESSAGE_IDS2, rememberBounded2, createMessagingRouterSeam2, createSubscriberDirectory2, callerAddress2, sendMessage2, listAgents2, readNotifications2, createMessagingRouter2 };
|
|
614
|
+
export { serializeRuntimeAddress2, createFakeMessagingRouterSeam2, REFERENCE_RUNTIME_KIND2, validateToField2, buildSessionAddress2, buildChildAddress2, parseRuntimeAddress2, sameAddress2, MAX_GLOBAL_MESSAGE_SIZE2, DEFAULT_MESSAGE_TTL_MS2, MAX_HOP_COUNT2, RAPID_REPEAT_WINDOW_MS2, HELD_INBOX_CAP2, ACCEPTED_QUEUE_CAP2, DEFAULT_HOLD_EXPIRY_MS2, NOTIFY_IDLE_EXPIRY_MS2, messageExceedsMaxSize2, hopCountExceeded2, delivered2, queued2, resumedAndDelivered2, held2, subscribed2, deliveryUncertain2, refused2, ambiguous2, notFound2, unavailable2, createLoopGuard2, childToListedRuntimeObject2, resolveTarget2, classifyPermissionMode2, mapFromModeToPermissionClass2, defaultInboundResult2, resolveInboundDecision2, createMailbox2, buildDefaultHoldEntry2, buildExplicitHoldEntry2, isIdleSubscribeSenderAllowed2, isIdleSubscribeTargetAllowed2, createNotificationQueue2, createIdleSubscriptionStore2, AGENT_MESSAGE_TAG2, escapeAttributionText2, escapeAttributionAttribute2, RESERVED_NOTIFICATION_KEY_PREFIX2, facetNotificationKey2, isReservedNotificationKey2, MAX_TRACKED_MESSAGE_IDS2, rememberBounded2, createMessagingRouterSeam2, createSubscriberDirectory2, callerAddress2, sendMessage2, formatListing, listAgents2, readNotifications2, createMessagingRouter2 };
|