Claude Code Skill
Skill by enderfga
Why use this skill?
Orchestrate MCP servers, persist agent state with IndexedDB, and sync sessions across devices with the OpenClaw Claude Code Skill.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/enderfga/claude-code-skillWhat This Skill Does
The Claude Code Skill is a high-level integration for the OpenClaw agent architecture, designed to bridge the gap between agentic workflows and the Model Context Protocol (MCP). By enabling deep orchestration of MCP servers, this skill allows users to connect to local filesystems, GitHub repositories, and various other tool servers seamlessly. Beyond simple connectivity, it provides robust state persistence via IndexedDB and localStorage, ensuring that your agent's context and session data survive across restarts. Furthermore, the skill includes specialized utility functions for session synchronization, allowing you to merge configurations and chat history across multiple client instances or devices.
Installation
To integrate this skill into your environment, run the following command in your terminal:
npm install openclaw-claude-code-skill
After installation, ensure your mcp_config.json is correctly defined in your project root to handle server authentication and command pathways. You can also utilize the Clawhub installer for rapid deployment:
clawhub install openclaw/skills/skills/enderfga/claude-code-skill
Use Cases
- Sub-Agent Orchestration: Manage complex, multi-step tasks by spinning up specific MCP servers (e.g., a filesystem server for code editing and a GitHub server for version control) on demand.
- State Retention: Build persistent agent assistants that remember previous project contexts, tool configurations, and user preferences even after the application session closes.
- Cross-Device Sync: Keep your coding workspace consistent by merging session data and configuration files across desktop, cloud-based, or mobile OpenClaw environments.
Example Prompts
- "Initialize the filesystem MCP server and list all available tools so I can start editing the local project files."
- "Merge my current session data with the remote configuration file to synchronize my settings across all devices."
- "Create a persistent store for this conversation history and ensure it saves to IndexedDB so I don't lose the context when I restart the agent."
Tips & Limitations
- Resource Management: Always use
pauseMcpServerorremoveMcpServerwhen a tool is not in active use to free up system memory and local port bindings. - Data Consistency: When performing merges, ensure your
mcp_config.jsonschema is aligned across environments to prevent conflict resolution errors during themergeWithUpdateprocess. - Security: Be mindful when exposing local directories via the filesystem MCP server, as the agent will inherit your system permissions.
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-enderfga-claude-code-skill": {
"enabled": true,
"auto_update": true
}
}
}Tags(AI)
Flags: network-access, file-write, file-read, code-execution
Related Skills
claude-code-skill
Control Claude Code via MCP protocol. Execute commands, read/write files, search code, and use all Claude Code tools programmatically with agent team support.
Async Task
Skill by enderfga
three-minds
三个能干活的 AI 分身协作系统。用 Claude Code 启动三个不同人设的 coding agent,共享同一个工作目录,多轮协作直到达成共识。适用于代码审查、方案评审、重构任务等需要多视角协作的场景。