
jqschema
✓ Official★ 4,700by github · part of github/gh-aw
JSON schema discovery utility that extracts structure and type information from JSON data
This is the playbook your agent receives when the skill activates — you don't need to read it to use the skill, but it's here to audit before installing.
name: jqschema description: Infer JSON structure and types with jq-based schema discovery. tools: bash: - "jq *" - "./.github/skills/jqschema/jqschema.sh" - "git"
jqschema - JSON Schema Discovery
Use ./.github/skills/jqschema/jqschema.sh to generate a compact structural schema (keys + types) from JSON input. Pipe any JSON source through it to discover structure before querying full data.
# Analyze a file or command output
cat data.json | ./.github/skills/jqschema/jqschema.sh
gh api search/repositories?q=language:go | ./.github/skills/jqschema/jqschema.shThe script replaces object values with type names ("string", "number", "boolean", "null"), reduces arrays to first-element structure, and outputs compact JSON. Use perPage: 1 to fetch minimal data when exploring unknown API shapes.
Example: {"total_count":1000,"items":[{"login":"user1","id":123}]} → {"total_count":"number","items":[{"login":"string","id":"number"}]}
npx skills add https://github.com/github/gh-aw --skill jqschemaRun this in your project — your agent picks the skill up automatically.
No common issues documented yet. If you hit a problem, the repository's GitHub Issues page is the best place to look.