Skip to content

Eric-LLMs/openclaw-addons

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

16 Commits
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

🦞 OpenClaw Custom Addons & Use Cases

TypeScript AI Agents Status

A collection of personal OpenClaw addonsβ€”including skills, extensions, and channelsβ€”along with advanced use cases built for the OpenClaw AI Agent framework.


🧩 Addons Catalog

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


πŸ“‚ Repository Structure

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

Usage

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/

Packages

 
 
 

Contributors