A collection of personal OpenClaw addonsβincluding skills, extensions, and channelsβalong with advanced use cases built for the OpenClaw AI Agent framework.
Currently available and actively maintained addons:
| Status | Name | Type | Description | Link |
|---|---|---|---|---|
| β | Google Calendar | Extension |
Read-only Google Calendar integration. Empowers the LLM to autonomously query events, analyze daily schedules, and extract meeting details using natural language. | View Details |
| β | Weibo Agent | Extension |
Read-only Weibo integration. Empowers the LLM to fetch a user's recent posts, monitor activity, and summarize timelines. | View Details |
(Click on "View Details" to see the specific setup guide, tools, and technical implementation for each addon.)
This repository is structured as a monorepo for OpenClaw plugins:
openclaw-addons/
βββ README.md # π You are here (Project Overview)
βββ google-calendar/ # π
Google Calendar Plugin
β βββ extensions/
β β βββ google-calendar/ # The actual Agent tools (Logic, APIs & OAuth integration)
β β βββ index.ts # Core logic & Google API integration
β β βββ openclaw.plugin.json
β β βββ package.json
β βββ Skills/
β β βββ google-calendar/
β β βββ SKILL.md # LLM behavior guidance & Prompt Overrides
β βββ Standalone-Prompt.md # Standalone instruction-based tasks
β βββ README.md # Detailed setup & OAuth instructions
βββ weibo/ # π± Weibo Plugin
βββ extensions/
β βββ weibo/ # The actual Agent tools (Weibo API integration)
β βββ index.ts # Core logic & Weibo API integration
β βββ openclaw.plugin.json
β βββ package.json
βββ Skills/
β βββ weibo/ # Weibo Skill folder
β βββ SKILL.md # Weibo behavior guidance
βββ README.md # Detailed setup & usage instructions
Clone and copy into your OpenClaw plugin directory:
git clone https://github.com/Eric-LLMs/openclaw-skills.git
cp -r openclaw-skills/google-calendar/extensions/google-calendar ~/.openclaw/extensions/
cp -r openclaw-skills/google-calendar/Skills/google-calendar ~/.openclaw/Skills/
cp -r openclaw-skills/weibo/extensions/weibo ~/.openclaw/extensions/
cp -r openclaw-skills/weibo/Skills/weibo ~/.openclaw/Skills/