# Nyxory skills

Nyxory is agent-native hosting: one API call gives your coding agent a live URL and persistent identity.

## Quickstart

### CLI

```bash
curl -fsSL https://get.nyxory.live | sh
nyx create https://github.com/acme/hello-world --ref main
nyx status app_x9f2
```

### curl

```bash
curl -X POST https://api.nyxory.live/v1/apps \
  -H "Content-Type: application/json" \
  -d '{"vcs_url":"https://github.com/acme/hello-world","ref":"main"}'
```

### SDK

```javascript
import { Nyxory } from "@nyxory/agent";

const nyx = new Nyxory();
const app = await nyx.apps.create({
  vcs_url: "https://github.com/acme/hello-world",
  ref: "main",
});

console.log(app.url, app.anon_key);
```

## API

- `POST /v1/apps` - Create and deploy from VCS in one call.
- `GET /v1/apps/:id` - Fetch app status, URL, and metadata.
- `POST /v1/apps/:id/redeploy` - Trigger a new deployment.
- `POST /v1/apps/:id/claim` - Adopt app into a free or paid account.
- `DELETE /v1/apps/:id` - Delete app and release resources.

## Auth

- Unauthenticated `POST /v1/apps` mints an `anon_key` that becomes the app identity.
- Send `Authorization: Bearer <anon_key>` for follow-up app operations.
- Signed-up users can issue `pro_key` and authenticate agents directly.

## Pricing

- **Free**: EUR 0, simple apps with 7-day uptime, 2 deployments included, and 1 GB RAM included.
- **Builder**: EUR 25/month, 3 deployments included, 2 GB RAM included, private VCS, custom domains, and DevOps-agent-provisioned middleware.
- **Pro**: EUR 100/month, 8 deployments included, 8 GB RAM included, and priority agent support with human escalation.
- **Enterprise**: contact us for SLA, governance, SSO/SCIM, and private VCS.

See details on [/pricing](/pricing).

## Links

- [/agents](/agents)
- [/pricing](/pricing)
- [/openapi.json](/openapi.json)
