components

Vue component guidelines.

Cursor rule for Cursor

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 rules/bebiksior/httpworkbench/components
Clone the repo
git clone --depth 1 https://github.com/bebiksior/httpworkbench

Made for: Cursor.

Per session 474 This file is loaded in full into every session.
When invoked 474 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin unknown 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.00474 $0.00474
Opus 5 $0.00237 $0.00237
Sonnet 5 $0.00095 $0.00095
Haiku 4.5 $0.00047 $0.00047

Measured today against content hash 6b54450beaf6, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

components 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 today.

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.

.cursor/rules/components.mdc · 82 lines

What it actually says

Components

  1. Use Primevue components for all UI components.
  2. Use <script setup lang="ts"> for all components.

Props and Events

Always inline the type definition in defineProps<> and defineEmits<>. Avoid creating a separate type just for props.

  • Good

    defineProps<{ x: string; y: number }>();
    defineEmits<{ (e: 'update:modelValue', value: string): void }>();
    
  • Bad

    type Props = { x: string; y: number };
    type Emits = { (e: 'update:modelValue', value: string): void };
    defineProps<Props>();
    defineEmits<Emits>();
    

Destructuring Props

Destructure props with toRefs for better reactivity and clarity. Avoid directly accessing props in function calls.

  • Good

    const props = defineProps<{ myProp: string }>();
    const { myProp } = toRefs(props);
    useForm({ myProp });
    
  • Bad

    const props = defineProps<{ myProp: string }>();
    useForm(props.myProp);
    

Structure

Use the following layout for every component to keep imports and growth consistent:

ComponentName/
  ├─ index.ts           # Re-export (single public entry)
  ├─ Container.vue      # Main component implementation
  ├─ useForm.ts         # Optional: composable when logic grows (e.g. forms)
  └─ DependentComponent.vue

ComponentName/index.ts

export { default as ComponentName } from "./Container.vue";

When a child piece becomes complex or needs its own hook, use the same pattern as the parent:

ComponentName/
  └─ DependentComponent/
       ├─ index.ts
       └─ Container.vue

Styling

  1. Use Tailwind CSS for all styling:
    • Apply utility classes directly in templates for layout and styling.
    • Avoid custom CSS unless absolutely necessary for reusable or complex styles.
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. today First seen · 82 lines · 474 tokens per session scan A 6b54450beaf6

Subscribe to this mod's changes

components is a cursor rule published in the GitHub repository bebiksior/httpworkbench (45 stars, last pushed 11d ago), licensed MIT. It adds 474 tokens to every session, about $0.0024 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-01.