@taujs/create-taujs 0.5.0 → 0.7.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/dist/index.js +3 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -26,12 +26,12 @@ function generateClaudeMd() {
26
26
 
27
27
  This project runs a \u03C4js MCP server (\`taujs-mcp\`, wired in \`.mcp.json\`). **Prefer its
28
28
  tools over reading \`taujs.config.ts\` or server internals by hand** \u2014 they answer from the
29
- emitted request graph and live request traces:
29
+ emitted request graph and live request episodes:
30
30
 
31
31
  - Start with \`taujs_overview\`; use \`taujs_list_routes\` / \`taujs_get_route\` /
32
32
  \`taujs_explain_route\` for structure.
33
33
  - \`taujs_who_calls_service\` maps route \u2192 service edges (labelled declared vs observed).
34
- - Live behaviour: \`taujs_get_recent_traces\` \u2192 \`taujs_get_trace\` \u2192 \`taujs_get_trace_logs\`
34
+ - Live behaviour: \`taujs_get_recent_episodes\` \u2192 \`taujs_get_episode\` \u2192 \`taujs_get_episode_logs\`
35
35
  (requires the dev server: \`pnpm dev\`). \`taujs_doctor\` summarises problems.
36
36
 
37
37
  Tool responses cite staleness and label every joined fact's source. Field values in
@@ -433,7 +433,7 @@ function generatePackageJson(projectName, framework) {
433
433
  }
434
434
  function generateBuildTs() {
435
435
  return `import path from "node:path";
436
- import { taujsBuild } from "@taujs/server";
436
+ import { taujsBuild } from "@taujs/server/build";
437
437
  import config from "./taujs.config.ts";
438
438
 
439
439
  await taujsBuild({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taujs/create-taujs",
3
- "version": "0.5.0",
3
+ "version": "0.7.0",
4
4
  "description": "Scaffold a new τjs application",
5
5
  "author": "Aoede <taujs@aoede.uk.net> (https://www.aoede.uk.net)",
6
6
  "homepage": "https://taujs.dev/",