Skills follow the Agent Skills format.
npx skills add narevai/skillscodex plugin marketplace add narevai/skillsAfter adding the marketplace, restart Codex, open /plugins, select Narev, install and enable narev-skills, then start a new thread.
git clone https://github.com/narevai/skills ~/.claude/skills/narevInstall the narev plugin group to get all four skills.
| Skill | Purpose | When to use |
|---|---|---|
narev-starter |
Start here — picks the right skill or documentation path | Any Narev Cloud, pricing, billing, or SDK question; use when unsure |
narev-lookup-llm-pricing |
Pricing API reference — seven public pricing endpoints (reference, price, find/cheapest, calculate), errors and contracts | Live rates, per-call cost math, endpoint behavior without committing a snapshot |
narev-update-llm-pricing |
Pin pricing in-repo — patterns to snapshot live price API rows into your codebase | Freeze rates, refresh a checked-in pricing file, offline or deterministic billing |
narev-nextjs-patterns |
Next.js billing — greenfield setup (Polar, billed model, @ai-billing/nextjs UI) and brownfield retrofit (wrap existing Vercel AI SDK routes, multi-provider factories, test bypasses) |
Any Next.js App Router app with Narev usage-based billing |
- Read the Narev documentation for Cloud setup, API keys, and SDKs.
- Open your agent’s skills or slash commands and invoke
narev-starterfirst; it recommendsnarev-lookup-llm-pricingornarev-update-llm-pricingwhen the task is pricing-specific.
Example prompts:
| You say | Skill |
|---|---|
| “How does the Narev pricing API work?” | narev-lookup-llm-pricing |
| “Calculate USD for this token usage” | narev-lookup-llm-pricing |
| “Snapshot model pricing into a JSON file in my repo” | narev-update-llm-pricing |
| “Which Narev skill should I use for billing middleware?” | narev-starter |
| “Set up a new Next.js app with Narev billing and usage dashboard” | narev-nextjs-patterns |
| “Add Narev billing to my existing Next.js chat route” | narev-nextjs-patterns |
.
├── .agents/
│ └── plugins/
│ └── marketplace.json
├── .codex-plugin/
│ └── plugin.json
├── .claude-plugin/
│ └── marketplace.json
├── assets/
│ └── narev-logo.png
├── skills/
│ ├── narev-starter/
│ ├── narev-nextjs-patterns/
│ ├── narev-lookup-llm-pricing/
│ └── narev-update-llm-pricing/
├── AGENTS.md
├── CLAUDE.md
└── README.md
Missing a skill? Open an issue.
MIT