Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 31 additions & 12 deletions registry.json
Original file line number Diff line number Diff line change
Expand Up @@ -954,22 +954,41 @@
}
]
},
{
"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"
}
]
},
{
Comment on lines +957 to 976
Copy link

Copilot AI Apr 28, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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).

Suggested change
{
"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"
}
]
},
{

Copilot uses AI. Check for mistakes.
"name": "openclaw-macro",
"display_name": "OpenClaw Macro System",
"name": "sliver",
"display_name": "Sliver",
"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",
"description": "Exploding topics detection engine using TimesFM 2.5 time-series forecasting",
"requires": "Python 3.10+, HF_TOKEN, HF_BUCKET_NAME, TimesFM 2.5",
"homepage": "https://github.com/collectivewinca/sliver",
"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",
Copy link

Copilot AI Apr 28, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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.

Suggested change
"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",

Copilot uses AI. Check for mistakes.
"category": "ai",
"contributors": [
{
"name": "haorui-harry",
"url": "https://github.com/haorui-harry"
"name": "collectivewinca",
"url": "https://github.com/collectivewinca"
}
]
}
Expand Down
Loading