@nylorun/create-agent 0.3.0-beta → 0.3.1-beta

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/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.3.1-beta
4
+
5
+ ### Patch Changes
6
+
7
+ - fd24b00: Flatten Runtime agent routes to `/:id/...` and pass matching `basePath` from the Hono mount so discovery, manifests, and AG-UI resolve at `/agents/:id/...` for Studio.
8
+ - Update the tested Harness, Runtime, and Studio compatibility combination.
9
+
3
10
  ## 0.3.0-beta
4
11
 
5
12
  ### Minor Changes
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "harness": "0.12.0-beta",
3
3
  "studio": "0.4.2-beta",
4
- "runtime": "0.2.0-beta"
4
+ "runtime": "0.2.1-beta"
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "harness": "0.12.0-beta",
3
3
  "studio": "0.4.2-beta",
4
- "runtime": "0.2.0-beta"
4
+ "runtime": "0.2.1-beta"
5
5
  }
@@ -16,7 +16,10 @@ app.get("/", (c) =>
16
16
  );
17
17
 
18
18
  const runtime = new Runtime();
19
- app.route("/agents", serveAgents({ agents, runtime }));
19
+ app.route(
20
+ "/agents",
21
+ serveAgents({ agents, runtime, basePath: "/agents" })
22
+ );
20
23
 
21
24
  serve(
22
25
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nylorun/create-agent",
3
- "version": "0.3.0-beta",
3
+ "version": "0.3.1-beta",
4
4
  "description": "Create a local Nylorun Harness agent project.",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",