27 Commits

Author SHA1 Message Date
pratikbin 20232dc697 feat(asdf): add asdf version manager skill (#24)
Covers asdf 0.16+ (the Go rewrite) for developers, CI/CD, and agents:
.tool-versions semantics, version resolution, shims, plugin sourcing,
CI/container recipes, troubleshooting, migration, and plugin authoring.

SKILL.md carries the mental model and the common path; six references
hold the depth (commands, setup, ci, troubleshooting, migration,
plugins) so only the relevant file is loaded per task.

Commands and flags were verified against internal/cli/cli.go and a live
0.18.0 binary rather than the docs, which are stale in places: 0.15-era
global/local/shell are documented as removed, and use_release_candidates
is noted as inert since it is commented out in the 0.16+ config struct.
2026-09-15 13:26:19 +05:30
pratikbin fec0144135 fix(createos-deploy): suffix name, await warm-up (#23)
Unique project names are global across the platform, not per wallet, so a
name another account holds fails as an opaque 5xx instead of a 409. The
wallet-scoped GET /agent/projects check cannot see it. Always append a
random suffix, and name that cause in the 5xx message.

Platform status "ready" precedes the container binding its port, so the
single endpoint probe raced the boot and reported a spurious 404. Probe
every ten seconds for up to two minutes, and treat a 404 that outlives
the window as the app's own answer rather than a failure.
2026-09-10 11:04:56 +05:30
Saurabh e8bbcdc6e7 feat(createos-deploy): add MPP and x402 payments (#22) 2026-09-08 11:41:59 +05:30
pratikbin 05d5631c22 feat(createos-deploy): ship runnable deploy script (#21)
The skill only had a TypeScript sample. Using it meant creating a
scratchpad, installing viem, and rewriting the sample before deploying.
The sample also hardcoded a two-file upload, so the file list had to be
written by hand.

Add deploy.mjs plus a pinned package.json, and fix the gaps found while
deploying a real Go project with this skill:

- Collect files with git ls-files instead of by hand. It honours
  .gitignore, so build output and node_modules drop out with no list.
- Filter secrets. An untracked .env is not ignored by git, so it reached
  the upload. That file usually holds the wallet key paying for the
  deploy.
- Filter agent and editor tooling. In a six-file Go project, .agents/
  added 39 files and grew the upload from 8 KB to 649 KB.
- Require --port. A wrong port only shows after payment: the deploy
  reports ready and the endpoint answers nothing.
- Gate the payment behind --yes, and print the price first. The floor is
  $0.50 but a real quote came to $1.81.
- Check the endpoint after ready, so a wrong port fails loudly.
- List existing projects, to name what a credit-sharing warning risks.

Docs: document the git collection step, port discovery, the price gate,
and that this gateway ignores createos.json. One Go project declared
node:20, reactjs-spa, and port 80 for a server listening on 8080.

Redeploying under an existing uniqueName stays an open question. It is
flagged as unverified rather than guessed, because names are validated
only after payment.

viem is pinned to 2.55.19, the current latest stable. Lock files stay
untracked: the exact pin already fixes the version, and a lock file only
creates churn when the skill is copied into a project.
2026-08-26 15:35:09 +05:30
jagdish c81b3e9725 Reapply "chore: update Railway skill (#19)"
This reverts commit cac7864df4.
2026-08-25 16:37:42 +05:30
pratikbin cac7864df4 Revert "chore: update Railway skill (#19)"
This reverts commit 7a3293e79c.
2026-08-25 12:54:42 +05:30
pratikbin b7b88aaae8 fix: improve createos deploy 2026-08-19 14:58:47 +05:30
Bhautik 7a3293e79c chore: update Railway skill (#19) 2026-05-20 09:01:15 +05:30
Bhautik 1822466320 chore: fix intendation (#18) 2026-05-20 08:51:33 +05:30
pratikbin 46063b2717 feat: claude to codex migration skills (#16) 2026-05-18 11:44:58 +05:30
muku314115 9776498d7b ditto 2026-04-30 11:53:53 +05:30
muku314115 59df08ed03 manual cleanup 2026-04-30 11:53:53 +05:30
muku314115 01ac7965e5 inflow integration skill 2026-04-30 11:53:53 +05:30
Pradyum Singh 261544c46e Nodeops auth (#14)
* feat(nodeops-auth): add NodeOps PKCE OAuth authentication setup for Next.js

* feat(nodeops-auth): update API route creation steps for NodeOps integration

* feat(nodeops-auth): add Docker deployment instructions and environment variable setup

* feat(nodeops-auth): enhance Docker deployment instructions and environment variable handling

* feat(nodeops-auth): enhance Docker deployment instructions for CreateOS and add runtime config handling

* feat(nodeops-auth): update Dockerfile instructions for CreateOS compatibility and clarify env var handling
2026-04-22 15:49:47 +05:30
Pradyum Singh 3219c2f1bf Nodeops auth (#13)
* feat(nodeops-auth): add NodeOps PKCE OAuth authentication setup for Next.js

* feat(nodeops-auth): update API route creation steps for NodeOps integration

* feat(nodeops-auth): add Docker deployment instructions and environment variable setup

* feat(nodeops-auth): enhance Docker deployment instructions and environment variable handling

* feat(nodeops-auth): enhance Docker deployment instructions for CreateOS and add runtime config handling
2026-04-22 14:52:44 +05:30
Pradyum Singh 11cbe693ed Nodeops auth (#12)
* feat(nodeops-auth): add NodeOps PKCE OAuth authentication setup for Next.js

* feat(nodeops-auth): update API route creation steps for NodeOps integration

* feat(nodeops-auth): add Docker deployment instructions and environment variable setup

* feat(nodeops-auth): enhance Docker deployment instructions and environment variable handling
2026-04-22 12:57:14 +05:30
Naman 5a2fada0f1 feat: migration skill family + URL audit (.createos.io → .createos.nodeops.network) (#11)
* feat: add migration skill family; fix legacy .createos.io domain

Migration skill family (new):
- skills/vercel-to-createos — live, end-to-end tested against CreateOS
  MCP. CreateProject (Pattern A: useBuildAI; Pattern B: explicit
  commands) and CreateProjectEnvironment shapes verified.
- skills/{netlify,railway,heroku,render,flyio}-to-createos — reserved
  stubs routing users to concierge migration until they ship.
- MIGRATIONS.md — category index at repo root (flat layout because the
  skills CLI does not resolve nested category paths).
- README.md — adds vercel-to-createos row + migration section.
- skills/createos/SKILL.md — "See also" cross-link to migration family.

URL audit (existing skill):
- Replaced legacy .createos.io domain (DNS unreachable) with current
  .createos.nodeops.network across createos/SKILL.md, references/
  api-reference.md, references/deployment-patterns.md, and scripts/
  quick-deploy.sh.

Known issues flagged in PR body:
- https://createos.nodeops.network/migrate currently 404s.
- Stray skills/SKILL.md (untracked, pre-existing) deliberately not
  included in this commit.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

* fix(migrate): swap /migrate 404 URL for mailto:business@nodeops.xyz

The concierge migration URL referenced throughout the migration skill
family (https://createos.nodeops.network/migrate) currently 404s. Until
the landing page exists, route users to the business inbox instead.

Affects 15 references across 8 tracked files (vercel + 5 stubs, plus
MIGRATIONS.md and the createos See also section).

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

* fix(createos): MCP endpoint path is /mcp not /sse in quick-deploy.sh

One-off inconsistency caught by @pratikbin in PR review. Every other
reference in the createos skill (SKILL.md, config.json,
deployment-patterns.md) already uses /mcp — this was the lone holdout.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

---------

Co-authored-by: Naman <naman307@Namans-MacBook-Pro.local>
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-20 15:41:59 +05:30
Saurabh a4b93598a7 chore: update skill name 2026-04-13 12:08:30 +05:30
Saurabh 26cc2c1c21 feat: add SKILL.md, api-reference.md, and example.md for CreateOS deployment (#10) 2026-04-10 23:29:58 +05:30
Pradyum Singh ca5404bd18 feat: update to use 2 seperate path for auth instead of one (#9)
* feat(nodeops-auth): add NodeOps PKCE OAuth authentication setup for Next.js

* feat(nodeops-auth): update API route creation steps for NodeOps integration
2026-04-09 16:08:44 +05:30
Pradyum Singh e9c181b35e feat(nodeops-auth): add NodeOps PKCE OAuth authentication setup for Next.js (#8) 2026-04-08 12:09:20 +05:30
Sid-NodeOps a6dfc11ed7 Revert "createos-fullstack-skills" (#6)
* createos-fullstack-skills (#3)

* createos-fullstack-skills (#4)

* createos-fullstack-skills (#5)

* Revert "createos-fullstack-skills (#5)"

This reverts commit 95b75eda96.
2026-04-06 13:13:42 +05:30
pratikbin b95d993851 createos-fullstack-skills (#4) 2026-02-19 16:35:27 +05:30
naman485 773aa1177c refactor(createos): optimize skill for Anthropic best practices (#1)
- Reduce SKILL.md from ~1230 to 336 lines (73% reduction)
- Fix hardcoded URLs - now extract from API responses
- Add allowed-tools to frontmatter
- Condense description to ~360 chars (from ~1015)
- Move detailed docs to references/core-skills.md
- Add references/troubleshooting.md for error handling
- Add tests/validate-skill.sh for skill validation
- Update scripts to parse actual URLs from API responses

Follows Anthropic's "Complete Guide to Building Skills for Claude":
- Progressive disclosure with 3-tier loading
- No content duplication between SKILL.md and references
- Imperative instruction style
- Scripts referenced for REST API usage

Co-authored-by: Naman <naman307@Namans-MacBook-Pro.local>
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-12 12:19:00 +05:30
pratikbin e3b032266a docs: document createos api key requirement 2026-02-09 13:02:07 +05:30
pratikbin 567c7ff6fa fix(createos): align scripts with API envelope and upload endpoints 2026-02-09 12:29:40 +05:30
pratikbin b525f92b9d feat: initial commit 2026-02-09 11:52:01 +05:30