Add comprehensive skills, agents, commands collection

- Added 44 external skills from obra/superpowers, ui-ux-pro-max-skill, claude-codex-settings
- Added 8 autonomous agents (commit-creator, pr-creator, pr-reviewer, etc.)
- Added 23 slash commands for Git/GitHub, setup, and plugin development
- Added hooks for code formatting, notifications, and validation
- Added MCP configurations for Azure, GCloud, Supabase, MongoDB, etc.
- Added awesome-openclaw-skills registry (3,002 skills referenced)
- Updated comprehensive README with full documentation

Sources:
- github.com/obra/superpowers (14 skills)
- github.com/nextlevelbuilder/ui-ux-pro-max-skill (1 skill)
- github.com/fcakyon/claude-codex-settings (29 skills, 8 agents, 23 commands)
- github.com/VoltAgent/awesome-openclaw-skills (registry)
- skills.sh (reference)
- buildwithclaude.com (reference)
This commit is contained in:
uroma
2026-02-13 10:30:11 +00:00
Unverified
parent 7c68dfac7b
commit 5889d3428b
169 changed files with 39927 additions and 109 deletions

406
README.md
View File

@@ -1,6 +1,21 @@
# GLM Tools, Skills & Agents
Comprehensive collection of AI platform skills, expert agents, and development tooling from MiniMax, Super Z (GLM), and z.ai platforms.
**Comprehensive collection of AI platform skills, expert agents, and development tooling** from MiniMax, Super Z (GLM), z.ai, and the open-source community.
---
## Quick Stats
| Category | Count |
|----------|-------|
| **Original Skills** | 4 |
| **External Skills** | 44 |
| **Agents** | 8 |
| **Commands** | 23 |
| **MCP Integrations** | 9 |
| **Codebases** | 1 |
| **Registries** | 1 |
| **Total Files** | 300+ |
---
@@ -8,33 +23,51 @@ Comprehensive collection of AI platform skills, expert agents, and development t
```
GLM-Tools-Skills-Agents/
├── src/ # Next.js 16 application source
│ ├── app/ # App Router pages
│ ├── components/ui/ # 50+ shadcn/ui components
│ ├── hooks/ # Custom React hooks
── lib/ # Utilities (db, utils)
├── skills/ # Claude Code compatible skills
├── minimax-experts/ # 40 AI experts from MiniMax
├── glm-skills/ # Super Z/GLM multimodal skills
├── zai-tooling-reference/ # Next.js 16 patterns
└── ai-platforms-consolidated/ # Cross-platform reference
├── codebases/ # Reference codebases
└── z-ai-tooling/ # Full Next.js 16 project copy
├── original-docs/ # Original source documentation
── minimax_experts_data.md # MiniMax experts JSON
├── MINIMAX_EXPERT_CATALOG.md # MiniMax catalog
└── GLM5_AGENTS_AND_SKILLS.md # Super Z agents & skills
├── prisma/ # Prisma schema
├── examples/ # WebSocket examples
├── db/ # SQLite database
└── .zscripts/ # Build & deploy scripts
├── skills/ # All skills
│ ├── minimax-experts/ # 40 AI experts from MiniMax
│ ├── glm-skills/ # Super Z/GLM multimodal skills
│ ├── zai-tooling-reference/ # Next.js 16 patterns
── ai-platforms-consolidated/ # Cross-platform reference
│ └── external/ # 44 external skills
├── ui-ux-pro-max/ # UI/UX design intelligence
├── brainstorming/ # Design collaboration
├── test-driven-development/ # TDD methodology
├── systematic-debugging/ # Debugging workflow
│ ├── writing-plans/ # Implementation planning
└── ... (39 more)
├── agents/ # Autonomous agents
── claude-codex-settings/
├── github-dev-commit-creator.md
├── github-dev-pr-creator.md
│ ├── github-dev-pr-reviewer.md
│ └── ... (5 more)
├── commands/ # Slash commands
│ └── claude-codex-settings/
│ ├── github-dev-commit-staged.md
│ ├── github-dev-create-pr.md
│ └── ... (21 more)
├── hooks/ # Hook configurations
├── mcp-configs/ # MCP server configs
├── codebases/ # Reference codebases
│ └── z-ai-tooling/ # Full Next.js 16 project
├── original-docs/ # Source documentation
│ ├── minimax_experts_data.md
│ ├── MINIMAX_EXPERT_CATALOG.md
│ └── GLM5_AGENTS_AND_SKILLS.md
├── registries/ # Skill registries
│ └── awesome-openclaw-skills-registry.md
├── src/ # Next.js 16 app source
├── prisma/ # Prisma schema
└── examples/ # WebSocket examples
```
---
## Skills Overview
## Skills Catalog
### 1. MiniMax Experts (`skills/minimax-experts/`)
### Original Skills (4)
#### 1. MiniMax Experts (`skills/minimax-experts/`)
40 AI experts from the MiniMax platform (agent.minimax.io):
@@ -47,111 +80,233 @@ GLM-Tools-Skills-Agents/
| Business | 3 | PRD Assistant, SaaS Niche Finder, CEO Assistant |
| Marketing | 2 | Social Media Marketing Expert, Creative Director For Ads |
**Auto-Triggers:** agent design, trading, landing pages, PRD, CV optimization
**Auto-Triggers:** `agent design`, `hedge fund`, `landing page`, `PRD`, `CV optimization`, `trading`
### 2. GLM Skills (`skills/glm-skills/`)
#### 2. GLM Skills (`skills/glm-skills/`)
Super Z (z.ai) multimodal capabilities using `z-ai-web-dev-sdk`:
| Skill | Description |
|-------|-------------|
| ASR | Speech-to-text transcription |
| TTS | Text-to-speech synthesis |
| VLM | Vision language model |
| Image Generation | AI image creation |
| Video Generation | AI video creation |
| PDF/DOCX/XLSX/PPTX | Document processing |
| Web Search | Real-time web search |
| Podcast | Podcast generation |
| Skill | Command | Description |
|-------|---------|-------------|
| ASR | `ASR` | Speech-to-text transcription |
| TTS | `TTS` | Text-to-speech synthesis |
| LLM | `LLM` | Large language model chat |
| VLM | `VLM` | Vision language model |
| Image Generation | `image-generation` | AI image creation |
| Video Generation | `video-generation` | AI video creation |
| PDF | `pdf` | PDF processing toolkit |
| DOCX | `docx` | Word document processing |
| XLSX | `xlsx` | Spreadsheet processing |
| PPTX | `pptx` | Presentation processing |
| Web Search | `web-search` | Real-time web search |
| Web Reader | `web-reader` | Web content extraction |
| Podcast | `podcast-generate` | Podcast episode generation |
**Auto-Triggers:** ASR, TTS, image/video generation, PDF/DOCX, multimodal
**Auto-Triggers:** `ASR`, `TTS`, `image/video generation`, `PDF/DOCX`, `multimodal`
### 3. Z.AI Tooling Reference (`skills/zai-tooling-reference/`)
#### 3. Z.AI Tooling Reference (`skills/zai-tooling-reference/`)
Production-ready Next.js 16 patterns:
Production-ready Next.js 16 development patterns:
| Technology | Version |
|------------|---------|
| Next.js | 16.1.1 |
| React | 19 |
| TypeScript | 5 |
| Tailwind CSS | 4 |
| shadcn/ui | 50+ components |
| Prisma | Latest |
| SQLite | Built-in |
| Zustand | State management |
| TanStack Query | Data fetching |
| Category | Technology |
|----------|------------|
| Framework | Next.js 16.1.1 + React 19 |
| Language | TypeScript 5 |
| Styling | Tailwind CSS 4 |
| UI Components | shadcn/ui (50+ components) |
| Database | Prisma + SQLite |
| State | Zustand |
| Data Fetching | TanStack Query |
| AI SDK | z-ai-web-dev-sdk |
| Auth | NextAuth |
| Package Manager | Bun |
**Auto-Triggers:** Next.js, shadcn/ui, Prisma, WebSocket, React 19
**Auto-Triggers:** `Next.js`, `shadcn/ui`, `Prisma`, `WebSocket`, `React 19`
### 4. AI Platforms Consolidated (`skills/ai-platforms-consolidated/`)
#### 4. AI Platforms Consolidated (`skills/ai-platforms-consolidated/`)
Cross-platform comparison and quick reference.
---
## Technology Stack (Root Project)
### Core Framework
- **Next.js 16** - App Router
- **React 19** - Latest React
- **TypeScript 5** - Type safety
- **Tailwind CSS 4** - Styling
### UI Components
- **shadcn/ui** - 50+ components
- **Lucide React** - Icons
- **Framer Motion** - Animations
### State & Data
- **Zustand** - State management
- **TanStack Query** - Data fetching
- **Prisma** - ORM
- **SQLite** - Database
### Forms & Validation
- **React Hook Form** - Forms
- **Zod** - Schema validation
### Auth & Backend
- **NextAuth.js** - Authentication
**Auto-Triggers:** `platform comparisons`, `SDK patterns`, `cross-platform`
---
## Quick Start
### External Skills (44)
#### From obra/superpowers (14 Skills)
| Skill | Purpose | Category |
|-------|---------|----------|
| `brainstorming` | Design collaboration before creative work | Collaboration |
| `writing-plans` | Planning multi-step tasks | Planning |
| `executing-plans` | Execute plans with review checkpoints | Execution |
| `subagent-driven-development` | Independent task execution | Workflow |
| `test-driven-development` | TDD methodology - RED-GREEN-REFACTOR | Testing |
| `systematic-debugging` | Root cause investigation before fixes | Debugging |
| `requesting-code-review` | Verify work meets requirements | Quality |
| `receiving-code-review` | Implement review feedback | Quality |
| `finishing-a-development-branch` | Merge/PR/keep/discard decisions | Git |
| `dispatching-parallel-agents` | Run 2+ independent tasks | Workflow |
| `verification-before-completion` | Verify before claiming done | Quality |
| `using-git-worktrees` | Isolated feature branches | Git |
| `writing-skills` | Create and edit skills | Meta |
| `using-superpowers` | Getting started guide | Meta |
#### From nextlevelbuilder/ui-ux-pro-max-skill (1 Skill)
| Skill | Purpose | Features |
|-------|---------|----------|
| `ui-ux-pro-max` | UI/UX design intelligence | 67 styles, 96 color palettes, 57 font pairings, 99 UX guidelines, 25 chart types, 13 tech stacks |
**Supported Platforms:** Claude Code, Cursor, Windsurf, Codex CLI, OpenCode, GitHub Copilot, and 10+ more
#### From fcakyon/claude-codex-settings (29 Skills)
| Skill | Plugin | Purpose |
|-------|--------|---------|
| `azure-tools-azure-usage` | azure-tools | Azure MCP (40+ services) |
| `gcloud-tools-gcloud-usage` | gcloud-tools | Google Cloud observability |
| `github-dev-commit-workflow` | github-dev | Git commit workflow |
| `github-dev-pr-workflow` | github-dev | Pull request workflow |
| `linear-tools-linear-usage` | linear-tools | Issue tracking integration |
| `mongodb-tools-mongodb-usage` | mongodb-tools | Database exploration (read-only) |
| `paper-search-tools-paper-search-usage` | paper-search | Academic paper search |
| `playwright-tools-playwright-testing` | playwright-tools | Browser automation & testing |
| `slack-tools-slack-usage` | slack-tools | Slack integration |
| `supabase-tools-supabase-usage` | supabase-tools | Supabase database patterns |
| `tavily-tools-tavily-usage` | tavily-tools | Web search & extraction |
| `plugin-dev-agent-development` | plugin-dev | Build autonomous agents |
| `plugin-dev-command-development` | plugin-dev | Create custom commands |
| `plugin-dev-hook-development` | plugin-dev | Create hooks |
| `plugin-dev-mcp-integration` | plugin-dev | Configure MCP servers |
| `plugin-dev-plugin-settings` | plugin-dev | Per-project configuration |
| `plugin-dev-plugin-structure` | plugin-dev | Plugin layout |
| `plugin-dev-skill-development` | plugin-dev | Create reusable skills |
| `*-setup` | Various | Setup guides for each tool |
---
## Agents Catalog (8)
### From claude-codex-settings
| Agent | Plugin | Purpose | Triggers |
|-------|--------|---------|----------|
| `commit-creator` | github-dev | Intelligent Git commit workflow | staged files, commit message |
| `pr-creator` | github-dev | Pull request creation | create PR, make pull request |
| `pr-reviewer` | github-dev | Code review (bugs, security, performance) | review PR, code review |
| `code-simplifier` | general-dev | Pattern consistency enforcer | Auto-triggers after TodoWrite |
| `responsive-tester` | playwright-tools | Viewport testing (375px to 1536px) | test responsiveness |
| `agent-creator` | plugin-dev | AI-assisted agent generation | create agent |
| `plugin-validator` | plugin-dev | Plugin structure validation | validate plugin |
| `skill-reviewer` | plugin-dev | Improve skill quality | review skill |
---
## Commands Catalog (23)
### Git/GitHub Commands
| Command | Description |
|---------|-------------|
| `/github-dev-commit-staged` | Commit staged changes with semantic messages |
| `/github-dev-create-pr` | Create pull request |
| `/github-dev-review-pr` | Review pull request |
| `/github-dev-clean-gone-branches` | Clean deleted remote branches |
| `/github-dev-update-pr-summary` | Update PR summary |
### Claude Tools Commands
| Command | Description |
|---------|-------------|
| `/claude-tools-load-claude-md` | Load CLAUDE.md context |
| `/claude-tools-load-frontend-skill` | Load frontend skill |
| `/claude-tools-sync-allowlist` | Sync permissions allowlist |
| `/claude-tools-sync-claude-md` | Sync CLAUDE.md to project |
### Plugin Development Commands
| Command | Description |
|---------|-------------|
| `/plugin-dev-create-plugin` | 8-phase guided plugin workflow |
| `/plugin-dev-load-skills` | Load plugin development skills |
### Setup Commands
| Command | Description |
|---------|-------------|
| `/azure-tools-setup` | Configure Azure MCP |
| `/gcloud-tools-setup` | Configure Google Cloud MCP |
| `/linear-tools-setup` | Configure Linear MCP |
| `/mongodb-tools-setup` | Configure MongoDB MCP |
| `/paper-search-tools-setup` | Configure paper search |
| `/playwright-tools-setup` | Configure Playwright |
| `/slack-tools-setup` | Configure Slack MCP |
| `/supabase-tools-setup` | Configure Supabase MCP |
| `/tavily-tools-setup` | Configure Tavily MCP |
| `/statusline-tools-setup` | Configure statusline |
| `/ccproxy-tools-setup` | Configure CC proxy |
---
## MCP Integrations (9)
| MCP Server | Package | Features |
|------------|---------|----------|
| Azure | `@azure/mcp@latest` | 40+ Azure services |
| Google Cloud | `gcloud-observability-mcp` | Logs, metrics, traces |
| GitHub | Built-in | PRs, issues, workflows |
| Linear | `linear-mcp` | Issue tracking |
| MongoDB | `mongodb-mcp-server` | Database exploration (read-only) |
| Playwright | `@playwright/mcp@latest` | Browser automation |
| Slack | `slack-mcp-server` | Message search, channel history |
| Supabase | HTTP endpoint | Database, Auth, RLS |
| Tavily | `tavily-mcp@latest` | Web search & extraction |
---
## Codebase Reference
### Z.AI Tooling (`codebases/z-ai-tooling/`)
Full Next.js 16 project with:
- **50+ shadcn/ui components** in `src/components/ui/`
- **Prisma schema** with User and Post models
- **WebSocket example** (Socket.io)
- **z-ai-web-dev-sdk integration**
- **Complete project structure**
```bash
# Install dependencies
cd codebases/z-ai-tooling
bun install
# Start development server
bun run dev
# Database operations
bun run db:push # Push schema changes
bun run db:generate # Generate Prisma client
# Build for production
bun run build
```
Open [http://localhost:3000](http://localhost:3000).
---
## Installation for Claude Code
## Installation
Copy skills to your Claude Code skills directory:
### For Claude Code
```bash
# Copy all skills
cp -r skills/* ~/.claude/skills/
# Or copy individually
# Copy specific skill categories
cp -r skills/minimax-experts ~/.claude/skills/
cp -r skills/glm-skills ~/.claude/skills/
cp -r skills/zai-tooling-reference ~/.claude/skills/
cp -r skills/ai-platforms-consolidated ~/.claude/skills/
cp -r skills/external/* ~/.claude/skills/
```
### From skills.sh
```bash
npx skills add vercel-labs/agent-skills
npx skills add obra/superpowers
npx skills add nextlevelbuilder/ui-ux-pro-max-skill
```
---
@@ -188,19 +343,6 @@ const results = await zai.functions.invoke("web_search", {
---
## Auto-Trigger Configuration
All skills include auto-trigger capabilities:
| User Says | Skill Triggered |
|-----------|-----------------|
| "I need a landing page" | `minimax-experts` |
| "How do I use speech-to-text?" | `glm-skills` |
| "Set up Prisma with Next.js" | `zai-tooling-reference` |
| "Compare MiniMax vs Super Z" | `ai-platforms-consolidated` |
---
## Sources
| Source | Platform | URL |
@@ -208,6 +350,47 @@ All skills include auto-trigger capabilities:
| MiniMax Experts | MiniMax Agent | https://agent.minimax.io/experts |
| GLM Skills | Super Z (z.ai) | Internal platform |
| Z.AI Tooling | z.ai Development | Internal platform |
| Superpowers | obra/superpowers | https://github.com/obra/superpowers |
| UI/UX Pro Max | nextlevelbuilder | https://github.com/nextlevelbuilder/ui-ux-pro-max-skill |
| Claude Codex Settings | fcakyon | https://github.com/fcakyon/claude-codex-settings |
| OpenClaw Skills | VoltAgent | https://github.com/VoltAgent/awesome-openclaw-skills |
| Skills.sh | Vercel Labs | https://skills.sh/ |
| Build with Claude | Community | https://www.buildwithclaude.com |
---
## Technology Stack (Root Project)
| Category | Technology |
|----------|------------|
| Framework | Next.js 16 + React 19 |
| Language | TypeScript 5 |
| Styling | Tailwind CSS 4 |
| UI | shadcn/ui (50+ components) |
| State | Zustand |
| Data | TanStack Query |
| Database | Prisma + SQLite |
| Auth | NextAuth.js |
| Forms | React Hook Form + Zod |
---
## Quick Start
```bash
# Install dependencies
bun install
# Start development server
bun run dev
# Database operations
bun run db:push # Push schema changes
bun run db:generate # Generate Prisma client
# Build for production
bun run build
```
---
@@ -215,17 +398,22 @@ All skills include auto-trigger capabilities:
| Date | Changes |
|------|---------|
| 2026-02-13 | Merged original z.ai project with skills, agents, and documentation |
| 2026-02-13 | Initial repository with GLM skills |
| 2026-02-13 | Added obra/superpowers (14 skills) |
| 2026-02-13 | Added ui-ux-pro-max-skill (1 skill) |
| 2026-02-13 | Added claude-codex-settings (29 skills, 8 agents, 23 commands) |
| 2026-02-13 | Added awesome-openclaw-skills registry (3,002 skills referenced) |
---
## Quick Links
- **MiniMax Platform**: https://agent.minimax.io
- **z-ai-web-dev-sdk**: npm/bun
- **Skills.sh**: https://skills.sh/
- **shadcn/ui**: https://ui.shadcn.com
- **Next.js**: https://nextjs.org
- **Prisma**: https://prisma.io
- **Superpowers**: https://github.com/obra/superpowers
---