MCP HubMCP Hub
スキル一覧に戻る

data-converter

majiayu000
更新日 Yesterday
19 閲覧
58
9
58
GitHubで表示
その他data

について

データコンバータースキルは、JSON、XML、CSV、YAML、TOMLなどの一般的なフォーマット間でデータを変換し、データ移行や再構築タスクに最適です。バリデーション、フォーマット調整、フィルタリング、フィールド名のケース変換を提供します。Claude内でデータ構造を迅速に変換、検証、標準化する必要がある場合、開発者はこのスキルを利用すべきです。

クイックインストール

Claude Code

推奨
プラグインコマンド推奨
/plugin add https://github.com/majiayu000/claude-skill-registry
Git クローン代替
git 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 リポジトリ

majiayu000/claude-skill-registry
パス: skills/data-converter

関連スキル

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.

スキルを見る