PixelPilot uiux-monorepo.instructions.md

PixelPilot uiux-monorepo.instructions.md is an instructions file for GitHub Copilot from dev-lou/PixelPilot. It costs 3,344 tokens per session, scanned C, original, MIT.

A design-system setup for sharing style rules, design tokens, and interface components across several applications in one code repository. A monorepo is a repository that contains multiple related apps or packages.

In plain words
What is it for?
Organising shared tokens, UI components, and utilities with npm workspaces, Turborepo, Nx, or publishable packages.
Why use it?
It helps prevent duplicated components and inconsistent designs between apps by keeping shared building blocks in reusable packages.

Instructions file for GitHub Copilot

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add instructions/dev-lou/pixelpilot/uiux-monorepo
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-monorepo.instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/dev-lou/pixelpilot/uiux-monorepo.svg)](https://agentmods.dev/instructions/dev-lou/pixelpilot/uiux-monorepo)
Your own site
<a href="https://agentmods.dev/instructions/dev-lou/pixelpilot/uiux-monorepo"><img src="https://agentmods.dev/badge/instructions/dev-lou/pixelpilot/uiux-monorepo.svg" alt="Measured on agentmods" height="20"></a>
Per session 3,344 This file is loaded in full into every session.
When invoked 3,344 The same file — it is already loaded in full.
Security scan C 1 finding. 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 $0.03344 $0.03344
Opus 5 $0.01672 $0.01672
Sonnet 5 $0.00669 $0.00669
Haiku 4.5 $0.00334 $0.00334

Measured 3d ago against content hash ca480e00f75a, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade C, and why

PixelPilot uiux-monorepo.instructions.md scanned grade C with 1 finding 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.

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

"clean": "turbo run clean && rm -rf node_modules"
vscode/.github/instructions/uiux-monorepo.instructions.md · 569 lines

How it starts

The opening of the file, as written. The whole thing — 569 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Monorepo Design System Skill

Share design tokens and components across multiple applications.


ARCHITECTURE OPTIONS

Approach Best For Complexity
npm workspaces Small teams, 2-3 apps Low
Turborepo Medium teams, 5+ apps Medium
Nx Large enterprise High
Publishable package External consumers Medium

NPM WORKSPACES (BASIC)

Folder Structure

my-monorepo/
├── package.json              # Root package.json
├── packages/
│   ├── tokens/               # Design tokens
│   │   ├── package.json
│   │   ├── src/
│   │   │   ├── tokens.css
│   │   │   ├── tokens.js
│   │   │   └── index.ts
│   │   └── tsconfig.json
│   ├── ui/                   # Shared components
│   │   ├── package.json
│   │   ├── src/
│   │   │   ├── Button/
│   │   │   ├── Input/
│   │   │   └── index.ts
│   │   └── tsconfig.json
│   └── utils/                # Shared utilities
│       ├── package.json
│       └── src/
└── apps/
    ├── web/                  # Main web app
    │   ├── package.json
    │   └── src/
    ├── admin/                # Admin dashboard
    │   ├── package.json
    │   └── src/
    └── docs/                 # Documentation site
        ├── package.json
        └── src/

Root package.json

{
  "name": "my-monorepo",
  "private": true,
  "workspaces": [
    "packages/*",
    "apps/*"
  ],
  "scripts": {
    "dev": "npm run dev --workspaces --if-present",
    "build": "npm run build --workspaces --if-present",
    "lint": "npm run lint --workspaces --if-present",
    "test": "npm run test --workspaces --if-present"
  },
  "devDependencies": {
    "typescript": "^5.0.0"
  }
}

Tokens Package

// packages/tokens/package.json
{
  "name": "@myorg/tokens",
  "version": "1.0.0",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.mjs",
      "require": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./css": "./dist/tokens.css"
  },
  "files": ["dist"],
  "scripts": {
    "build": "tsup src/index.ts --format cjs,esm --dts && cp src/tokens.css dist/"
  }
}

Read the full file on GitHub · 569 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 · 569 lines · 3,344 tokens per session scan C ca480e00f75a

Subscribe to this mod's changes

PixelPilot uiux-monorepo.instructions.md is an instructions file published in the GitHub repository dev-lou/PixelPilot (2 stars, last pushed 4mo ago), licensed MIT. It adds 3,344 tokens to every session, about $0.0167 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.