# Wildq

> Use this skill when the user wants to query structured data files with jq-like syntax

- Skill: `javimosch/wildq` (Agent Skill)
- Install (CLI): `npx skillmds@latest add javimosch/wildq`
- Raw SKILL.md: https://api.skillmd.com/api/skills/javimosch/wildq/raw
- Safety review: PASS (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: javimosch (https://skillmd.com/u/javimosch)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/javimosch/wildq

---


# Wildq Plugin

query structured data files with jq-like syntax

## Commands
- `wildq self version` — Print wildq version
- `wildq _ _` — Passthrough to wildq CLI

## Usage Examples
- "Query JSON data with jq syntax"
- "Extract fields from TOML"
- "Filter YAML data"

## Installation

```bash
pip install wildq
```

## Examples
```bash
wildq ".users[] | select(.age > 30)" data.json
wildq ".database.host" config.toml
cat data.yaml | wildq ".items[]"
```

## Key Features
- jq-like query syntax
- TOML, JSON, INI, YAML support
- Filter and transform data
- Pipeline-friendly

