Borrowing it
Nothing to install: this file belongs to dev-lou/PixelPilot. 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/dev-lou/PixelPilot/main/vscode/.github/instructions/uiux-routes-naming.instructions.mdgit clone --depth 1 https://github.com/dev-lou/PixelPilotWrote 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/instructions/dev-lou/pixelpilot/uiux-routes-naming)<a href="https://agentmods.dev/instructions/dev-lou/pixelpilot/uiux-routes-naming"><img src="https://agentmods.dev/badge/instructions/dev-lou/pixelpilot/uiux-routes-naming.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.02784 | $0.02784 |
| Opus 5 | $0.01392 | $0.01392 |
| Sonnet 5 | $0.00557 | $0.00557 |
| Haiku 4.5 | $0.00278 | $0.00278 |
Grade A, and why
PixelPilot uiux-routes-naming.instructions.md 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 3d 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 — 452 lines — stays where its author put it; the contents beside it link to each section on GitHub.
UI/UX Routes Naming Conventions
Professional URL and route naming patterns. Consistent, RESTful, and maintainable.
OVERVIEW
This skill covers:
- URL naming conventions (kebab-case)
- RESTful route patterns
- Named routes (no hardcoded paths)
- Route grouping and prefixes
- Framework-specific examples
URL CONVENTIONS
Use Kebab-Case
✅ Good:
/user-profile
/blog-posts
/privacy-policy
/account-settings
❌ Bad:
/userProfile (camelCase)
/user_profile (snake_case)
/UserProfile (PascalCase)
/user.profile (dot notation)
Use Nouns (Not Verbs)
✅ Good:
GET /posts (list posts)
POST /posts (create post)
GET /posts/123 (view post)
PUT /posts/123 (update post)
DELETE /posts/123 (delete post)
❌ Bad:
GET /get-posts
POST /create-post
GET /show-post/123
POST /update-post/123
POST /delete-post/123
Use Plurals for Collections
✅ Good:
/posts
/users
/categories
/products
❌ Bad:
/post
/user
/category
/product
RESTFUL CONVENTIONS
Standard CRUD Routes
| Method | URL | Action | Name |
|---|---|---|---|
| GET | /posts |
index | posts.index |
| GET | /posts/create |
create form | posts.create |
| POST | /posts |
store | posts.store |
| GET | /posts/{id} |
show | posts.show |
| GET | /posts/{id}/edit |
edit form | posts.edit |
| PUT/PATCH | /posts/{id} |
update | posts.update |
| DELETE | /posts/{id} |
destroy | posts.destroy |
Nested Resources
# Comments on a post
GET /posts/123/comments comments.index
POST /posts/123/comments comments.store
GET /posts/123/comments/456 comments.show
PUT /posts/123/comments/456 comments.update
DELETE /posts/123/comments/456 comments.destroy
Shallow Nesting (Recommended)
# Only nest where parent context is needed
GET /posts/123/comments (need post context)
POST /posts/123/comments (need post context)
# Don't nest when ID is unique
GET /comments/456 (comment ID is unique)
PUT /comments/456
DELETE /comments/456
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.
- 3d ago First seen · 452 lines · 2,784 tokens per session scan A 41d0973f94e3
PixelPilot uiux-routes-naming.instructions.md is an instructions file published in the GitHub repository dev-lou/PixelPilot (2 stars, last pushed 5mo ago), licensed MIT. It adds 2,784 tokens to every session, about $0.0139 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-09-03.
Other instructions, from other repositories
plan-forge dapr.instructions.md
Dapr patterns for .NET — building blocks, component config, sidecar architecture, multi-tenant isolation, workflows, state management, secrets.
plan-forge auth.instructions.md
.NET authentication & authorization — JWT/OIDC, policy-based auth, multi-tenant isolation, API keys, testing.
plan-forge api-patterns.instructions.md
API patterns for .NET — REST conventions, ProblemDetails, pagination, versioning, error responses.
plan-forge graphql.instructions.md
GraphQL patterns for .NET — Hot Chocolate, code-first schema, DataLoaders, authorization, multi-tenant resolvers.
plan-forge messaging.instructions.md
Messaging patterns for .NET — Dapr Pub/Sub, MassTransit, NATS, RabbitMQ, CloudEvents.
plan-forge errorhandling.instructions.md
Error handling patterns — Exception hierarchy, ProblemDetails responses, error boundaries, global exception middleware.