data-converter
について
データコンバータースキルは、JSON、XML、CSV、YAML、TOMLなどの一般的なフォーマット間でデータを変換し、データ移行や再構築タスクに最適です。バリデーション、フォーマット調整、フィルタリング、フィールド名のケース変換を提供します。Claude内でデータ構造を迅速に変換、検証、標準化する必要がある場合、開発者はこのスキルを利用すべきです。
クイックインストール
Claude Code
推奨/plugin add https://github.com/majiayu000/claude-skill-registrygit clone https://github.com/majiayu000/claude-skill-registry.git ~/.claude/skills/data-converterこのコマンドをClaude Codeにコピー&ペーストしてスキルをインストールします
ドキュメント
Data Converter Skill
データ形式を変換するスキルです。
概要
JSON、YAML、XML、CSV、TOML等の各種データ形式を相互変換します。
主な機能
- 多様な形式: JSON ↔ YAML ↔ XML ↔ CSV ↔ TOML ↔ INI
- データ検証: スキーマバリデーション
- 整形: インデント、ソート、圧縮
- フィルタリング: 特定フィールドの抽出
- 変換: キャメルケース ↔ スネークケース
- マージ: 複数ファイルの統合
使用方法
以下のJSONをYAMLに変換:
{
"name": "John",
"age": 30
}
変換例
JSON → YAML
{
"database": {
"host": "localhost",
"port": 5432,
"credentials": {
"username": "admin",
"password": "secret"
}
}
}
↓
database:
host: localhost
port: 5432
credentials:
username: admin
password: secret
CSV → JSON
name,age,city
John,30,Tokyo
Jane,25,Osaka
↓
[
{"name": "John", "age": 30, "city": "Tokyo"},
{"name": "Jane", "age": 25, "city": "Osaka"}
]
XML → JSON
<user>
<name>John</name>
<age>30</age>
<email>[email protected]</email>
</user>
↓
{
"user": {
"name": "John",
"age": 30,
"email": "[email protected]"
}
}
バージョン情報
- スキルバージョン: 1.0.0
- 最終更新: 2025-01-22
GitHub リポジトリ
関連スキル
content-collections
メタThis skill provides a production-tested setup for Content Collections, a TypeScript-first tool that transforms Markdown/MDX files into type-safe data collections with Zod validation. Use it when building blogs, documentation sites, or content-heavy Vite + React applications to ensure type safety and automatic content validation. It covers everything from Vite plugin configuration and MDX compilation to deployment optimization and schema validation.
polymarket
メタThis skill enables developers to build applications with the Polymarket prediction markets platform, including API integration for trading and market data. It also provides real-time data streaming via WebSocket to monitor live trades and market activity. Use it for implementing trading strategies or creating tools that process live market updates.
hybrid-cloud-networking
メタThis skill configures secure hybrid cloud networking between on-premises infrastructure and cloud platforms like AWS, Azure, and GCP. Use it when connecting data centers to the cloud, building hybrid architectures, or implementing secure cross-premises connectivity. It supports key capabilities such as VPNs and dedicated connections like AWS Direct Connect for high-performance, reliable setups.
llamaindex
メタLlamaIndex is a data framework for building RAG-powered LLM applications, specializing in document ingestion, indexing, and querying. It provides key features like vector indices, query engines, and agents, and supports over 300 data connectors. Use it for document Q&A, chatbots, and knowledge retrieval when building data-centric applications.
