create-tsrouter-app 0.54.9 → 0.54.12

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 (3) hide show
  1. package/CHANGELOG.md +28 -0
  2. package/README.md +4 -16
  3. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # create-tsrouter-app
2
2
 
3
+ ## 0.54.12
4
+
5
+ ### Patch Changes
6
+
7
+ - Auto-generated changeset from semantic commits on main.
8
+
9
+ - fix(ci): use direct changeset publish args (b6f5ff5)
10
+
11
+ - Updated dependencies []:
12
+ - @tanstack/cli@0.61.1
13
+ - @tanstack/create@0.62.3
14
+
15
+ ## 0.54.11
16
+
17
+ ### Patch Changes
18
+
19
+ - Updated dependencies [[`78e3734`](https://github.com/TanStack/cli/commit/78e373444c5bcaf2ab59d2142e8b8b0cab415bbb), [`f33f8d4`](https://github.com/TanStack/cli/commit/f33f8d4954d9ad6771871257a4e1e58feee9b34d), [`16fcd67`](https://github.com/TanStack/cli/commit/16fcd674c0f74c1c62cf97b0042060d5a51981ef)]:
20
+ - @tanstack/cli@0.61.0
21
+ - @tanstack/create@0.62.2
22
+
23
+ ## 0.54.10
24
+
25
+ ### Patch Changes
26
+
27
+ - Updated dependencies [[`b54e202`](https://github.com/TanStack/cli/commit/b54e202ce56f2aa78a416634155bc22f0cb5cc46)]:
28
+ - @tanstack/create@0.62.1
29
+ - @tanstack/cli@0.60.1
30
+
3
31
  ## 0.54.9
4
32
 
5
33
  ### Patch Changes
package/README.md CHANGED
@@ -134,25 +134,13 @@ pnpm dlx create-tsrouter-app@latest --list-add-ons --framework solid --template
134
134
 
135
135
  Will get you a list of all available add-ons for Solid that are compatible with the File Router.
136
136
 
137
- ## MCP (Model Context Protocol) Support (experimental)
137
+ ## Agent Usage
138
138
 
139
- You can launch the `create-tsrouter-app` CLI with the `--mcp` flag to enable MCP support. Use this in your MCP enabled IDE to allow the Agent model to generate TanStack Router applications.
139
+ The CLI no longer includes an MCP server. Use direct CLI introspection commands instead:
140
140
 
141
141
  ```bash
142
- pnpm dlx create-tsrouter-app@latest --mcp
143
- ```
144
-
145
- Here is the JSON configuration for MCP support in many MCP clients.
146
-
147
- ```json
148
- {
149
- "mcpServers": {
150
- "create-tsrouter-app": {
151
- "command": "pnpm dlx",
152
- "args": ["create-tsrouter-app@latest", "--mcp"]
153
- }
154
- }
155
- }
142
+ pnpm dlx create-tsrouter-app@latest --list-add-ons
143
+ pnpm dlx create-tsrouter-app@latest --addon-details tanstack-query
156
144
  ```
157
145
 
158
146
  # Contributing
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-tsrouter-app",
3
- "version": "0.54.9",
3
+ "version": "0.54.12",
4
4
  "description": "Tanstack Application Builder",
5
5
  "bin": "./dist/index.js",
6
6
  "type": "module",
@@ -24,8 +24,8 @@
24
24
  "author": "Jack Herrington <jherr@pobox.com>",
25
25
  "license": "MIT",
26
26
  "dependencies": {
27
- "@tanstack/cli": "0.60.0",
28
- "@tanstack/create": "0.62.0"
27
+ "@tanstack/cli": "0.61.1",
28
+ "@tanstack/create": "0.62.3"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@types/node": "^22.13.4",