@theway-ai/sdk 0.1.9 → 0.1.10
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 +18 -0
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @theway-ai/sdk
|
|
2
2
|
|
|
3
|
+
## theway
|
|
4
|
+
|
|
5
|
+
[theway](https://github.com/ptlzc/theway) is a local, terminal-first AI agent
|
|
6
|
+
runtime for developer workflows. It runs inside a project as a `theway` terminal
|
|
7
|
+
client plus a `thewayd` daemon, keeps resumable sessions, inspects and edits
|
|
8
|
+
files, runs shell commands, and drives model providers including local
|
|
9
|
+
OpenAI-compatible servers.
|
|
10
|
+
|
|
11
|
+
Core capabilities:
|
|
12
|
+
|
|
13
|
+
- Resumable agent sessions with feed, history, slash commands, and multiple model providers.
|
|
14
|
+
- Filesystem and shell tools, skills, and MCP tool integration.
|
|
15
|
+
- Cron jobs, triggers, and local automation with a triage inbox for recurring-loop findings.
|
|
16
|
+
- Multi-agent DAG orchestration for running and monitoring parallel subagent graphs.
|
|
17
|
+
- A gRPC / HTTP+SSE+WS daemon protocol with typed SDKs for external clients.
|
|
18
|
+
|
|
19
|
+
## This package
|
|
20
|
+
|
|
3
21
|
Typed TypeScript SDK for the **theway** gRPC daemon (`theway --grpc` loopback server).
|
|
4
22
|
Generated from the five domain protos
|
|
5
23
|
([`proto/commands.proto`](proto/commands.proto),
|
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theway-ai/sdk",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "TypeScript SDK for
|
|
3
|
+
"version": "0.1.10",
|
|
4
|
+
"description": "Typed TypeScript SDK for theway, a terminal-first local AI agent runtime: commands, sessions, DAG orchestration, events, settings, and health over gRPC.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "git+https://github.com/ptlzc/theway.git",
|
|
9
9
|
"directory": "sdks/client"
|
|
10
10
|
},
|
|
11
|
+
"homepage": "https://github.com/ptlzc/theway",
|
|
11
12
|
"type": "module",
|
|
12
13
|
"main": "./dist/index.js",
|
|
13
14
|
"types": "./dist/index.d.ts",
|