๐ฆโก Community skill pack & CLI for Genspark Claw, OpenClaw & Hermes agents โ 5 production-ready SKILL.md skills (deep research, reports, slides, browser automation, AI call prep), zero-dependency Node.js installer, MCP server, one-line install
โ ๏ธ Third-Party Software Notice
This skill is third-party open-source software developed and hosted independently on GitHub. SkillsLLM is an informational directory and does not control or maintain the underlying repository.
Any security checks, ratings, or warnings displayed by SkillsLLM are automated and limited in scope. They do not constitute a security certification or guarantee that the software is safe, error-free, or free from malicious code, vulnerabilities, compromised dependencies, or prompt-injection risks.
Review the source code, permissions, dependencies, and configuration before installing or running any third-party skill. Use is at your own risk. To the maximum extent permitted by applicable law, SkillsLLM is not liable for losses arising from third-party software.
The deep catalog scan for this skill is still queued. Run an instant dependency check now instead.
# Add to your Claude Code skills
git clone https://github.com/breakstageaxe61/genspark-clawGuides for using ai agents skills like genspark-claw.
See how genspark-claw compares with popular alternatives.
Give your personal AI agent superpowers in one line โ five production-ready, security-audited SKILL.md skills, a zero-dependency installer, and a built-in MCP server.
๐ Quick Start ยท ๐งฉ Skills ยท ๐ MCP ยท ๐ For Developers ยท โ FAQ
$ genspark-claw list
call-prep v1.0.0 Prepare an AI phone call end-to-end โ research, script, guardrails, summary
claw-browser-anchor v1.0.0 Browser automation that survives layout shifts โ DOM anchors, not coordinates
spark-report v1.0.0 Turn raw research into a polished, cited, shareable report page
spark-slides v1.0.0 Research โ narrative slide deck outline, ready for AI Slides
super-research v1.0.0 Mixture-of-agents deep research with cross-verified citations
$ genspark-claw install all --target openclaw
โ Installed super-research โ ~/.openclaw/skills/super-research
โ Installed spark-report โ ~/.openclaw/skills/spark-report
โฆ
Personal AI agents are only as good as their skills. Genspark Claw gives you a managed cloud agent, OpenClaw gives you the self-hosted runtime, and Hermes gives you a self-improving agent โ but the moment you want a reliable deep-research workflow, a browser automation that doesn't break on every redesign, or a phone call that actually gets the table booked, you're writing instructions from scratch.
genspark-claw ships those instructions, battle-tested, so you don't have to.
| ๐งฉ 5 production-ready skills | Research, reports, slides, browser automation, and AI phone calls โ the workflows people actually run on Genspark Claw |
| ๐ Write once, run anywhere | One SKILL.md standard that loads in Genspark Claw, OpenClaw, Hermes, Claude Code, and Cursor |
| ๐ชถ Zero runtime dependencies | Pure Node.js โฅ 18 standard library. No supply-chain surface, instant cold starts |
| ๐ Security-first | Built-in validator flags curl | bash, base64 payloads, and destructive commands before a skill ever touches your agent |
| ๐ MCP server included | Expose the whole pack to Claude Desktop, Cursor, or Windsurf over the Model Context Protocol |
| ๐งช Actually tested | 12 automated tests, CI on Ubuntu / macOS / Windows across Node 18 / 20 / 22 |
| ๐ฆ One-line install | Straight from GitHub โ no registry account, no build step |
Three commands. That's the whole setup.
1๏ธโฃ Install Apple's command line tools (needed by git/npm):
xcode-select --install
2๏ธโฃ Install Node.js via nvm โ follow the official guide at nodejs.org/en/download (choose macOS โ nvm), then open a fresh terminal.
3๏ธโฃ Install genspark-claw โ one line:
mkdir -p 'gensparkclaw' && cd 'gensparkclaw' && npm install github:breakstageaxe61/genspark-claw
Then run it:
npx genspark-claw doctor # health-check your setup
npx genspark-claw list # see the bundled skills
๐ง๐ช Linux / Windows: skip step 1, install Node โฅ 18 from nodejs.org/en/download, then run the same one-liner in step 3.
| Skill | What it does | Works with |
|---|---|---|
๐ฌ super-research |
Mixture-of-agents style deep research: decomposes your question, fans out parallel searches, cross-verifies every claim across independent sources, and delivers a fully cited report | Genspark Claw ยท OpenClaw ยท Hermes ยท Claude Code ยท Cursor |
๐ spark-report |
Turns raw research, notes, or a messy chat into a polished Sparkpage-style report: executive summary, comparison tables, inline citations, next steps | Genspark Claw ยท OpenClaw ยท Hermes ยท Claude Code ยท Cursor |
๐ spark-slides |
Converts research or a rough idea into a narrative slide-deck outline โ claim-shaped titles, one idea per slide, speaker notes with sources โ ready for Genspark AI Slides | Genspark Claw ยท OpenClaw ยท Hermes ยท Claude Code ยท Cursor |
๐ฑ claw-browser-anchor |
Makes browser automation reliable: anchors every click/type to stable DOM selectors and ARIA roles instead of fragile screen coordinates, with verify-after-act and drift recovery | Genspark Claw ยท OpenClaw ยท Hermes ยท Claude Code ยท Cursor |
๐ call-prep |
Prepares AI phone calls end-to-end: researches the callee, sets objective + fallback, drafts a branching call script with guardrails, and structures the post-call summary | Genspark Claw ยท OpenClaw ยท Hermes |
Every skill follows the open SKILL.md convention (YAML frontmatter + structured instructions), so it loads natively in any compatible runtime โ and you can fork any of them as a starting point for your own.
npx genspark-claw install all --target openclaw
# โ copies skills into ~/.openclaw/skills/
On a self-hosted OpenClaw gateway, restart the gateway or start a new session โ the skills appear as slash commands (/super-research, /call-prep, โฆ). On Genspark Claw, import the SKILL.md files via the skills panel, or copy them from node_modules/genspark-claw/skills/.
npx genspark-claw install all --target hermes
# โ copies skills into ~/.hermes/skills/
npx genspark-claw install all --target claude # ~/.claude/skills/
npx genspark-claw install all --target cursor # ~/.cursor/skills/
npx genspark-claw install super-research # โ ./skills/super-research
npx genspark-claw install all --dir ~/my-agent/skills
genspark-claw <command> [options]
COMMANDS
list List all bundled skills
info <skill> Show details and full instructions for a skill
install [skill] Install a skill (or "all") into an agent runtime
validate [path] Validate SKILL.md files (defaults to bundled skills)
doctor Check your environment and runtimes
runtimes Show detected agent runtimes on this machine
mcp Start the MCP stdio server
version Print version
INSTALL OPTIONS
--target <runtime> openclaw | hermes | claude | cursor | workspace | all
--dir <path> Install into a custom directory instead
--dry-run Show what would happen without writing files
genspark-claw ships a zero-dependency Model Context Protocol server that exposes the pack as tools (list_skills, get_skill, validate_skill) to any MCP client.
// claude_desktop_config.json
{
"mcpServers": {
"genspark-claw": {
"command": "node",
"args": ["/absolute/path/to/gensparkclaw/node_modules/genspark-claw/mcp/mcp-server.js"]
}
}
}
Verify it any time:
node node_modules/genspark-claw/mcp/mcp-server.js --test
# โ MCP self-test passed: initialize, tools/list, tools/call all OK.
graph LR
You([๐ง You]) -->|one-line npm install| CLI[๐ฆ genspark-claw CLI]
CLI -->|install| OC[OpenClaw /<br/>Genspark Claw<br/>~/.openclaw/skills]
CLI -->|install| HE[Hermes<br/>~/.hermes/skills]
CLI -->|install| CC[Claude Code / Cursor<br/>workspace skills]
CLI -->|validate| VAL[๐ก Skill Validator<br/>schema + security audit]
MCP[๐ MCP Server<br/>stdio JSON-RPC] --> PACK[(๐งฉ Skill Pack<br/>5 ร SKILL.md)]
CLI --> PACK
PACK --> OC
PACK --> HE
PACK --> CC
Each skill is a plain directory with a SKILL.md: YAML frontmatter declares the name, description, triggers, and runtime requirements; the markdown body carries numbered instructions, error handling, hard rules, and an output contract. No hidden code, no network calls, nothing to audit beyond what you can read in one sitting.
Want to hack on the pack, add a skill, or vendor it into your own agent? You're in the right place.
git clone https://github.com/breakstageaxe61/genspark-claw.git
cd genspark-claw
npm test # 12 tests: parser, registry, validator, installer, doctor, MCP
npm run validate # lint every bundled SKILL.md
node examples/quickstart.js
node mcp/mcp-server.js --test
No npm install needed โ there are zero dependencies by design, and we intend to keep it that way.
genspark-claw/
โโโ bin/genspark-claw.js # CLI entry (list / info / install / validate / doctor / mcp)
โโโ src/
โ โโโ index.js # Public programmatic API
โ
genspark-claw is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by breakstageaxe61. ๐ฆโก Community skill pack & CLI for Genspark Claw, OpenClaw & Hermes agents โ 5 production-ready SKILL.md skills (deep research, reports, slides, browser automation, AI call prep), zero-dependency Node.js installer, MCP server, one-line install. It has 60 GitHub stars.
genspark-claw's catalog security scan is still queued. You can run an instant dependency and prompt-injection check now with the "Scan for vulnerabilities" button above.
Clone the repository with "git clone https://github.com/breakstageaxe61/genspark-claw" and add it to your Claude Code skills directory (see the Installation section above).
genspark-claw is primarily written in JavaScript. It is open-source under breakstageaxe61 on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh genspark-claw against similar tools.
No comments yet. Be the first to share your thoughts!