skein-js 0.1.0 → 0.2.0

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.
Files changed (2) hide show
  1. package/README.md +6 -6
  2. package/package.json +9 -8
package/README.md CHANGED
@@ -57,12 +57,12 @@ npx skein dev --port 2024
57
57
 
58
58
  ### Commands
59
59
 
60
- | Command | What it does | Key flags |
61
- | ------------------ | -------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- |
62
- | `skein dev` | In-process dev server, hot reload, no Docker. | `-p, --port` (2024) · `--host` (127.0.0.1) · `--no-reload` · `--no-persist` · `--store memory\|postgres` · `--queue memory\|redis` |
63
- | `skein up` | Self-hosted stack via Docker Compose (app + Postgres + Redis). | `-p, --port` (8123) · `--host` (0.0.0.0) |
64
- | `skein build` | Build a deployable Docker image from the config. | `-t, --tag` (defaults to the project dir name) |
65
- | `skein dockerfile` | Emit a standalone Dockerfile (stdout by default). | `-o, --output <path>` |
60
+ | Command | What it does | Key flags |
61
+ | ------------------ | -------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- |
62
+ | `skein dev` | In-process dev server, hot reload, no Docker. | `-p, --port` (2024) · `--host` (127.0.0.1) · `--no-reload` · `--no-persist` · `--store memory\|postgres` · `--queue memory\|redis` · `-v, --verbose` |
63
+ | `skein up` | Self-hosted stack via Docker Compose (app + Postgres + Redis). | `-p, --port` (8123) · `--host` (0.0.0.0) |
64
+ | `skein build` | Build a deployable Docker image from the config. | `-t, --tag` (defaults to the project dir name) |
65
+ | `skein dockerfile` | Emit a standalone Dockerfile (stdout by default). | `-o, --output <path>` |
66
66
 
67
67
  All commands take `-c, --config <path>` (default `langgraph.json`).
68
68
 
package/package.json CHANGED
@@ -1,19 +1,20 @@
1
1
  {
2
2
  "name": "skein-js",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "The skein-js CLI — a drop-in replacement for the LangGraph CLI (dev/up/build/dockerfile).",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Maina Wycliffe <wmmaina7@gmail.com>",
7
- "homepage": "https://github.com/mainawycliffe/skein/tree/main/packages/cli#readme",
7
+ "homepage": "https://github.com/mainawycliffe/skein-js/tree/main/packages/cli#readme",
8
8
  "repository": {
9
9
  "type": "git",
10
- "url": "git+https://github.com/mainawycliffe/skein.git",
10
+ "url": "git+https://github.com/mainawycliffe/skein-js.git",
11
11
  "directory": "packages/cli"
12
12
  },
13
13
  "bugs": {
14
- "url": "https://github.com/mainawycliffe/skein/issues"
14
+ "url": "https://github.com/mainawycliffe/skein-js/issues"
15
15
  },
16
16
  "keywords": [
17
+ "typescript",
17
18
  "langgraph",
18
19
  "cli",
19
20
  "agent-protocol",
@@ -47,10 +48,10 @@
47
48
  "@langchain/langgraph-checkpoint-postgres": "^1.0.4",
48
49
  "commander": "~13.1.0",
49
50
  "vite": "^8.1.0",
50
- "@skein-js/config": "0.1.0",
51
- "@skein-js/express": "0.1.0",
52
- "@skein-js/core": "0.1.0",
53
- "@skein-js/runtime": "0.1.0"
51
+ "@skein-js/core": "0.2.0",
52
+ "@skein-js/config": "0.2.0",
53
+ "@skein-js/express": "0.2.0",
54
+ "@skein-js/runtime": "0.2.0"
54
55
  },
55
56
  "peerDependencies": {
56
57
  "@langchain/langgraph": "^1.4.0"