feat: add sliver to registry#258
Conversation
There was a problem hiding this comment.
Pull request overview
Adds a new CLI registry entry for sliver (exploding topics detection engine) to the CLI-Hub registry.json, making it discoverable/installable via the registry.
Changes:
- Added a new
sliverentry (metadata, install command, entry point, skill_md link, contributor). - Reintroduced the existing
openclaw-macroentry in the same location with altered indentation/formatting.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| { | ||
| "name": "openclaw-macro", | ||
| "display_name": "OpenClaw Macro System", | ||
| "version": "1.0.0", | ||
| "description": "Layered CLI that converts GUI workflows into parameterized, agent-callable macros — with backend routing across native APIs, file transforms, accessibility controls, and compiled GUI replay", | ||
| "requires": null, | ||
| "homepage": "https://github.com/HKUDS/CLI-Anything", | ||
| "source_url": null, | ||
| "install_cmd": "pip install git+https://github.com/HKUDS/CLI-Anything.git#subdirectory=openclaw-skill/agent-harness", | ||
| "entry_point": "cli-anything-openclaw", | ||
| "skill_md": "openclaw-skill/agent-harness/cli_anything/openclaw/skills/SKILL.md", | ||
| "category": "automation", | ||
| "contributors": [ | ||
| { | ||
| "name": "haorui-harry", | ||
| "url": "https://github.com/haorui-harry" | ||
| } | ||
| ] | ||
| }, | ||
| { |
There was a problem hiding this comment.
The newly added openclaw-macro entry has inconsistent indentation compared to the rest of registry.json (object starts at line 957 with extra spaces; keys are also over-indented). This makes the diff noisy and may violate any JSON formatting checks. Please reformat this entry to match the surrounding 2-space indentation style (e.g., align { with other entries and keys with other keys).
| { | |
| "name": "openclaw-macro", | |
| "display_name": "OpenClaw Macro System", | |
| "version": "1.0.0", | |
| "description": "Layered CLI that converts GUI workflows into parameterized, agent-callable macros — with backend routing across native APIs, file transforms, accessibility controls, and compiled GUI replay", | |
| "requires": null, | |
| "homepage": "https://github.com/HKUDS/CLI-Anything", | |
| "source_url": null, | |
| "install_cmd": "pip install git+https://github.com/HKUDS/CLI-Anything.git#subdirectory=openclaw-skill/agent-harness", | |
| "entry_point": "cli-anything-openclaw", | |
| "skill_md": "openclaw-skill/agent-harness/cli_anything/openclaw/skills/SKILL.md", | |
| "category": "automation", | |
| "contributors": [ | |
| { | |
| "name": "haorui-harry", | |
| "url": "https://github.com/haorui-harry" | |
| } | |
| ] | |
| }, | |
| { | |
| { | |
| "name": "openclaw-macro", | |
| "display_name": "OpenClaw Macro System", | |
| "version": "1.0.0", | |
| "description": "Layered CLI that converts GUI workflows into parameterized, agent-callable macros — with backend routing across native APIs, file transforms, accessibility controls, and compiled GUI replay", | |
| "requires": null, | |
| "homepage": "https://github.com/HKUDS/CLI-Anything", | |
| "source_url": null, | |
| "install_cmd": "pip install git+https://github.com/HKUDS/CLI-Anything.git#subdirectory=openclaw-skill/agent-harness", | |
| "entry_point": "cli-anything-openclaw", | |
| "skill_md": "openclaw-skill/agent-harness/cli_anything/openclaw/skills/SKILL.md", | |
| "category": "automation", | |
| "contributors": [ | |
| { | |
| "name": "haorui-harry", | |
| "url": "https://github.com/haorui-harry" | |
| } | |
| ] | |
| }, | |
| { |
| "source_url": "https://github.com/collectivewinca/sliver", | ||
| "install_cmd": "pip install git+https://github.com/collectivewinca/sliver.git#subdirectory=agent-harness", | ||
| "entry_point": "cli-anything-sliver", | ||
| "skill_md": "https://github.com/collectivewinca/sliver/blob/sliver/agent-harness/cli_anything/sliver/skills/SKILL.md", |
There was a problem hiding this comment.
skill_md for sliver points to a GitHub blob URL on a branch named sliver (.../blob/sliver/...). Elsewhere in this registry (e.g., zotero) blob links use a stable branch like main. Consider switching this to blob/main (or a tag/commit SHA) so the link remains stable and consistent.
| "skill_md": "https://github.com/collectivewinca/sliver/blob/sliver/agent-harness/cli_anything/sliver/skills/SKILL.md", | |
| "skill_md": "https://github.com/collectivewinca/sliver/blob/main/agent-harness/cli_anything/sliver/skills/SKILL.md", |
|
Thanks for adding the Sliver registry entry. I validated that the JSON still parses, but this is not ready to merge yet. The advertised repo URL is not reachable from GitHub right now ( Please also keep the diff limited to the new |
|
@copilot resolve the merge conflicts in this pull request |
|
Blocking issues before this can be considered:
Also: the name "Sliver" collides with a well-known offensive-security C2 framework. The description here ("exploding topics detection engine, TimesFM 2.5") is unrelated, but once the repo is published please make that distinction obvious in the README to avoid confusion for users browsing the registry. |
Add sliver (exploding topics detection engine) to CLI-Hub registry.