@skein-js/core 0.2.0 → 0.2.1
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 +12 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,10 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
> The shared Agent Protocol **contract** for skein-js — wire types, the `SkeinStore` interface, the queue / bus / auth seams, and the edge error type.
|
|
4
4
|
|
|
5
|
-
Part of **[skein-js](
|
|
5
|
+
Part of **[skein-js](../../README.md)** — a TypeScript [Agent Protocol](https://github.com/langchain-ai/agent-protocol) server for [LangGraph.js](https://github.com/langchain-ai/langgraphjs), and a drop-in replacement for the LangGraph CLI.
|
|
6
6
|
|
|
7
7
|
**Status:** 🚧 Pre-alpha — implemented. The run engine, handler table, and SSE mapping that build on this contract live in [`@skein-js/agent-protocol`](../agent-protocol).
|
|
8
8
|
|
|
9
|
+
## Contents
|
|
10
|
+
|
|
11
|
+
- [What it does](#what-it-does)
|
|
12
|
+
- [Install](#install)
|
|
13
|
+
- [Usage](#usage)
|
|
14
|
+
- [API](#api)
|
|
15
|
+
- [Reuse](#reuse)
|
|
16
|
+
- [Learn more](#learn-more)
|
|
17
|
+
- [License](#license)
|
|
18
|
+
|
|
9
19
|
## What it does
|
|
10
20
|
|
|
11
21
|
Holds the Agent Protocol _contract_ once, against _normalized_ types, so behavior is identical across
|
|
@@ -83,7 +93,7 @@ in [`@skein-js/agent-protocol`](../agent-protocol) — never a reimplemented run
|
|
|
83
93
|
## Learn more
|
|
84
94
|
|
|
85
95
|
- [Agent Protocol surface](../../docs/agent-protocol.md) · [Storage](../../docs/storage.md)
|
|
86
|
-
- [skein-js overview](../../docs/index.md) · [Reuse-first architecture](../../docs/reuse.md)
|
|
96
|
+
- [skein-js overview](../../docs/index.md) · [Reuse-first architecture](../../docs/reuse.md) · [Root README](../../README.md)
|
|
87
97
|
|
|
88
98
|
## License
|
|
89
99
|
|
package/package.json
CHANGED