From 9059e4b89c991eef6ae795ff265dead5afec754a Mon Sep 17 00:00:00 2001 From: jueduilunhui Date: Mon, 25 May 2026 00:05:21 +0800 Subject: [PATCH 1/3] feat: add cli-anything-everything to registry Agent-native CLI for Everything file search on Windows. Wraps es.exe with JSON output, GBK->UTF-8 encoding, REPL mode, and WSL/Linux dual-environment support. Standalone repo: https://github.com/jueduilunhui/cli-anything-everything 21 unit tests passing, fully documented SKILL.md --- registry.json | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/registry.json b/registry.json index 3f89b63753..cc9ae1a38a 100644 --- a/registry.json +++ b/registry.json @@ -1227,6 +1227,25 @@ "url": "https://github.com/octo-patch" } ] + }, + { + "name": "everything", + "display_name": "Everything", + "version": "1.0.0", + "description": "Instant file search on Windows via Everything's es.exe — JSON output, GBK→UTF-8 encoding, REPL mode, WSL/Linux dual-environment support", + "requires": "Everything 1.4+ installed and running with es.exe", + "homepage": "https://www.voidtools.com", + "source_url": "https://github.com/jueduilunhui/cli-anything-everything", + "install_cmd": "pip install git+https://github.com/jueduilunhui/cli-anything-everything.git", + "entry_point": "cli-anything-everything", + "skill_md": "https://raw.githubusercontent.com/jueduilunhui/cli-anything-everything/main/SKILL.md", + "category": "search", + "contributors": [ + { + "name": "jueduilunhui", + "url": "https://github.com/jueduilunhui" + } + ] } ] -} +} \ No newline at end of file From 16f708ad5815f22386f1c2f0a81bc46395fc8860 Mon Sep 17 00:00:00 2001 From: jueduilunhui <130271951+jueduilunhui@users.noreply.github.com> Date: Sat, 30 May 2026 23:31:26 +0800 Subject: [PATCH 2/3] fix: move everything CLI from registry.json to public_registry.json MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Per review feedback — standalone external repos belong in public_registry.json, not registry.json (in-repo harnesses only). Also restores trailing newline. --- registry.json | 21 +-------------------- 1 file changed, 1 insertion(+), 20 deletions(-) diff --git a/registry.json b/registry.json index cc9ae1a38a..3f89b63753 100644 --- a/registry.json +++ b/registry.json @@ -1227,25 +1227,6 @@ "url": "https://github.com/octo-patch" } ] - }, - { - "name": "everything", - "display_name": "Everything", - "version": "1.0.0", - "description": "Instant file search on Windows via Everything's es.exe — JSON output, GBK→UTF-8 encoding, REPL mode, WSL/Linux dual-environment support", - "requires": "Everything 1.4+ installed and running with es.exe", - "homepage": "https://www.voidtools.com", - "source_url": "https://github.com/jueduilunhui/cli-anything-everything", - "install_cmd": "pip install git+https://github.com/jueduilunhui/cli-anything-everything.git", - "entry_point": "cli-anything-everything", - "skill_md": "https://raw.githubusercontent.com/jueduilunhui/cli-anything-everything/main/SKILL.md", - "category": "search", - "contributors": [ - { - "name": "jueduilunhui", - "url": "https://github.com/jueduilunhui" - } - ] } ] -} \ No newline at end of file +} From 24d8699c45296fbf34a3bfff1af815008e192135 Mon Sep 17 00:00:00 2001 From: jueduilunhui <130271951+jueduilunhui@users.noreply.github.com> Date: Sat, 30 May 2026 23:31:29 +0800 Subject: [PATCH 3/3] feat: add cli-anything-everything to public_registry.json MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Agent-native CLI for Everything file search on Windows. JSON output, GBK→UTF-8, REPL mode, WSL-ready. Smoke test: pip install git+https://github.com/jueduilunhui/cli-anything-everything.git then cli-anything-everything --json search "*" -n 1 --- public_registry.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/public_registry.json b/public_registry.json index 6b0eeb99ca..22ae320794 100644 --- a/public_registry.json +++ b/public_registry.json @@ -362,6 +362,27 @@ "url": "https://github.com/MartaKar" } ] + }, + { + "name": "everything", + "display_name": "Everything", + "version": "1.0.0", + "description": "Instant file search on Windows via Everything's es.exe — JSON output, GBK→UTF-8 encoding, REPL mode, WSL/Linux dual-environment support", + "category": "search", + "requires": "Everything 1.4+ installed and running with es.exe", + "homepage": "https://www.voidtools.com", + "source_url": "https://github.com/jueduilunhui/cli-anything-everything", + "package_manager": "pip", + "install_cmd": "pip install git+https://github.com/jueduilunhui/cli-anything-everything.git", + "entry_point": "cli-anything-everything", + "skill_md": "https://raw.githubusercontent.com/jueduilunhui/cli-anything-everything/main/SKILL.md", + "contributors": [ + { + "name": "jueduilunhui", + "url": "https://github.com/jueduilunhui" + } + ] } + ] }