llms.txt Content
# Sylphx
> Sylphx is a developer platform (PaaS + BaaS) for shipping production apps on a single stack: Git-to-URL deploys, managed Postgres / cache / object storage / search / realtime, scoped service tokens, OIDC federation, and a first-class CLI. Every resource is addressed by a TypeID (e.g. `proj_01hx…`, `env_01hx…`, `dpl_01hx…`). Every hostname is an immutable DNS-safe slug (e.g. `bold-river-a1b2c3.sylphx.app`).
This file is for AI coding agents and humans who want to orient fast. Paste the URL into Claude/Cursor/Zed and ask whatever you want. For the expanded public context, fetch `https://sylphx.com/llms-full.txt`.
## Start here
- [Overview](https://sylphx.com/docs): what Sylphx is, how it differs from Vercel / Railway / Render.
- [Quickstart](https://sylphx.com/docs/quickstart): install CLI, log in, deploy in < 3 minutes.
- [CLI install + quickstart](https://sylphx.com/docs/installation): install the `sylphx` command and deploy your first app.
- [Management API](https://sylphx.com/docs/api-reference): REST over HTTPS. OpenAPI at [openapi.json](https://api.sylphx.com/v1/openapi.json).
- [Expanded public context](https://sylphx.com/llms-full.txt): audited customer-facing docs for single-fetch ingestion.
Operator and agent workflows use the `sylphx` CLI plus the Management API. Deployed customer apps use `@sylphx/sdk` against the BaaS plane.
## Auth — three modes
Management API base URL: `https://api.sylphx.com/v1`.
1. **OAuth / user session** — browser-backed interactive flow, CLI and web dashboard.
```
sylphx login
# opens browser → stores OAuth access + refresh pair in ~/.sylphx/config.json
```
Access tokens are 15-minute RS256 JWTs with `aud=platform`; the CLI auto-refreshes.
2. **Service tokens** — scoped, revocable, for CI servers and long-running workloads.
```
sylphx tokens create deploy-bot --scopes project:deploy --expires-in 90
# plaintext is printed ONCE; store it immediately
curl -H "Authorization: