ganju: Command for Claude Code

.claude/commands/web-component.md

web-component is a command for Claude Code from MontoyaAndres/ganju. It costs 0 tokens per session (1,087 once invoked), scanned A, original, Apache-2.0.

A command for creating web components in a project with shared packages and a Next.js app. The project uses npm workspaces and Turbo, Material UI with Emotion for styling, and mobile-first responsive layouts.

In plain words
What is it for?
Adding reusable UI components while following the established package, styling, theme, and responsive-design rules.
Why use it?
It gives new components the project’s required file structure, styling system, theme values, and responsive conventions.

Command for Claude Code

Written for Claude Code: $ARGUMENTS substitution.

This is MontoyaAndres/ganju's own configuration. It tells Claude Code how to work on ganju itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything ganju configures →

Reuse

Borrowing it

Nothing to install: this file belongs to MontoyaAndres/ganju. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/MontoyaAndres/ganju/main/.claude/commands/web-component.md
Clone the repo
git clone --depth 1 https://github.com/MontoyaAndres/ganju

Made for: Claude Code.

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 web-component

README.md
[![agentmods](https://agentmods.dev/badge/commands/montoyaandres/ganju/web-component.svg)](https://agentmods.dev/commands/montoyaandres/ganju/web-component)
Your own site
<a href="https://agentmods.dev/commands/montoyaandres/ganju/web-component"><img src="https://agentmods.dev/badge/commands/montoyaandres/ganju/web-component.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,087 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.01087
Opus 5 $0.00000 $0.00544
Sonnet 5 $0.00000 $0.00217
Haiku 4.5 $0.00000 $0.00109

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

Security

Grade A, and why

web-component 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 6d 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.

.claude/commands/web-component.md · 131 lines

How it starts

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

Create a new web component following the established project conventions.

Input

$ARGUMENTS

Project Architecture

This is a monorepo (npm workspaces + Turbo) with three key packages:

  • packages/ui/ — Reusable UI components wrapping Material UI with Emotion styling
  • packages/utils/ — Shared utilities (Zod schemas, fetcher, constants)
  • apps/web/ — Next.js app consuming both packages

Styling System

Emotion CSS-in-JS (NOT Tailwind). Every styled component uses @emotion/styled + @emotion/react.

Theme tokens available via ({ theme }) => css:

  • Colors: theme.colors.transparent, .black, .bastille (#1C1825), .white, .red, .alto, .fernGreen, .saltBox
  • Fonts: theme.fonts.xs (12px) through theme.fonts['9xl'] (100px)
  • Shadows: theme['custom-shadows'].smallest, .small
  • Breakpoints: theme.screens.sm (640px), .md (768px), .lg (1024px), .xl (1280px), .['2xl'] (1536px)
  • Font family: Fustat (set globally)

Responsive design is mobile-first: base styles for mobile, @media (min-width: ${theme.screens.md}) for larger screens.

File Structure Conventions

For packages/ui components (reusable across apps):

packages/ui/src/components/<component-name>/
  index.tsx    — Component logic, wraps Material UI, uses Wrapper from styles
  styles.tsx   — Emotion styled components with theme access

styles.tsx pattern:

import { css } from '@emotion/react';
import styled from '@emotion/styled';

interface IProps {
  // Component-specific style props
}

export const Wrapper = styled.div<IProps>`
  ${({ theme }) => css`
    // Styles using theme tokens
  `}
`;

index.tsx pattern:

import { ReactNode } from 'react';
import { Wrapper } from './styles';

export interface IProps {
  children: ReactNode;
}

export const ComponentName = (props: IProps) => {
  const { children, ...rest } = props;
  return <Wrapper>{children}</Wrapper>;
};

After creating, register in packages/ui/src/components/index.tsx:

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

Subscribe to this mod's changes

web-component is a command published in the GitHub repository MontoyaAndres/ganju (2 stars, last pushed yesterday), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 1,087 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-08-31.