PixelPilot uiux-laravel.instructions.md

PixelPilot uiux-laravel.instructions.md is an instructions file for GitHub Copilot from dev-lou/PixelPilot. It costs 1,561 tokens per session, scanned A, original, MIT.

Instructions for building web interfaces with Laravel, Blade templates, and Vite. Laravel is a PHP web framework, Blade is its template language, and Vite bundles frontend files for the browser.

In plain words
What is it for?
Use it when adding the described UI/UX design system to Laravel pages, especially when writing Blade forms and managing frontend assets with Vite.
Why use it?
It gives the integration patterns needed to connect these tools while covering protections such as CSRF tokens for submitted forms.

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-laravel
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-laravel.instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/dev-lou/pixelpilot/uiux-laravel.svg)](https://agentmods.dev/instructions/dev-lou/pixelpilot/uiux-laravel)
Your own site
<a href="https://agentmods.dev/instructions/dev-lou/pixelpilot/uiux-laravel"><img src="https://agentmods.dev/badge/instructions/dev-lou/pixelpilot/uiux-laravel.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,561 This file is loaded in full into every session.
When invoked 1,561 The same file — it is already loaded in full.
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 $0.01561 $0.01561
Opus 5 $0.00781 $0.00781
Sonnet 5 $0.00312 $0.00312
Haiku 4.5 $0.00156 $0.00156

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

Security

Grade A, and why

PixelPilot uiux-laravel.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-laravel.instructions.md · 144 lines

How it starts

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

OpenCode UI/UX 2026 — Laravel Integration Skill

This skill provides guidelines and best practices for integrating the OpenCode UI/UX 2026 design system within Laravel applications, specifically focusing on Blade templates and Vite for asset bundling. Adhering to these patterns ensures a consistent, secure, and performant user experience.

1. CSRF Token Protection (@csrf Directive)

Cross-Site Request Forgery (CSRF) protection is a critical security measure in web applications. Laravel makes it easy to protect your forms using the @csrf Blade directive, which generates a hidden input field containing a CSRF token. This token is then verified by Laravel upon form submission.

Step-by-step Instructions

  1. Include in all forms: For any HTML form that submits data via POST, PUT, or DELETE methods, ensure the @csrf directive is placed inside the <form> tags.

Code Example

<form method="POST" action="/profile">
    @csrf
    <!-- Other form fields -->
    <input type="text" name="name" value="{{ old("name") }}">
    <button type="submit">Update Profile</button>
</form>

2. Vite Asset Bundling (@vite Directive)

Vite is the recommended build tool for modern Laravel applications, offering a fast development experience and optimized production builds. Laravel provides a convenient @vite Blade directive to include your compiled assets.

Step-by-step Instructions

  1. Configure vite.config.js: Ensure your Vite configuration correctly points to your entry points (e.g., resources/js/app.js, resources/css/app.css).
  2. Include in Blade Layout: Place the @vite directive in your main Blade layout file, typically within the <head> section for CSS and before the closing </body> tag for JavaScript.

Code Example

<!DOCTYPE html>
<html lang="{{ str_replace("_", "-", app()->getLocale()) }}">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>My Laravel App</title>
    @vite(["resources/css/app.css", "resources/js/app.js"])
</head>
<body>
    <div id="app">
        @yield("content")
    </div>
</body>
</html>

Read the full file on GitHub · 144 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 · 144 lines · 1,561 tokens per session scan A 2dc13fc207fa

Subscribe to this mod's changes

PixelPilot uiux-laravel.instructions.md is an instructions file published in the GitHub repository dev-lou/PixelPilot (2 stars, last pushed 5mo ago), licensed MIT. It adds 1,561 tokens to every session, about $0.0078 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-31.

Related

Other instructions, from other repositories

ui-ux-design-pro-skill CLAUDE.md

Instructions for saifyxpro/ui-ux-design-pro-skill, covering project overview, cli commands, full design system generation (markdown output), search across all databases (sub-50ms) and audit ui code quality.

saifyxpro/ui-ux-design-pro-skill · 618 tokens

UIX CLAUDE.md

Instructions for Deepractice/UIX, covering uix project rules, design system: lucid ui, colors, forbidden and preferred patterns.

Deepractice/UIX · 365 tokens

wonder-blocks CLAUDE.md

Claude Code instructions for Khan/wonder-blocks, covering wonder blocks design system, technology stack, coding conventions, file & export naming and typescript.

Khan/wonder-blocks · 3,823 tokens

melta-ui AGENTS.md

Instructions for tsubotax/melta-ui, covering melta ui — ai エージェント作業ガイド, アーキテクチャ概要, 最初に読むファイル, 読み込みモード and 作業ルール.

tsubotax/melta-ui · 2,481 tokens

core-web copilot-instructions.md

Copilot instructions for db-ux-design-system/core-web: All development instructions, build commands, validation steps, coding rules, and the pull request workflow are maintained in AGENTS.md at the repository root. Read that file first before starting any task.

db-ux-design-system/core-web · 90 tokens

html2style copilot-instructions.md

Copilot instructions for jackguihx-alt/html2style: When working on website style extraction, transfer, or reconstruction in this repository, read SKILL.md and use the portable CLI or MCP tools. Do not depend on a vendor-specific browser plugin. For style work, keep deterministic style-profile.json separate from…

jackguihx-alt/html2style · 136 tokens