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.
git clone --depth 1 https://github.com/julianoczkowski/create-trimble-appWrote 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.
[](https://agentmods.dev/rules/julianoczkowski/create-trimble-app/modus-modal-implementation-solidjs)<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.
<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>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.
| Model | Per session | Once 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 |
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.
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} />;
}
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.
- 5d ago First seen · 827 lines · 0 tokens per session scan A aaa712866b43
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.
Other cursor rules, from other repositories
frontend-architecture
Cursor rule "frontend-architecture" from tomasz-tomczyk/crit, covering frontend architecture, two-paradigm page fork, module pattern, shared modules (used by both modes) and code-review modules (used only by code-review mode).
proxy-auth-transport
Every CLI command or browser UI action that calls a crit-web API must work in both modes.
hatch3r-design-system-detection
Mandatory detection of existing design tokens, theme primitives, and component library before AI agents author new UI components.
dev
AIOX agent @dev - Full Stack Developer.
nextjs-patterns
// ✅ Correct: Default to Server Components export default async function Page({ params }) { const data = await getData(); return ; }.
accessibility
Accessibility: semantic HTML, ARIA, keyboard navigation, testing.