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
* fix(install): symlink into an on-PATH dir so `insta` runs immediately
Root cause of 'command not found: insta' after the one-liner: we installed
only to ~/.insta/bin (never on PATH), so the recommended
'curl … | sh && insta project create' chain called insta in a shell whose
PATH the piped script can't change. Railway avoids this by installing where
PATH already looks (and sudo-escalating if needed). Now: after installing to
~/.insta/bin, symlink into a writable on-PATH dir (/usr/local/bin, else
~/.local/bin) so bare 'insta' resolves in the same shell with no reload;
fall back to profile-append + an explicit this-shell export only when no
such dir exists. Verified live: fresh install → 'command -v insta' resolves,
v0.0.13, no manual step.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01GMbAe5K1RfwaAcge5inX7P
* fix(setup): Railway-clean onboarding output — summarize skill install, don't stream it
The agent one-liner (curl agents.instacloud.com | sh) shelled `insta setup
agent` out to `npx skills add …` and streamed its clack UI verbatim: a
frame-by-frame clone spinner, an 'Installing to all 73 agents' banner, a
70-line install-path box, and a third-party 'Security Risk Assessment' that
flags our OWN first-party skill as 'Critical Risk'. Next to Railway's two
clean ✓ lines it read noisy and alarming.
Now we CAPTURE the tool's output and print one Railway-style summary line
naming the well-known agents with the long tail rolled into '+N more':
setting up coding-agent skills … (~20s)
✓ Agent skills — Universal (.agents), Claude Code, Windsurf, Factory Droid, Goose, Aider, +47 more
every coding agent on this machine now knows InstaCloud (review skills before use …)
On failure we still surface the real error (captured tail, minus the expected
no-global-support noise) plus the manual command. Also drops a duplicate
'setting up coding-agent skills …' echo in install.sh. Tests cover the
summarizer against the tool's real boxed output format; 75/75 green.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01GMbAe5K1RfwaAcge5inX7P
---------
Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
0 commit comments