character-museai-to-tavern

character-museai-to-tavern is a skill for Codex from yejiming/kitt-airp-skills. It costs 111 tokens per session (897 once invoked), scanned A, original, MIT.

A conversion tool for changing MuseAI companion-project character cards into SillyTavern Character Card V2 JSON, a standard format that SillyTavern can import.

In plain words
What is it for?
Use it to convert, migrate, repair, batch-process, or validate MuseAI character cards, including greetings, example conversations, behavior rules, and embedded world-book entries.
Why use it?
It reorganizes and checks Chinese character information so it is usable in SillyTavern without losing supported details or breaking the required format.

Skill for Codex

Written for Codex: agents/openai.yaml present.

Good fit Use it to convert, migrate, repair, batch-process, or validate MuseAI character cards, including greetings, example conversations, behavior rules, and embedded world-book entries.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/yejiming/kitt-airp-skills/character-museai-to-tavern
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 yejiming/kitt-airp-skills --skill character-museai-to-tavern
Clone the repo
git clone --depth 1 https://github.com/yejiming/kitt-airp-skills

Made for: 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 character-museai-to-tavern

README.md
[![agentmods](https://agentmods.dev/badge/skills/yejiming/kitt-airp-skills/character-museai-to-tavern/github.svg)](https://agentmods.dev/skills/yejiming/kitt-airp-skills/character-museai-to-tavern)
Your own site
<a href="https://agentmods.dev/skills/yejiming/kitt-airp-skills/character-museai-to-tavern"><img src="https://agentmods.dev/badge/skills/yejiming/kitt-airp-skills/character-museai-to-tavern/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 character-museai-to-tavern

Your own site · 80×15
<a href="https://agentmods.dev/skills/yejiming/kitt-airp-skills/character-museai-to-tavern"><img src="https://agentmods.dev/badge/skills/yejiming/kitt-airp-skills/character-museai-to-tavern.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 111 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 897 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.00111 $0.00897
Opus 5 $0.00056 $0.00449
Sonnet 5 $0.00022 $0.00179
Haiku 4.5 $0.00011 $0.00090

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

Security

Grade A, and why

character-museai-to-tavern 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 12d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/convert_character.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

character-museai-to-tavern/SKILL.md · 79 lines

What it actually says

MuseAI 角色卡转 SillyTavern

museai.partner-items JSON 中的一个 MuseAI 角色转换为打磨后的中文 SillyTavern 角色卡 V2。

工作流程

  1. 完整读取源 JSON。选择用户指定的 characterCards[] 条目;如果文件中只有一个角色,自动使用它。
  2. 运行内置转换脚本,先生成结构有效的草稿:
python3 scripts/convert_character.py INPUT.json OUTPUT.json
  1. 阅读生成的草稿,并依据源文件事实继续打磨:

    • 所有面向角色扮演的内容都保持中文。SillyTavern 结构字段、{{char}}{{user}}<START> 可以保留原样。
    • 保留源文件中的身份、外貌、性格、价值观、能力、经历、关系、用户关系、边界和关键事件。
    • 将零散字段整理为连贯可用的角色指令,而不是直接堆叠原始键值对。
    • 编写有场景感的 first_mes,包含动作、对白、张力,并给 {{user}} 留出开放选择。
    • 编写至少三段有差异的 mes_example 交流,用来展示语气、反应、边界和关系动态。
    • 当源文件支持多个时期或场景时,添加两到三个 alternate_greetings
    • 将稳定事实和受时间线影响的材料放入 character_book.entries
    • 明确要求不得替 {{user}} 说话、思考、决定或行动。
    • 保持时间线一致,不要在对应时期之前泄露未来事实。
    • 不要发明与源文件冲突的身份特征、关系、能力或正史事件。
  2. V2 中顶层和 data 内重复出现的载荷字段必须完全一致。编辑其中一处后,要同步镜像到另一处。

  3. 校验最终文件:

python3 scripts/convert_character.py --validate-only OUTPUT.json
  1. 汇报输出路径和校验结果。

输出要求

使用 spec: "chara_card_v2"spec_version: "2.0"。必须包含:

  • name
  • description
  • personality
  • scenario
  • first_mes
  • mes_example
  • creator_notes
  • system_prompt
  • post_history_instructions
  • alternate_greetings
  • tags
  • creator
  • character_version
  • extensions
  • character_book
  • data,并镜像上方所有字段

除非用户要求改名或改路径,否则保留用户指定的目标位置和文件名。只有在用户明确要求,或请求清楚说明要原地转换时,才覆盖源文件。

参考资料

当源文件包含不熟悉的 MuseAI 字段、多个角色卡、关联世界书,或需要判断某条事实该放在哪里时,读取 references/field-mapping.md

脚本行为

scripts/convert_character.py 支持:

python3 scripts/convert_character.py INPUT OUTPUT
python3 scripts/convert_character.py INPUT OUTPUT --card-name "角色名"
python3 scripts/convert_character.py --validate-only OUTPUT

脚本输出只是结构有效的草稿,不能替代针对具体角色的写作打磨和事实复核。

Files

What ships with it

3 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. 12d ago First seen · 79 lines · 111 tokens per session scan A 2dd2d9eb81ff

Subscribe to this mod's changes

character-museai-to-tavern is a skill published in the GitHub repository yejiming/kitt-airp-skills (5 stars, last pushed 2mo ago), licensed MIT. It adds 111 tokens to every session and 897 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-08-31.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

local-ai-agents

Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…

microsoft/ai-agents-for-beginners · 200 tokens

next-cache-components-adoption

Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…

vercel/next.js · 95 tokens

chat-pet-sprite-creation

Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.

microsoft/vscode · 53 tokens

cpu-profile-analysis

Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…

microsoft/vscode · 71 tokens

insight-error-page

Write or audit an insight-kind error page for the Next.js dev overlay. Use when creating a new errors/ .mdx page, auditing an existing one, or checking that a page matches the framework fix cards. Covers page structure, title alignment, FixCard cards with Copy prompt button, code snippets, terminology verification…

vercel/next.js · 83 tokens