qauth: Skill for Claude Code

.claude/skills/nx-project/SKILL.md

nx-project is a skill for Claude Code from qauth-labs/qauth. It costs 30 tokens per session (820 once invoked), scanned A, original, Apache-2.0.

A set of rules and commands for creating and organizing Nx projects, a workspace tool for managing multiple applications and libraries in one codebase.

In plain words
What is it for?
Creating Nx applications and libraries, placing libraries in the right domain folders, and enforcing which projects may depend on one another.
Why use it?
It keeps project names, folders, tags, and allowed dependencies consistent, reducing accidental links between unrelated parts of the codebase.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is qauth-labs/qauth's own configuration. It tells Claude Code how to work on qauth itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything qauth configures →

Reuse

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.

Copy the file
curl -O https://raw.githubusercontent.com/qauth-labs/qauth/main/.claude/skills/nx-project/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/qauth-labs/qauth

Made for: Claude Code.

Wrote 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.

agentmods badge for nx-project

README.md
[![agentmods](https://agentmods.dev/badge/skills/qauth-labs/qauth/nx-project.svg)](https://agentmods.dev/skills/qauth-labs/qauth/nx-project)
Your own site
<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>
Per session 30 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 820 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 6d ago against content hash 22825b7e069c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

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.

.claude/skills/nx-project/SKILL.md · 104 lines

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

Read the full file on GitHub · 104 lines

Changes

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.

  1. 6d ago First seen · 104 lines · 30 tokens per session scan A 22825b7e069c

Subscribe to this mod's changes

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.

Related

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.

PramodDutta/qaskills · 31 tokens

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…

yultyyev/better-auth-firebase-auth · 82 tokens

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.

is-bo/fullstack-forge-skill · 47 tokens

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…

benavlabs/crudauth · 188 tokens

flow-nexus-platform

Comprehensive Flow Nexus platform management - authentication, sandboxes, app deployment, payments, and challenges.

proffesor-for-testing/agentic-qe · 24 tokens

nextjs-authentication

Secure token storage (HttpOnly Cookies) and Middleware patterns. Use when implementing authentication, secure session storage, or auth middleware in Next.js.

FilippoDeSilva/skills · 33 tokens