ai-agent-rules-generator ui-design.instructions.md

ai-agent-rules-generator ui-design.instructions.md is an instructions file for GitHub Copilot from savedpixel/ai-agent-rules-generator. It costs 701 tokens per session, scanned A, original, MIT.

A rulebook for designing the settings screens of a WooCommerce payment plugin. WooCommerce is the WordPress system used to run online shops.

In plain words
What is it for?
Use it when changing WooCommerce admin settings or custom admin views. It defines which existing interface classes, settings fields, buttons, spacing, and colours to use.
Why use it?
It keeps admin screens consistent with WordPress and WooCommerce and prevents unsupported interface choices.

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/savedpixel/ai-agent-rules-generator/ui-design
Clone the repo
git clone --depth 1 https://github.com/savedpixel/ai-agent-rules-generator

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 ai-agent-rules-generator ui-design.instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/savedpixel/ai-agent-rules-generator/ui-design.svg)](https://agentmods.dev/instructions/savedpixel/ai-agent-rules-generator/ui-design)
Your own site
<a href="https://agentmods.dev/instructions/savedpixel/ai-agent-rules-generator/ui-design"><img src="https://agentmods.dev/badge/instructions/savedpixel/ai-agent-rules-generator/ui-design.svg" alt="Measured on agentmods" height="20"></a>
Per session 701 This file is loaded in full into every session.
When invoked 701 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.00701 $0.00701
Opus 5 $0.00351 $0.00351
Sonnet 5 $0.00140 $0.00140
Haiku 4.5 $0.00070 $0.00070

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

Security

Grade A, and why

ai-agent-rules-generator ui-design.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.

examples/glitch-payment-gateway/v1.1/copilot/generated/.github/instructions/ui-design.instructions.md · 59 lines

How it starts

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

Glitch Payment Gateway — UI Design Instructions

MANDATORY: Follow task.instructions.md

Before starting any UI work, you MUST also follow all rules in .github/instructions/task.instructions.md.

MANDATORY: Read Before Any Admin UI Work

Before writing or modifying any UI element in the WooCommerce admin settings or custom admin views, you MUST read:

  • docs/plugin/features/3-admin-settings.md — the settings field reference
  • The matching split doc for the surface you're changing

Strict Rules

  1. NEVER invent new CSS classes for admin pages. Use WordPress core admin classes (form-table, widefat, button, button-primary, notice, notice-success, notice-error, etc.) and WooCommerce settings classes.

  2. NEVER hardcode colors, spacing, or sizing values. Use WordPress admin CSS custom properties and WooCommerce's existing spacing conventions. Reference wp-admin/css/common.css patterns.

  3. Use the correct button variants:

    • Primary action: button button-primary
    • Secondary action: button
    • Destructive: button button-link-delete
    • Small: add button-small
  4. Use WooCommerce Settings API for all settings fields. Define fields via init_form_fields() — never render raw HTML form inputs for gateway settings. Valid field types: text, textarea, select, multiselect, checkbox, password, title, decimal.

  5. Use WordPress notice classes for admin messages:

    • Success: <div class="notice notice-success"><p>...</p></div>
    • Error: <div class="notice notice-error"><p>...</p></div>
    • Warning: <div class="notice notice-warning"><p>...</p></div>
    • Info: <div class="notice notice-info"><p>...</p></div>
  6. No inline styles. All custom styling goes in assets/css/glitch-admin.css and is enqueued via admin_enqueue_scripts.

  7. Use WordPress Dashicons for icons. Reference via <span class="dashicons dashicons-{name}"></span>. Common ones: dashicons-admin-generic, dashicons-shield, dashicons-warning, dashicons-yes-alt, dashicons-no-alt.

Read the full file on GitHub · 59 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 · 59 lines · 701 tokens per session scan A 0bb26b861d90

Subscribe to this mod's changes

ai-agent-rules-generator ui-design.instructions.md is an instructions file published in the GitHub repository savedpixel/ai-agent-rules-generator (7 stars, last pushed 4mo ago), licensed MIT. It adds 701 tokens to every session, about $0.0035 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

copilot-setting AGENTS.md

AGENTS.md instructions for zexion7873/copilot-setting, covering copilot-setting — agent guide, communication language, repository purpose, validation commands and architecture.

zexion7873/copilot-setting · 2,786 tokens

copilot-setting java.instructions.md

Load when writing or reviewing .java code — Java 8 version-lock floor: syntax, exceptions, logging, concurrency. Triggers on: var, records, text blocks, List.of/Map.of, pattern matching, java.time, BigDecimal, SLF4J. Forces Java 8, not modern Java. Defer SQL/Spring/JSP to their files.

zexion7873/copilot-setting · 1,326 tokens

copilot-setting spring-hibernate.instructions.md

Load when writing or reviewing Java or hbm.xml on a Spring 3.2 + Hibernate 4.2 stack — native Session API, XML mappings/tx, Spring MVC. Triggers on: getCurrentSession (not openSession), hbm.xml (not JPA @Entity), (not @Transactional), @Controller/@RequestMapping (not @GetMapping). No Spring Boot/JPA. Defer SQL to…

zexion7873/copilot-setting · 1,366 tokens

copilot-setting sql-ddl.instructions.md

Load when writing or reviewing MySQL DDL or migration scripts — CREATE/ALTER TABLE, indexes, stored procedures, backfills. Triggers on: ALTER TABLE, ALGORITHM=INSTANT/INPLACE, online schema change (pt-osc, gh-ost), rollback scripts, chunked backfill, DROP COLUMN, sp stored procedures. MySQL 8.0 / InnoDB. Query and…

zexion7873/copilot-setting · 989 tokens

copilot-setting xml-config.instructions.md

Load when writing or reviewing stack XML — Spring applicationContext, hbm.xml, web.xml, or Maven pom.xml. Triggers on: (not ), spring-beans-3.2.xsd (not 4.0), , DispatcherServlet, , scope test/provided, source/target 1.8, no -SNAPSHOT/LATEST. No Spring Boot. Defer SQL/Java to their files.

zexion7873/copilot-setting · 924 tokens

copilot-setting sql.instructions.md

Load when writing or reviewing SQL in Java code — JDBC DAOs, HQL, query tuning. Triggers on: PreparedStatement/? (no concat), :paramName, no SELECT , WHERE on UPDATE/DELETE, indexes, EXPLAIN. Raw JDBC, not Spring Boot. DDL/migrations: sql-ddl.instructions.md. Defer Hibernate queries to spring-hibernate.instructions.md.

zexion7873/copilot-setting · 732 tokens