KyoshinEewViewerIngen: Skill for Claude Code

.claude/skills/creating-claude-code-skills/SKILL.md

creating-claude-code-skills is a skill for Claude Code from ingen084/KyoshinEewViewerIngen. It costs 45 tokens per session (608 once invoked), scanned A, original, MIT.

A guide for creating Claude Code Skills: small instruction packages that add specialised knowledge, workflows, or tools to Claude. It covers the required SKILL.md file and optional supporting files.

In plain words
What is it for?
Use it to create, improve, or troubleshoot Skills, including their instructions, descriptions, examples, reference documents, and utility scripts.
Why use it?
It helps you design Skills that are easy to find, concise, and appropriate for the task's risk and complexity.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: reads .claude/ paths; mentions Claude Code.

This is ingen084/KyoshinEewViewerIngen's own configuration. It tells Claude Code how to work on KyoshinEewViewerIngen 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 KyoshinEewViewerIngen configures →

Reuse

Borrowing it

Nothing to install: this file belongs to ingen084/KyoshinEewViewerIngen. 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/ingen084/KyoshinEewViewerIngen/develop/.claude/skills/creating-claude-code-skills/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/ingen084/KyoshinEewViewerIngen

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 creating-claude-code-skills

README.md
[![agentmods](https://agentmods.dev/badge/skills/ingen084/kyoshineewvieweringen/creating-claude-code-skills/github.svg)](https://agentmods.dev/skills/ingen084/kyoshineewvieweringen/creating-claude-code-skills)
Your own site
<a href="https://agentmods.dev/skills/ingen084/kyoshineewvieweringen/creating-claude-code-skills"><img src="https://agentmods.dev/badge/skills/ingen084/kyoshineewvieweringen/creating-claude-code-skills/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 creating-claude-code-skills

Your own site · 80×15
<a href="https://agentmods.dev/skills/ingen084/kyoshineewvieweringen/creating-claude-code-skills"><img src="https://agentmods.dev/badge/skills/ingen084/kyoshineewvieweringen/creating-claude-code-skills.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 45 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 608 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00045 $0.00608
Opus 5 $0.00023 $0.00304
Sonnet 5 $0.00009 $0.00122
Haiku 4.5 $0.00005 $0.00061

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

Security

Grade A, and why

creating-claude-code-skills 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 11d 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/skills/creating-claude-code-skills/SKILL.md · 101 lines

How it starts

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

Creating Claude Code Skills

Skills are modular packages that extend Claude's capabilities with specialized knowledge, workflows, and tools.

Quick Start

my-skill/
├── SKILL.md              # Required: metadata + instructions
├── reference.md          # Optional: detailed docs
└── scripts/              # Optional: utility scripts
    └── helper.py

SKILL.md Structure

---
name: skill-name          # lowercase, hyphens, max 64 chars
description: What it does and when to use it. Max 1024 chars.
---

# Skill Name

## Instructions
Clear, step-by-step guidance.

## Examples
Concrete input/output examples.

Core Principles

  1. Be Concise: Claude is smart. Only add context Claude doesn't already have.
  2. Progressive Disclosure: SKILL.md is overview. Details go in separate files.
  3. Match Freedom to Risk: Fragile operations need specific scripts; flexible tasks need general guidance.

Writing Effective Descriptions

The description field is critical for discovery. Include:

  • What the skill does
  • When to use it (triggers/contexts)
  • Key terms users would mention

Good:

description: Extract text from PDF files, fill forms, merge documents. Use when working with PDF files, forms, or document extraction.

Bad:

description: Helps with documents

File Organization Patterns

Simple skill (single file):

commit-helper/
└── SKILL.md

Skill with references:

pdf-processing/
├── SKILL.md           # Quick start + navigation
├── FORMS.md           # Form-filling details
└── REFERENCE.md       # API reference

Skill with scripts:

data-analysis/
├── SKILL.md
├── scripts/
│   └── validate.py
└── references/
    └── schema.md

Key Guidelines

  • Keep SKILL.md under 500 lines
  • Use forward slashes in paths: scripts/helper.py
  • Keep references one level deep from SKILL.md
  • Use third person in descriptions
  • Test with all models you plan to use

Skill Locations

  • Personal: ~/.claude/skills/skill-name/
  • Project: .claude/skills/skill-name/

Read the full file on GitHub · 101 lines

Files

What ships with it

2 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. 11d ago First seen · 101 lines · 45 tokens per session scan A cc0280496cf3

Subscribe to this mod's changes

creating-claude-code-skills is a skill published in the GitHub repository ingen084/KyoshinEewViewerIngen (187 stars, last pushed today), licensed MIT. It adds 45 tokens to every session and 608 once invoked, about $0.0002 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-08-30.

Related

Other skills, from other repositories

mapsui

Use when embedding interactive 2D maps in .NET desktop (WinForms/WPF) or mobile (MAUI) applications — tile layers, vector features, map controls. Mapsui: cross-platform .NET map component library.

znlgis/opengis-skills · 49 tokens

officecli

Create, analyze, proofread, and modify Office documents (.docx, .xlsx, .pptx) using the officecli CLI tool. Use when the user wants to create, inspect, check formatting, find issues, add charts, or modify Office documents.

Sylinko/Everywhere · 56 tokens

performance-optimization-dotnet

Optimizes .NET/C# application performance — measure first with BenchmarkDotNet / dotnet-counters / dotnet-trace / PerfView, then fix the specific bottleneck (EF Core N+1, sync-over-async, Gen2 GC pressure, thread-pool starvation, allocation hotspots, unbounded queries, missing pagination, Kestrel misconfiguration).…

peterblazejewicz/claude-plugins · 105 tokens

test-driven-development

Drives .NET/C# development with tests — RED/GREEN/REFACTOR with xUnit (v2 or v3) or MSTest, the Prove-It Pattern for bug fixes, the test pyramid with WebApplicationFactory for integration and Playwright/Avalonia.Headless for E2E. Supports both VSTest and Microsoft.Testing.Platform (MTP) runners. Use when implementing…

peterblazejewicz/claude-plugins · 103 tokens

using-agent-skills

Meta-skill — discovers and invokes the right .NET/C# agent skill from this marketplace for the task at hand. Use when starting a session, when a task doesn't obviously map to a single skill, or when you need a phase-by-phase map of what's available across Define / Plan / Build / Verify / Review / Ship. Governs how…

peterblazejewicz/claude-plugins · 89 tokens

api-and-interface-design

Guides stable API and interface design for .NET/C# — HTTP endpoints (Minimal APIs or controllers), library surface area, public records/interfaces, EF Core-backed contracts. Use when designing APIs, module boundaries, MyApp.Contracts DTOs, or any public interface where backward compatibility matters.

peterblazejewicz/claude-plugins · 64 tokens