🎯

data-converter

🎯Skill

from ntaksh42/agents

VibeIndex|
What it does

Converts data seamlessly between JSON, XML, CSV, YAML, and TOML formats with advanced transformation capabilities.

📦

Part of

ntaksh42/agents(78 items)

data-converter

Installation

📋 No install commands found in docs. Showing default command. Check GitHub for actual instructions.
Quick InstallInstall with npx
npx skills add ntaksh42/agents --skill data-converter
2Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

Convert data between formats (JSON, XML, CSV, YAML, TOML). Use when transforming data structures or migrating between data formats.

Overview

# Data Converter Skill

データ形式を変換するスキルです。

概要

JSON、YAML、XML、CSV、TOML等の各種データ形式を相互変換します。

主な機能

  • 多様な形式: JSON ↔ YAML ↔ XML ↔ CSV ↔ TOML ↔ INI
  • データ検証: スキーマバリデーション
  • 整形: インデント、ソート、圧縮
  • フィルタリング: 特定フィールドの抽出
  • 変換: キャメルケース ↔ スネークケース
  • マージ: 複数ファイルの統合

使用方法

```

以下のJSONをYAMLに変換:

{

"name": "John",

"age": 30

}

```

変換例

JSON → YAML

```json

{

"database": {

"host": "localhost",

"port": 5432,

"credentials": {

"username": "admin",

"password": "secret"

}

}

}

```

```yaml

database:

host: localhost

port: 5432

credentials:

username: admin

password: secret

```

CSV → JSON

```csv

name,age,city

John,30,Tokyo

Jane,25,Osaka

```

```json

[

{"name": "John", "age": 30, "city": "Tokyo"},

{"name": "Jane", "age": 25, "city": "Osaka"}

]

```

XML → JSON

```xml

John

30

john@example.com

```

```json

{

"user": {

"name": "John",

"age": 30,

"email": "john@example.com"

}

}

```

バージョン情報

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

More from this repository10

🎯
document-summarizer🎯Skill

Generates concise summaries of documents by extracting key information and condensing text into a more digestible format.

🎯
algorithmic-art🎯Skill

Generates creative algorithmic art using p5.js, creating unique visual designs with patterns, fractals, and dynamic animations.

🎯
sql-query-helper🎯Skill

Generates, optimizes, and explains SQL queries with best practices, providing intelligent database query solutions across multiple database platforms.

🎯
plantuml-diagram🎯Skill

Generates PlantUML diagrams (class, sequence, component) to visually represent system architecture and UML models.

🎯
azure-pipelines-generator🎯Skill

Generates Azure Pipelines YAML configurations automatically for CI/CD workflows, supporting multi-stage builds and deployments across different environments.

🎯
kubernetes-helper🎯Skill

Assists Kubernetes users by generating, validating, and explaining Kubernetes manifests and configurations with AI-powered insights.

🎯
using-git-worktrees🎯Skill

Creates isolated Git worktrees with smart directory selection and safety verification for feature work and branch management.

🎯
dependency-analyzer🎯Skill

Analyzes project dependencies, identifies potential conflicts, and provides insights into library compatibility and version management.

🎯
brainstorming🎯Skill

Collaboratively refines rough ideas into fully-formed designs through systematic questioning, alternative exploration, and incremental validation.

🎯
azure-boards-helper🎯Skill

Manages Azure Boards work items by creating, querying, and automating work item workflows using WIQL and comprehensive templates.