Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .claude/skills/developing-insta-cli/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,13 @@ npx tsx src/index.ts --help # run the CLI from source
| `npx insta@latest` behind the GH release | `publish-npm` job failed (OIDC trust/config?) — see step 4 |
| CLI hits the wrong server in tests | Persisted `~/.insta/config.json` apiUrl; set `INSTA_API_URL` (≥0.0.7) or move the config aside |

## agents.instacloud.com

The onboarding domain is a CloudFront distribution edge-caching `agents.sh` from this repo's
main branch (origin `raw.githubusercontent.com`, path rewrite → `/agents.sh`). After editing
`agents.sh`, the edge can serve the old copy for up to ~24h — invalidate it:
`aws cloudfront create-invalidation --distribution-id <the agents distro> --paths '/*'`.

## Keep this skill true

Before you finish work in this repo: if anything you did or discovered changed the flows above —
Expand Down
5 changes: 4 additions & 1 deletion agents.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
#
# InstaCloud agent setup installer — the one-liner for coding agents:
#
# curl -fsSL https://raw.githubusercontent.com/InsForge/insta-cli/main/agents.sh | sh
# curl -fsSL agents.instacloud.com | sh
#
# (agents.instacloud.com is a CloudFront edge cache of this file — same bytes, rate-limit-proof.
# The raw fallback also works: curl -fsSL https://raw.githubusercontent.com/InsForge/insta-cli/main/agents.sh | sh)
#
# Thin shim (the Railway agents.sh pattern): exactly equivalent to
#
Expand Down
Loading