From 10f37d6adc8c2ec187506586a3ac86b3b9ba0514 Mon Sep 17 00:00:00 2001 From: Hatter Jiang Date: Sun, 12 Apr 2026 01:49:21 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9A=20Add=20documentation=20and=20meta?= =?UTF-8?q?data=20for=20jq=20and=20yq=20tools?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 ++ meta.json | 10 ++++++++++ yq/CHEATSHEET.md | 10 ++++++++++ 3 files changed, 22 insertions(+) create mode 100644 yq/CHEATSHEET.md diff --git a/README.md b/README.md index ab24497..f0a1bfc 100644 --- a/README.md +++ b/README.md @@ -4,10 +4,12 @@ | ----- | ----- | ----- | ----- | | duf | - | [CHEATSHEET.md](duf/CHEATSHEET.md) | Disk Usage/Free Utility - a better 'df' alternative | | fzf | - | [CHEATSHEET.md](fzf/CHEATSHEET.md) | 🌸 A command-line fuzzy finder | +| jq | - | [CHEATSHEET.md](jq/CHEATSHEET.md) | Command-line JSON processor | | just | - | [CHEATSHEET.md](just/CHEATSHEET.md) | 🤖 Just a command runner | | mise | - | [CHEATSHEET.md](mise/CHEATSHEET.md) | dev tools, env vars, task runner | | openspec | - | [CHEATSHEET.md](openspec/CHEATSHEET.md) | Spec-driven development (SDD) for AI coding assistants. | | rg | ripgrep | [CHEATSHEET.md](rg/CHEATSHEET.md) | ripgrep recursively searches directories for a regex pattern while respecting your gitignore | | uv | - | [CHEATSHEET.md](uv/CHEATSHEET.md) | An extremely fast Python package and project manager, written in Rust. | | xh | ripgrep | [CHEATSHEET.md](xh/CHEATSHEET.md) | Friendly and fast tool for sending HTTP requests | +| yq | - | [CHEATSHEET.md](yq/CHEATSHEET.md) | yq is a portable command-line YAML, JSON, XML, CSV, TOML, HCL and properties processor | | zb | zerobrew | [CHEATSHEET.md](zb/CHEATSHEET.md) | A 5-20x faster experimental Homebrew alternative | diff --git a/meta.json b/meta.json index 1c146c5..902e81c 100644 --- a/meta.json +++ b/meta.json @@ -9,6 +9,11 @@ "repo": "https://github.com/junegunn/fzf", "description": "🌸 A command-line fuzzy finder" }, + { + "name": "jq", + "repo": "https://github.com/jqlang/jq", + "description": "Command-line JSON processor" + }, { "name": "just", "repo": "https://github.com/casey/just", @@ -41,6 +46,11 @@ "repo": "https://github.com/ducaale/xh", "description": "Friendly and fast tool for sending HTTP requests" }, + { + "name": "yq", + "repo": "https://github.com/mikefarah/yq", + "description": "yq is a portable command-line YAML, JSON, XML, CSV, TOML, HCL and properties processor" + }, { "name": "zb", "aliases": "zerobrew", diff --git a/yq/CHEATSHEET.md b/yq/CHEATSHEET.md new file mode 100644 index 0000000..55c5d59 --- /dev/null +++ b/yq/CHEATSHEET.md @@ -0,0 +1,10 @@ +# yq + +## Meta + +```yaml +name: yq +repo: https://github.com/mikefarah/yq +description: yq is a portable command-line YAML, JSON, XML, CSV, TOML, HCL and properties processor +``` +