cratis-arc-react-page

cratis-arc-react-page is a skill for Claude Code, Codex from Cratis/AI. It costs 126 tokens per session (3,001 once invoked), scanned A, original, MIT.

A guide to building React pages in a Cratis Arc application with its generated data access and interface components. It covers lists, columns, menus, dialogs, selection, details, queries, and paging.

In plain words
What is it for?
Use it to create or change an Arc page that lists records, runs commands, shows details, or handles selection and confirmation.
Why use it?
It avoids rebuilding tables, dialogs, and data fetching by hand and explains the required component import paths. React is a JavaScript library for building user interfaces from components.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to create or change an Arc page that lists records, runs commands, shows details, or handles selection and confirmation.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/cratis/ai/cratis-arc-react-page
View source ↗ Cratis/AI
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.

Any agent
npx skills add Cratis/AI --skill cratis-arc-react-page
Clone the repo
git clone --depth 1 https://github.com/Cratis/AI

Made for: Claude Code, Codex.

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 cratis-arc-react-page

README.md
[![agentmods](https://agentmods.dev/badge/skills/cratis/ai/cratis-arc-react-page.svg)](https://agentmods.dev/skills/cratis/ai/cratis-arc-react-page)
Your own site
<a href="https://agentmods.dev/skills/cratis/ai/cratis-arc-react-page"><img src="https://agentmods.dev/badge/skills/cratis/ai/cratis-arc-react-page.svg" alt="Measured on agentmods" height="20"></a>
Per session 126 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,001 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.00126 $0.03001
Opus 5 $0.00063 $0.01501
Sonnet 5 $0.00025 $0.00600
Haiku 4.5 $0.00013 $0.00300

Measured today against content hash 3fc064a59196, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

cratis-arc-react-page 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.

skills/cratis-arc-react-page/SKILL.md · 292 lines

How it starts

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

Cratis Arc React pages

Build the page from the generated Arc proxies and the Cratis Components wrappers. Do not hand-roll a table, a dialog, or a fetch.

Verified product sources

This skill is verified against these exact package contracts:

Package Version Verified from
@cratis/components 3.0.0 its package manifest and component sources
@cratis/arc >=20.3.1 <23 peer range declared by @cratis/[email protected]
@cratis/arc.react >=20.3.1 <23 peer range declared by @cratis/[email protected]
primereact ^11.0.0 peer of @cratis/[email protected]
primeicons ^8.0.0 peer of @cratis/[email protected]
react ^19.0.0 peer of @cratis/[email protected]

@cratis/arc.react.mvvm ships with @cratis/arc.react and is an explicit application dependency. Reverify before claiming another version.

Import from subpaths, never the root barrel

The root @cratis/components entry exports namespaces, not components — import { DataPage } from '@cratis/components' yields a namespace object whose component is DataPage.DataPage. Always import from the subpath:

import { DataPage, MenuItem, Column } from '@cratis/components/DataPage';
import { CommandDialog } from '@cratis/components/CommandDialog';
import { InputTextField } from '@cratis/components/CommandForm';
import { Dialog } from '@cratis/components/Dialogs';
import { DialogProps, DialogResult, useDialog } from '@cratis/arc.react/dialogs';

Step 1 — Prerequisites

  • The backend query and command must already exist, and a Debug build must have regenerated the TypeScript proxies. Generated proxies carry a **DO NOT EDIT** - This file is an automatically generated file. header — fix the C# source and rebuild instead of editing one.
  • The app must mount CratisComponentsProvider (from @cratis/components/Common) above every Cratis component. PrimeReact 11 resolves its configuration from a provider, so components fail without one.
  • The app must import the stylesheets explicitly; components no longer import their own CSS:

Read the full file on GitHub · 292 lines

Files

What ships with it

6 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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 · 292 lines · 126 tokens per session scan A 3fc064a59196

Subscribe to this mod's changes

cratis-arc-react-page is a skill published in the GitHub repository Cratis/AI (2 stars, last pushed today), licensed MIT. It adds 126 tokens to every session and 3,001 once invoked, about $0.0006 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-06.

Related

Other skills, from other repositories

Hex1b.McpServer

This skill provides guidance for AI agents working with the Hex1b TUI (Terminal User Interface) library and its MCP diagnostic tools.

mitchdenny/hex1b · 0 tokens

frontend-dev-guidelines

Frontend development guidelines for React/TypeScript applications. Modern patterns including Suspense, lazy loading, useSuspenseQuery, file organization with features directory, MUI v7 styling, TanStack Router, performance optimization, and TypeScript best practices. Use when creating components, pages, features…

duongthinh03/portfolio · 76 tokens

menu-testing-ssr

Server rendering and testing for react-horizontal-scrolling-menu: the library is client-only ('use client' required in React Server Components, else "createContext is not a function"), SSR first paint is controlled by the useIsVisible defaultValue argument (canonical ('first', true) / ('last', false))…

asmyshlyaev177/react-horizontal-scrolling-menu · 144 tokens

menu-transitions-rtl

Animate react-horizontal-scrolling-menu scrolling and build right-to-left menus: noPolyfill defaults to true since v8, so transitionDuration (default 500), a custom-easing-function transitionBehavior, and per-call ScrollOptions { duration, boundary } on scrollToItem/scrollNext/scrollPrev are silently ignored unless…

asmyshlyaev177/react-horizontal-scrolling-menu · 137 tokens

react-patterns

Component patterns, hooks, state management, and performance optimization for React applications.

cosmicstack-labs/mercury-agent-skills · 18 tokens

igniteui-blazor-generate-from-image-design

Implement Blazor application views from design images using Ignite UI Blazor components. Uses MCP servers (igniteui-cli, igniteui-theming) to discover components, generate themes, and follow best practices. Triggers when the user provides a design image (screenshot, mockup, wireframe) and wants it built as a working…

IgniteUI/igniteui-cli · 127 tokens