modus-modal-implementation-solidjs

modus-modal-implementation-solidjs is a cursor rule for Cursor from julianoczkowski/create-trimble-app. It costs 0 tokens per session (5,393 once invoked), scanned A, original, MIT.

Implementation guidance for opening and closing ModusWcModal dialog windows from SolidJS.

In plain words
What is it for?
Use it when connecting modal controls to buttons or other actions in a SolidJS application, including opening, closing, and handling modal events.
Why use it?
The modal's showModal and close methods are inside its native dialog element, so calling them directly on the SolidJS component reference does not work.

Cursor rule for Cursor

Written for Cursor: installed under .cursor/.

Good fit Use it when connecting modal controls to buttons or other actions in a SolidJS application, including opening, closing, and handling modal events.

Compare 6 cursor rules from other repositories ↓
Install with agentmods
npx agentmods add rules/julianoczkowski/create-trimble-app/modus-modal-implementation-solidjs
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.

Clone the repo
git clone --depth 1 https://github.com/julianoczkowski/create-trimble-app

Made for: Cursor.

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 modus-modal-implementation-solidjs

README.md
[![agentmods](https://agentmods.dev/badge/rules/julianoczkowski/create-trimble-app/modus-modal-implementation-solidjs/github.svg)](https://agentmods.dev/rules/julianoczkowski/create-trimble-app/modus-modal-implementation-solidjs)
Your own site
<a href="https://agentmods.dev/rules/julianoczkowski/create-trimble-app/modus-modal-implementation-solidjs"><img src="https://agentmods.dev/badge/rules/julianoczkowski/create-trimble-app/modus-modal-implementation-solidjs/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for modus-modal-implementation-solidjs

Your own site · 80×15
<a href="https://agentmods.dev/rules/julianoczkowski/create-trimble-app/modus-modal-implementation-solidjs"><img src="https://agentmods.dev/badge/rules/julianoczkowski/create-trimble-app/modus-modal-implementation-solidjs.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 5,393 The whole file, excluding the scripts and references it only reads on demand.
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.00000 $0.05393
Opus 5 $0.00000 $0.02697
Sonnet 5 $0.00000 $0.01079
Haiku 4.5 $0.00000 $0.00539

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

Security

Grade A, and why

modus-modal-implementation-solidjs 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 5d 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.

templates/solidjs/.cursor/rules/modus-modal-implementation-solidjs.mdc · 827 lines

How it starts

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

ModusWcModal Implementation in SolidJS

🚨 CRITICAL: Modal Method Access Issue

Problem: The ModusWcModal component's showModal() and close() methods are not directly available on the component reference in SolidJS.

Root Cause: Modus Web Components use shadow DOM, and the modal methods are on the inner native <dialog> element, not the component itself.

Official Documentation: According to the official Modus documentation, modals are controlled with direct method calls (showModal() and close()) on the modal element, not through SolidJS state management.

Common Anti-Patterns

Direct Method Access (Won't Work)

// ❌ WRONG: Direct method access on component
function ModalComponent() {
  let modalRef: ModusWcModal | undefined;

  const openModal = () => {
    if (modalRef) {
      modalRef.showModal(); // ❌ This won't work
    }
  };

  const closeModal = () => {
    if (modalRef) {
      modalRef.close(); // ❌ This won't work
    }
  };

  return (
    <div>
      <button onClick={openModal}>Open Modal</button>
      <ModusWcModal ref={(el) => (modalRef = el)}>
        <div slot="header">Modal Header</div>
        <div slot="body">Modal Body</div>
        <div slot="footer">
          <button onClick={closeModal}>Close</button>
        </div>
      </ModusWcModal>
    </div>
  );
}

Trying to Control Modal State from SolidJS

// ❌ WRONG: Trying to control modal state from SolidJS
function ModalComponent() {
  const [isOpen, setIsOpen] = createSignal(false);

  return (
    <ModusWcModal
      open={isOpen()} // ❌ This won't work as expected
      onClose={() => setIsOpen(false)}
    >
      <div slot="header">Modal Header</div>
      <div slot="body">Modal Body</div>
    </ModusWcModal>
  );
}

Using createEffect to Control Modal State (Critical Anti-Pattern)

// ❌ WRONG: Using createEffect to control modal state
function ModusModal(props: { isOpen: boolean; onClose?: () => void }) {
  let modalRef: HTMLModusWcModalElement | undefined;

  // ❌ CRITICAL ANTI-PATTERN: Don't control modal state from SolidJS
  createEffect(() => {
    const modal = modalRef;
    if (modal) {
      if (props.isOpen) {
        const dialogElement = modal.querySelector("dialog");
        if (dialogElement) {
          dialogElement.showModal();
        }
      } else {
        const dialogElement = modal.querySelector("dialog");
        if (dialogElement) {
          dialogElement.close();
        }
      }
    }
  }); // ❌ This violates the official pattern

  return <ModusWcModal ref={(el) => (modalRef = el)} {...props} />;
}

Read the full file on GitHub · 827 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. 5d ago First seen · 827 lines · 0 tokens per session scan A aaa712866b43

Subscribe to this mod's changes

modus-modal-implementation-solidjs is a cursor rule published in the GitHub repository julianoczkowski/create-trimble-app (3 stars, last pushed 2mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 5,393 tokens. 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.