slice-generator

slice-generator is a skill for Claude Code, Codex from jhlee0409/claude-plugins. It costs 14 tokens per session (3,753 once invoked), scanned A, original, MIT.

A generator for FSD-compliant slices, where FSD means Feature-Sliced Design, a frontend code-organization method. It creates starter structures by matching patterns already used in the project.

In plain words
What is it for?
Use it to validate names and generate slices or segments in the pages, widgets, features, or entities layers.
Why use it?
It saves manual setup work and helps new slices use consistent folders and naming. It also blocks unsafe slice or segment names that could escape the intended directory.

Skill for Claude CodeCodex

Part of the fsdarch plugin — 4 skills, 6 commands shipped together

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 skills/jhlee0409/claude-plugins/slice-generator
Any agent
npx skills add jhlee0409/claude-plugins --skill slice-generator
Clone the repo
git clone --depth 1 https://github.com/jhlee0409/claude-plugins

Made for: Claude Code, Codex.

Or install fsdarch, the plugin that ships this one along with the rest of its 4 skills, 6 commands.

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 slice-generator

README.md
[![agentmods](https://agentmods.dev/badge/skills/jhlee0409/claude-plugins/slice-generator.svg)](https://agentmods.dev/skills/jhlee0409/claude-plugins/slice-generator)
Your own site
<a href="https://agentmods.dev/skills/jhlee0409/claude-plugins/slice-generator"><img src="https://agentmods.dev/badge/skills/jhlee0409/claude-plugins/slice-generator.svg" alt="Measured on agentmods" height="20"></a>
Per session 14 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,753 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
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 $0.00014 $0.03753
Opus 5 $0.00007 $0.01877
Sonnet 5 $0.00003 $0.00751
Haiku 4.5 $0.00001 $0.00375

Measured 4d ago against content hash 519a9206a514, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

slice-generator scanned grade A with 1 finding 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 4d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

const response = await fetch(BASE_URL);
plugins/fsd-architect/skills/slice-generator/SKILL.md · 576 lines

How it starts

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

Slice Generator Skill

FSD 규격에 맞는 슬라이스 보일러플레이트를 생성합니다. 프로젝트 패턴을 학습하여 일관된 스타일로 생성합니다.

EXECUTION INSTRUCTIONS

Step 1: Validate Input

  1. Check layer is valid sliced layer: pages, widgets, features, entities
  2. Sanitize slice name (SECURITY CRITICAL):
    • MUST NOT contain .. (path traversal attack)
    • MUST NOT contain / or \ (path separator injection)
    • MUST NOT start with . (hidden file creation)
    • MUST match pattern: ^[a-zA-Z][a-zA-Z0-9-_]*$
    • If validation fails, throw E304 with sanitization guidance
  3. Sanitize segment names (SECURITY CRITICAL - same rules as slice):
    • For each segment in --segments flag:
      • MUST NOT contain .. (path traversal attack)
      • MUST NOT contain / or \ (path separator injection)
      • MUST NOT start with . (hidden file creation)
      • MUST match pattern: ^[a-zA-Z][a-zA-Z0-9-_]*$
      • If validation fails, throw E305 with sanitization guidance
    • Validation function:
      function validateSegmentName(segment: string): { valid: boolean; error?: string } {
        if (segment.includes('..')) {
          return { valid: false, error: 'E305: Segment contains ".." (path traversal blocked)' };
        }
        if (segment.includes('/') || segment.includes('\\')) {
          return { valid: false, error: 'E305: Segment contains path separators' };
        }
        if (segment.startsWith('.')) {
          return { valid: false, error: 'E305: Hidden segment not allowed' };
        }
        if (!/^[a-zA-Z][a-zA-Z0-9-_]*$/.test(segment)) {
          return { valid: false, error: 'E305: Invalid segment name format' };
        }
        return { valid: true };
      }
      
      // Validate all segments before creation
      for (const segment of options.segments) {
        const result = validateSegmentName(segment);
        if (!result.valid) {
          throw new Error(result.error);
        }
      }
      
  4. Check slice name doesn't already exist
  5. Validate naming format matches project convention

Read the full file on GitHub · 576 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. 4d ago First seen · 576 lines · 14 tokens per session scan A 519a9206a514

Subscribe to this mod's changes

slice-generator is a skill published in the GitHub repository jhlee0409/claude-plugins (4 stars, last pushed 7mo ago), licensed MIT. It adds 14 tokens to every session and 3,753 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

datamodel-code-generator

Use this skill when the user wants Python data models, Pydantic models, dataclasses, TypedDicts, msgspec structs, or type-safe Python classes generated from OpenAPI, AsyncAPI, JSON Schema, GraphQL, JSON/YAML/CSV sample data, MCP tool schemas, Protocol Buffers, XML Schema, Apache Avro, or existing Python model objects.…

koxudaxi/datamodel-code-generator · 147 tokens

preserved_skill

previous skill.

koxudaxi/datamodel-code-generator · 0 tokens

performing-api-fuzzing-with-restler

Uses Microsoft RESTler to perform stateful REST API fuzzing by automatically generating and executing test sequences that exercise API endpoints, discover producer-consumer dependencies between requests, and find security and reliability bugs. The tester compiles an OpenAPI specification into a RESTler fuzzing…

xalgorix/xalgorix · 123 tokens

ideogram-ultra

Build Ideogram 4 (Ideogram Ultra) txt2img and img2img workflows with the local open-weights model, dual conditional/unconditional models with DualModelGuider, Qwen3-VL text encoder, and structured JSON ("compositional deconstruction") prompts for strong text rendering and layout control.

artokun/comfyui-mcp · 68 tokens

model-compatibility

Model family compatibility matrix covering loaders, resolutions, samplers, CFG, VAE, ControlNet, and LoRA compatibility for SD 1.5, SDXL, Flux, SD3, and video models.

artokun/comfyui-mcp · 47 tokens

flux-txt2img

Build Flux txt2img workflows with Flux.1 Dev (SRPO), Flux 2 Klein 9B, Turbo LoRAs, FluxGuidance, and DualCLIPLoader patterns.

artokun/comfyui-mcp · 44 tokens