@agentic-surfaces/server 0.1.23 → 0.1.24

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 +7 -0
  2. package/package.json +17 -3
package/README.md ADDED
@@ -0,0 +1,7 @@
1
+ # @agentic-surfaces/server
2
+
3
+ The dashboard server for [agentic-surfaces](https://github.com/dalebaldwin/agentic-surfaces) — an HTTP + SSE API (`/api/workflows`,
4
+ `/api/run`, `/api/events`, `/api/cache`, …) plus the bundled web UI (workflow graph, live runs,
5
+ agent activity, cache inspector). Started by the CLI's `--ui` flag.
6
+
7
+ **Repo & docs:** https://github.com/dalebaldwin/agentic-surfaces · MIT licensed.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentic-surfaces/server",
3
- "version": "0.1.23",
3
+ "version": "0.1.24",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "publishConfig": {
@@ -18,11 +18,25 @@
18
18
  "flow-server": "dist/serve.js"
19
19
  },
20
20
  "files": [
21
- "dist"
21
+ "dist",
22
+ "README.md"
22
23
  ],
23
24
  "dependencies": {
24
- "@agentic-surfaces/core": "0.1.23"
25
+ "@agentic-surfaces/core": "0.1.24"
25
26
  },
27
+ "repository": {
28
+ "type": "git",
29
+ "url": "git+https://github.com/dalebaldwin/agentic-surfaces.git",
30
+ "directory": "packages/server"
31
+ },
32
+ "homepage": "https://github.com/dalebaldwin/agentic-surfaces#readme",
33
+ "bugs": "https://github.com/dalebaldwin/agentic-surfaces/issues",
34
+ "keywords": [
35
+ "agentic-surfaces",
36
+ "workflow",
37
+ "ai-agents",
38
+ "claude"
39
+ ],
26
40
  "scripts": {
27
41
  "build": "tsc -b",
28
42
  "test": "vitest run --root ../.."