Files
GLM-Tools-Skills-Agents/skills/ai-platforms-consolidated/SKILL.md
uroma 5889d3428b 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)
2026-02-13 10:30:11 +00:00

278 lines
7.7 KiB
Markdown

---
name: ai-platforms-consolidated
description: "Consolidated AI platforms reference. AUTO-TRIGGERS when: comparing AI platforms, cross-platform patterns, choosing between tools, MiniMax vs Super Z, multimodal capabilities overview, expert agents summary, document processing matrix, SDK patterns comparison."
priority: 90
autoTrigger: true
triggers:
- "compare platforms"
- "which platform"
- "AI platform"
- "MiniMax vs"
- "Super Z vs"
- "GLM vs"
- "cross-platform"
- "expert agent"
- "multimodal capabilities"
- "document processing"
- "image operations"
- "video operations"
- "audio operations"
- "SDK comparison"
- "tech stack comparison"
- "agent design patterns"
---
# AI Platforms Consolidated Reference
Quick reference guide combining expertise from MiniMax, Super Z (GLM), and z.ai tooling.
---
## Quick Navigation
| Need | Skill to Use | Source |
|------|-------------|--------|
| Agent design inspiration | `/minimax-experts` | MiniMax Platform |
| Multimodal AI patterns | `/glm-skills` | Super Z Platform |
| Next.js 15 development | `/zai-tooling-reference` | z.ai Tooling |
| Document processing | This file | All platforms |
---
## Platform Comparison
| Feature | MiniMax | Super Z (GLM) |
|---------|---------|---------------|
| Expert Agents | 40 | 6 subagents |
| Focus | Business/Creative | Technical/Development |
| SDK | Platform-specific | z-ai-web-dev-sdk |
| Image Generation | Built-in | SDK-based |
| Video Generation | Built-in | SDK-based |
| Document Processing | Doc Processor | PDF/DOCX/XLSX/PPTX |
| Audio | Limited | ASR + TTS |
---
## Expert Agent Categories
### Content Creation (Both Platforms)
| Expert | Platform | Best For |
|--------|----------|----------|
| Landing Page Builder | MiniMax | Marketing pages |
| Visual Lab | MiniMax | Presentations, infographics |
| Video Story Generator | MiniMax | Video from images/text |
| Icon Maker | MiniMax | App/web icons |
| image-generation | Super Z | Programmatic image creation |
| podcast-generate | Super Z | Audio content |
| story-video-generation | Super Z | Story to video |
### Finance & Trading (MiniMax)
| Expert | Specialization |
|--------|---------------|
| Hedge Fund Expert Team | 18-analyst team (Buffett, Munger perspectives) |
| AI Trading Consortium | Multi-strategy trading |
| Crypto Trading Agent | BTC/ETH/SOL with risk management |
| Quant Trading Strategist | Options, futures, backtesting |
### Development (Both Platforms)
| Expert | Platform | Specialization |
|--------|----------|---------------|
| Mini Coder Max | MiniMax | Parallel subagent coding |
| Peak Coder | MiniMax | Checklist-driven development |
| Prompt Development Studio | MiniMax | Prompt engineering |
| Remotion Video Assistant | MiniMax | React video development |
| full-stack-developer | Super Z | Next.js + Prisma |
| frontend-styling-expert | Super Z | CSS, responsive design |
### Career & Business
| Expert | Platform | Use Case |
|--------|----------|----------|
| Job Hunter Agent | MiniMax | Auto job application |
| CV Optimization Expert | MiniMax | ATS-optimized resumes |
| CEO Assistant | MiniMax | Executive support |
| PRD Assistant | MiniMax | Product requirements |
| SaaS Niche Finder | MiniMax | Business validation |
---
## Document Processing Matrix
| Format | MiniMax (Doc Processor) | Super Z Skill |
|--------|------------------------|---------------|
| PDF | Create, convert, edit | pdf skill |
| DOCX | Full lifecycle | docx skill |
| XLSX | Limited | xlsx skill (formulas, charts) |
| PPTX | Limited | pptx skill |
---
## Multimodal Capabilities
### Image Operations
| Task | MiniMax | Super Z SDK |
|------|---------|-------------|
| Generate | Icon Maker, Image Craft | `zai.images.generations.create()` |
| Edit | Image Craft Pro | `zai.images.edits.create()` |
| Understand | Limited | `image-understand` skill |
| Stickers | GIF Sticker Maker | Custom implementation |
### Video Operations
| Task | MiniMax | Super Z SDK |
|------|---------|-------------|
| Generate | Video Story Generator | `video-generation` skill |
| Understand | Limited | `video-understand` skill |
| Story to Video | Built-in | `story-video-generation` |
### Audio Operations
| Task | MiniMax | Super Z SDK |
|------|---------|-------------|
| Speech to Text | Limited | `ASR` skill |
| Text to Speech | Limited | `TTS` skill |
| Podcast | Limited | `podcast-generate` |
---
## Design Patterns Reference
### Multi-Agent Teams
```
Use when: Complex analysis requiring multiple perspectives
Pattern: Hedge Fund Expert (18 specialists)
Implementation: Spawn subagents with specific roles
```
### Safety-First Operations
```
Use when: Destructive operations, file management
Pattern: Tidy Folder (backup before, move not delete)
Implementation: Automatic backups, reversible actions
```
### One-to-Many Generation
```
Use when: Creative exploration, A/B testing
Pattern: GIF Sticker Maker (4 variations), 9 Cinematic Angles
Implementation: Single input → multiple output variations
```
### Perspective Simulation
```
Use when: Decision validation, bias checking
Pattern: AI Trading Consortium (Buffett, Lynch, Burry)
Implementation: Generate multiple expert opinions
```
### Binary Decision Systems
```
Use when: Risk management, clear action signals
Pattern: Crypto Trading Agent (EXECUTE/NO TRADE)
Implementation: Strict output constraints
```
### Multi-Format Output
```
Use when: Reaching different audiences
Pattern: Knowledge Digest (notes, quizzes, slides, audio)
Implementation: Transform single source to multiple formats
```
---
## SDK Quick Reference (z-ai-web-dev-sdk)
### Initialization
```javascript
import ZAI from 'z-ai-web-dev-sdk';
const zai = await ZAI.create();
```
### LLM Chat
```javascript
const completion = await zai.chat.completions.create({
messages: [
{ role: 'system', content: 'You are helpful.' },
{ role: 'user', content: 'Hello!' }
]
});
```
### Image Generation
```javascript
const image = await zai.images.generations.create({
prompt: 'A sunset over mountains',
size: '1024x1024'
});
// image.data[0].base64 contains the image
```
### Web Search
```javascript
const results = await zai.functions.invoke("web_search", {
query: "latest AI news",
num: 10
});
```
### Video Generation (Async)
```javascript
const task = await zai.videos.generations.create({ prompt });
const status = await zai.videos.generations.status(task.id);
const result = await zai.videos.generations.retrieve(task.id);
```
---
## Tech Stack Reference (z.ai Tooling)
| Layer | Technology |
|-------|------------|
| Framework | Next.js 16 + React 19 |
| Language | TypeScript 5 |
| Styling | Tailwind CSS 4 |
| UI | shadcn/ui (50+ components) |
| Database | Prisma + SQLite |
| State | Zustand |
| Data Fetching | TanStack Query |
| AI | z-ai-web-dev-sdk |
| Auth | NextAuth |
| Package Manager | Bun |
---
## When to Use This Reference
1. **Choosing the right tool**: Compare platforms side-by-side
2. **Cross-platform patterns**: Learn from multiple implementations
3. **SDK integration**: Quick code snippets
4. **Design decisions**: Pattern matching for your use case
5. **Skill discovery**: Find relevant capabilities
---
## Installed Skills Summary
| Skill | Location | Content |
|-------|----------|---------|
| minimax-experts | `~/.claude/skills/minimax-experts/` | 40 AI experts catalog |
| glm-skills | `~/.claude/skills/glm-skills/` | Super Z skills & SDK |
| zai-tooling-reference | `~/.claude/skills/zai-tooling-reference/` | Next.js 15 patterns |
| ai-platforms-consolidated | `~/.claude/skills/ai-platforms-consolidated/` | This file |
## Codebase Reference
| Location | Content |
|----------|---------|
| `~/reference-codebases/z-ai-tooling/` | Full Next.js 15 project |
---
*Generated from MiniMax Expert Catalog, GLM5 Agents & Skills, and z.ai Tooling documentation*
*Installation date: 2026-02-13*