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/narev| Skill | Purpose | When to use |
|---|---|---|
narev |
Router — picks the right skill or documentation path | Any Narev Cloud, pricing, billing, or SDK question; start here when unsure |
narev-lookup-llm-pricing |
Pricing API reference — GET catalog, POST 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 the catalog into your codebase | Freeze rates, refresh a checked-in pricing file, offline or deterministic billing |
narev-nextjs-patterns |
Next.js framework patterns — App Router route handlers, Vercel AI SDK billing middleware, destinations, and usage tags | Add Narev usage-based AI billing to Next.js apps that call LLM providers |
- Read the Narev documentation for Cloud setup, API keys, and SDKs.
- Open your agent’s skills or slash commands and invoke
narevfirst; it routes tonarev-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 |
| “Add Narev billing to my Next.js chat route” | narev-nextjs-patterns |
.
├── .agents/
│ └── plugins/
│ └── marketplace.json
├── .codex-plugin/
│ └── plugin.json
├── .claude-plugin/
│ └── marketplace.json
├── assets/
│ └── narev-logo.png
├── skills/
│ ├── core/
│ │ └── narev/ # Router skill
│ ├── frameworks/
│ │ └── narev-nextjs-patterns/ # Next.js App Router billing patterns
│ └── pricing/
│ ├── narev-lookup-llm-pricing/
│ └── narev-update-llm-pricing/
├── AGENTS.md
├── CLAUDE.md
└── README.md
Missing a skill? Open an issue.
MIT