skill-099

skill-099 is a skill for Claude Code, Codex from legendtkl/agentic-skill-router. It costs 23 tokens per session (435 once invoked), scanned A, original, MIT.

A game-development module for managing player character customization, including appearance, skills, and attributes.

In plain words
What is it for?
Use it to build character-creation systems for RPGs, multiplayer games, and other games where players personalize their avatars.
Why use it?
It provides a structured way to define customization choices and apply them to a game character.

Skill for Claude CodeCodex

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

Good fit Use it to build character-creation systems for RPGs, multiplayer games, and other games where players personalize their avatars.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/legendtkl/agentic-skill-router/skill-099
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 legendtkl/agentic-skill-router --skill skill-099
Clone the repo
git clone --depth 1 https://github.com/legendtkl/agentic-skill-router

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 skill-099

README.md
[![agentmods](https://agentmods.dev/badge/skills/legendtkl/agentic-skill-router/skill-099/github.svg)](https://agentmods.dev/skills/legendtkl/agentic-skill-router/skill-099)
Your own site
<a href="https://agentmods.dev/skills/legendtkl/agentic-skill-router/skill-099"><img src="https://agentmods.dev/badge/skills/legendtkl/agentic-skill-router/skill-099/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 skill-099

Your own site · 80×15
<a href="https://agentmods.dev/skills/legendtkl/agentic-skill-router/skill-099"><img src="https://agentmods.dev/badge/skills/legendtkl/agentic-skill-router/skill-099.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 23 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 435 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.00023 $0.00435
Opus 5 $0.00012 $0.00217
Sonnet 5 $0.00005 $0.00087
Haiku 4.5 $0.00002 $0.00044

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

Security

Grade A, and why

skill-099 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 7d 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.

experiments/dci-compare/skillrouter-skills/skill-099/SKILL.md · 70 lines

What it actually says

Character Customization Skill

This skill provides a character_customization module to handle character appearance, skills, and attributes customization for players.

When to use

  • RPGs: To create detailed character creation processes.
  • Multiplayer Games: To enable players to personalize their avatars.
  • Game Development: To streamline character customizability in various game genres.

How to use

Import the module:

from character_customization import Character, CustomizationOptions

1. The Character Class

The main representation of a character.

character = Character(name="Hero")

2. Adding Customization Options

Define options for character customization.

options = CustomizationOptions()
options.add_appearance_option("hair_color", ["red", "blue", "green"])
options.add_skill_option("combat_ability", ["swordplay", "archery"])

3. Customizing Character

Apply selected customization options to the character.

character.customize(options)

4. Retrieving Character Attributes

Get the current attributes and skills of a character.

attributes = character.get_attributes()  # Returns a dictionary of current attributes

5. Saving Customization

Serialize the character's customization settings.

customization_data = character.save_customization()  # Returns JSON representation

6. Loading Customization

Load existing customization settings for a character.

character.load_customization(customization_data)

Example

character = Character(name="Knight")
options = CustomizationOptions()
options.add_appearance_option("armor_type", ["plate", "leather"])
options.add_skill_option("magic_ability", ["fireball", "heal"])
character.customize(options)

This skill provides an interactive and flexible way for players to customize their characters, enhancing the gaming experience.

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. 7d ago First seen · 70 lines · 23 tokens per session scan A 998f5aebfb1f

Subscribe to this mod's changes

skill-099 is a skill published in the GitHub repository legendtkl/agentic-skill-router (5 stars, last pushed 3mo ago), licensed MIT. It adds 23 tokens to every session and 435 once invoked, about $0.0001 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-03.

Related

Other skills, from other repositories