Borrowing it
Nothing to install: this file belongs to qauth-labs/qauth. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/qauth-labs/qauth/main/.claude/skills/nx-project/SKILL.mdgit clone --depth 1 https://github.com/qauth-labs/qauthWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/qauth-labs/qauth/nx-project)<a href="https://agentmods.dev/skills/qauth-labs/qauth/nx-project"><img src="https://agentmods.dev/badge/skills/qauth-labs/qauth/nx-project.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00030 | $0.00820 |
| Opus 5 | $0.00015 | $0.00410 |
| Sonnet 5 | $0.00006 | $0.00164 |
| Haiku 4.5 | $0.00003 | $0.00082 |
Grade A, and why
nx-project scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 104 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Nx Project Management
Project Naming Convention
- Applications: Direct name (e.g.,
auth-server,migration-runner) - Libraries:
{domain}-{name}format (e.g.,server-jwt,infra-db,shared-errors)
Library Domains
| Domain | Path | Tag |
|---|---|---|
fastify/plugins |
libs/fastify/plugins/{name} |
scope:fastify-plugin |
infra |
libs/infra/{name} |
scope:infra |
server |
libs/server/{name} |
scope:server |
shared |
libs/shared/{name} |
scope:shared |
Module Boundaries
| Source Tag | Only Depend On |
|---|---|
scope:shared |
scope:shared |
type:testing |
scope:shared, scope:infra, scope:server, scope:fastify |
scope:infra |
scope:infra, scope:shared |
scope:server |
scope:server, scope:shared |
scope:fastify |
scope:fastify, scope:server, scope:infra, scope:shared |
scope:app |
scope:fastify, scope:shared, scope:server-config |
Creating New Libraries
ALWAYS use Nx generators. NEVER create libraries manually.
pnpm nx generate @nx/js:library \
--name={name} \
--directory=libs/{domain}/{name} \
--projectNameAndRootFormat=as-provided \
--importPath=@qauth-labs/{domain}-{name} \
--bundler=none \
--linter=none \
--unitTestRunner=none \
--no-interactive
Examples
# Server library
pnpm nx generate @nx/js:library \
--name=auth \
--directory=libs/server/auth \
--projectNameAndRootFormat=as-provided \
--importPath=@qauth-labs/{domain}-{name} \
--bundler=none \
--linter=none \
--unitTestRunner=none \
--no-interactive
# Fastify plugin
pnpm nx generate @nx/js:library \
--name=auth \
--directory=libs/fastify/plugins/auth \
--projectNameAndRootFormat=as-provided \
--importPath=@qauth-labs/{domain}-{name} \
--bundler=none \
--linter=none \
--unitTestRunner=none \
--no-interactive
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 6d ago First seen · 104 lines · 30 tokens per session scan A 22825b7e069c
nx-project is a skill published in the GitHub repository qauth-labs/qauth (24 stars, last pushed 6d ago), licensed Apache-2.0. It adds 30 tokens to every session and 820 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
Clerk Auth Testing
Testing patterns for Clerk authentication including sign-in flow testing, protected route testing, webhook verification, middleware testing, and organization-based access control.
firebase-auth-better-auth
Add Firebase Authentication (Phone SMS OTP, Google Sign-In, Email/Password) to a Better Auth app using the better-auth-firebase-auth plugin. Use when adding phone authentication to Better Auth without Twilio, integrating Firebase Auth with Better Auth sessions, working with the better-auth-firebase-auth package, or…
forge-feature
Own the full feature lifecycle (frame, plan, implement, check, done, resume, accept-risk, abandon) with CLI-enforced statuses. Use for building, continuing, or shipping a specific feature in build mode.
crudauth
Use when building or modifying authentication in a FastAPI app with crudauth (the crudauth PyPI package) — covers CRUDAuth, the AuthUserMixin / makeauthidentity user model, IdentityConfig, currentuser(...) gates, session + bearer transports, OAuth (Google/GitHub), email verification / password reset / change, custom…
flow-nexus-platform
Comprehensive Flow Nexus platform management - authentication, sandboxes, app deployment, payments, and challenges.
nextjs-authentication
Secure token storage (HttpOnly Cookies) and Middleware patterns. Use when implementing authentication, secure session storage, or auth middleware in Next.js.