Back to Skills

jq

verified

Extract specific fields from JSON files efficiently using jq instead of reading entire files, saving 80-95% context.

View on GitHub

Marketplace

xdg-claude

xdg/xdg-claude

Plugin

context-efficient-tools

development

Repository

xdg/xdg-claude
8stars

context-efficient-tools/skills/jq/SKILL.md

Last Verified

January 22, 2026

Install Skill

Select agents to install to:

Scope:
npx add-skill https://github.com/xdg/xdg-claude/blob/main/context-efficient-tools/skills/jq/SKILL.md -a claude-code --skill jq

Installation paths:

Claude
.claude/skills/jq/
Powered by add-skill CLI

Instructions

# jq: JSON Data Extraction Tool

Use jq to extract specific fields from JSON files without loading entire file contents into context.

## When to Use jq vs Read

**Use jq when:**
- Need specific field(s) from structured data file
- File is large (>50 lines) and only need subset
- Querying nested structures
- Filtering/transforming data
- **Saves 80-95% context** vs reading entire file

**Just use Read when:**
- File is small (<50 lines)
- Need to understand overall structure
- Making edits (need full context anyway)

## Common File Types

JSON files where jq excels:
- package.json, tsconfig.json
- Lock files (package-lock.json, yarn.lock in JSON format)
- API responses
- Configuration files

## Quick Examples

```bash
# Get version from package.json
jq -r .version package.json

# Get nested dependency version
jq -r '.dependencies.react' package.json

# List all dependencies
jq -r '.dependencies | keys[]' package.json
```

## Core Principle

Extract exactly what is needed in one command - massive context savings compared to reading entire files.

## Detailed Reference

For comprehensive jq patterns, syntax, and examples, load [jq guide](./reference/jq-guide.md):
- Core patterns (80% of use cases)
- Real-world workflows
- Advanced patterns
- Pipe composition
- Error handling
- Integration with other tools

Validation Details

Front Matter
Required Fields
Valid Name Format
Valid Description
Has Sections
Allowed Tools
Instruction Length:
1310 chars