You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tanstack create with bun prints TanStack Intent configured and claims AGENTS.md was wired up, but the command it ran failed. No agent config is written. Deps install fine — it's just the Intent step.
◇ Installed dependencies
◇ TanStack Intent configured
◇ Route tree generated
└ Your TanStack app is ready in 'buildify-repro'.
Errors were encountered during the creation of your app:
Command "bunx --bun @tanstack/intent install" did not run successfully. Please run this manually in your project.
After that, node_modules is there, AGENTS.md isn't, and node_modules/.bin/intent points at @tanstack/devtools/bin/intent.js.
Same command inside the app:
bunx --bun @tanstack/intent install
exits immediately with @tanstack/intent is not installed. — no registry fetch.
Two things going on:
bunx is running the intent shim from @tanstack/devtools, not the real package. bunx --bun @tanstack/intent@latest install does download, then hits:
Permissions: failed: intent.skills is not configured.
tanstack createwith bun prints TanStack Intent configured and claims AGENTS.md was wired up, but the command it ran failed. No agent config is written. Deps install fine — it's just the Intent step.After that,
node_modulesis there,AGENTS.mdisn't, andnode_modules/.bin/intentpoints at@tanstack/devtools/bin/intent.js.Same command inside the app:
exits immediately with
@tanstack/intent is not installed.— no registry fetch.Two things going on:
bunx is running the
intentshim from@tanstack/devtools, not the real package.bunx --bun @tanstack/intent@latest installdoes download, then hits:Intent 0.4.0 wants a TTY to write
package.json#intent.skillson first run (feat(intent): add interactive first-run skill permission setup intent#241). create still treatsintent installas non-interactive (feat(cli): auto-install TanStack Intent during scaffolding #442).Not the same as #495 — that one is
--no-install. This happens with deps already installed.#513 uses
@tanstack/intent@latest(same asshadcn@latest) and writesintent.skills: ["@tanstack/*"]before install.@tanstack/cli0.71.0, bun 1.3.1, macOS