PixelPilot: Instructions file for GitHub Copilot

vscode/.github/instructions/uiux-routes-naming.instructions.md

PixelPilot uiux-routes-naming.instructions.md is an instructions file for GitHub Copilot from dev-lou/PixelPilot. It costs 2,784 tokens per session, scanned A, original, MIT.

A guide to naming website URLs and application routes consistently. It explains kebab-case URLs and REST conventions, where HTTP methods describe actions on named resources.

In plain words
What is it for?
Use it when designing routes for pages, collections, and create, read, update, and delete operations.
Why use it?
Consistent route names make links and APIs easier to understand, maintain, and use across frameworks.

Instructions file for GitHub Copilot

Written for GitHub Copilot: a Copilot instructions file.

This is dev-lou/PixelPilot's own configuration. It tells GitHub Copilot how to work on PixelPilot 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 PixelPilot configures →

Reuse

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.

Copy the file
curl -O https://raw.githubusercontent.com/dev-lou/PixelPilot/main/vscode/.github/instructions/uiux-routes-naming.instructions.md
Clone the repo
git clone --depth 1 https://github.com/dev-lou/PixelPilot

Made for: GitHub Copilot.

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 PixelPilot uiux-routes-naming.instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/dev-lou/pixelpilot/uiux-routes-naming.svg)](https://agentmods.dev/instructions/dev-lou/pixelpilot/uiux-routes-naming)
Your own site
<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>
Per session 2,784 This file is loaded in full into every session.
When invoked 2,784 The same file — it is already loaded in full.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.02784 $0.02784
Opus 5 $0.01392 $0.01392
Sonnet 5 $0.00557 $0.00557
Haiku 4.5 $0.00278 $0.00278

Measured 3d ago against content hash 41d0973f94e3, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

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.

vscode/.github/instructions/uiux-routes-naming.instructions.md · 452 lines

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:

  1. URL naming conventions (kebab-case)
  2. RESTful route patterns
  3. Named routes (no hardcoded paths)
  4. Route grouping and prefixes
  5. 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

Read the full file on GitHub · 452 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. 3d ago First seen · 452 lines · 2,784 tokens per session scan A 41d0973f94e3

Subscribe to this mod's changes

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.