Back to Skills

data-converter

majiayu000
Updated Today
4 views
58
9
58
View on GitHub
Otherdata

About

The data-converter skill transforms data between common formats like JSON, XML, CSV, YAML, and TOML, ideal for data migration or restructuring tasks. It provides validation, formatting, filtering, and field name case conversion. Developers should use it when needing to quickly convert, validate, or standardize data structures within Claude.

Quick Install

Claude Code

Recommended
Plugin CommandRecommended
/plugin add https://github.com/majiayu000/claude-skill-registry
Git CloneAlternative
git clone https://github.com/majiayu000/claude-skill-registry.git ~/.claude/skills/data-converter

Copy and paste this command in Claude Code to install this skill

Documentation

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>john@example.com</email>
</user>

{
  "user": {
    "name": "John",
    "age": 30,
    "email": "john@example.com"
  }
}

バージョン情報

  • スキルバージョン: 1.0.0
  • 最終更新: 2025-01-22

GitHub Repository

majiayu000/claude-skill-registry
Path: skills/data-converter

Related Skills

content-collections

Meta

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.

View skill

llamaindex

Meta

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.

View skill

hybrid-cloud-networking

Meta

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.

View skill

polymarket

Meta

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.

View skill