@theway-ai/plugin-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 +11 -0
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @theway-ai/plugin-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. Extension authors extend that runtime without
|
|
10
|
+
rebuilding the daemon.
|
|
11
|
+
|
|
12
|
+
## This package
|
|
13
|
+
|
|
3
14
|
TypeScript authoring SDK for theway runtime extensions. It supplies the single public host API, checked-in JSON Schemas, and the same `defineExtension` descriptor used by the daemon's isolated QuickJS host. The host and SDK expose no ABI version selector.
|
|
4
15
|
|
|
5
16
|
## Install
|
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theway-ai/plugin-sdk",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "TypeScript authoring SDK for
|
|
3
|
+
"version": "0.1.10",
|
|
4
|
+
"description": "TypeScript authoring SDK for building runtime extensions for theway, a terminal-first local AI agent runtime.",
|
|
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/plugin"
|
|
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",
|