feat: Add GLM Tools, Skills & Agents collection
This commit is contained in:
245
README.md
Normal file
245
README.md
Normal file
@@ -0,0 +1,245 @@
|
||||
# GLM Tools, Skills & Agents
|
||||
|
||||
Comprehensive collection of AI platform skills, expert agents, and development tooling from MiniMax, Super Z (GLM), and z.ai platforms.
|
||||
|
||||
---
|
||||
|
||||
## Repository Structure
|
||||
|
||||
```
|
||||
GLM-Tools-Skills-Agents/
|
||||
├── skills/ # Claude Code compatible skills
|
||||
│ ├── minimax-experts/ # 40 AI experts from MiniMax platform
|
||||
│ ├── glm-skills/ # Super Z/GLM multimodal skills
|
||||
│ ├── zai-tooling-reference/ # Next.js 15 development patterns
|
||||
│ └── ai-platforms-consolidated/ # Cross-platform reference
|
||||
├── codebases/ # Reference codebases
|
||||
│ └── z-ai-tooling/ # Full Next.js 15 + React 19 project
|
||||
├── original-docs/ # Original source documentation
|
||||
│ ├── minimax_experts_data.md # MiniMax experts JSON data
|
||||
│ ├── MINIMAX_EXPERT_CATALOG.md # MiniMax catalog (human-readable)
|
||||
│ └── GLM5_AGENTS_AND_SKILLS.md # Super Z agents & skills docs
|
||||
└── README.md # This file
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Skills Overview
|
||||
|
||||
### 1. MiniMax Experts (`skills/minimax-experts/`)
|
||||
|
||||
40 AI experts from the MiniMax platform (agent.minimax.io), organized by category:
|
||||
|
||||
| Category | Count | Top Experts |
|
||||
|----------|-------|-------------|
|
||||
| Content Creation | 12 | Landing Page Builder, Visual Lab, Video Story Generator |
|
||||
| Finance | 7 | Hedge Fund Expert Team, Crypto Trading Agent |
|
||||
| Development | 5 | Mini Coder Max, Peak Coder, Prompt Development Studio |
|
||||
| Career | 5 | Job Hunter Agent, CV Optimization Expert |
|
||||
| Business | 3 | PRD Assistant, SaaS Niche Finder, CEO Assistant |
|
||||
| Marketing | 2 | Social Media Marketing Expert, Creative Director For Ads |
|
||||
|
||||
**Auto-Triggers On:** agent design, trading, landing pages, PRD, CV optimization, marketing, visual content
|
||||
|
||||
### 2. GLM Skills (`skills/glm-skills/`)
|
||||
|
||||
Super Z (z.ai) platform multimodal AI capabilities using `z-ai-web-dev-sdk`:
|
||||
|
||||
| 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 On:** ASR, TTS, image/video generation, PDF/DOCX/XLSX, web search, multimodal
|
||||
|
||||
### 3. Z.AI Tooling Reference (`skills/zai-tooling-reference/`)
|
||||
|
||||
Production-ready Next.js 15 development patterns and components:
|
||||
|
||||
| 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 On:** Next.js, shadcn/ui, Prisma, WebSocket, React 19, full-stack development
|
||||
|
||||
### 4. AI Platforms Consolidated (`skills/ai-platforms-consolidated/`)
|
||||
|
||||
Cross-platform comparison and quick reference guide combining all sources.
|
||||
|
||||
**Auto-Triggers On:** platform comparisons, SDK patterns, cross-platform, agent design patterns
|
||||
|
||||
---
|
||||
|
||||
## Codebase Reference
|
||||
|
||||
### Z.AI Tooling (`codebases/z-ai-tooling/`)
|
||||
|
||||
Full Next.js 15 project with:
|
||||
|
||||
- **50+ shadcn/ui components** in `src/components/ui/`
|
||||
- **Prisma schema** with User and Post models
|
||||
- **WebSocket example** (Socket.io) for real-time features
|
||||
- **z-ai-web-dev-sdk integration** patterns
|
||||
- **Complete project structure** for production deployment
|
||||
|
||||
```bash
|
||||
# Navigate to codebase
|
||||
cd codebases/z-ai-tooling
|
||||
|
||||
# Install dependencies
|
||||
bun install
|
||||
|
||||
# Start development
|
||||
bun run dev
|
||||
|
||||
# Database operations
|
||||
bun run db:push # Push schema changes
|
||||
bun run db:generate # Generate Prisma client
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Installation for Claude Code
|
||||
|
||||
### Quick Install
|
||||
|
||||
Copy skills to your Claude Code skills directory:
|
||||
|
||||
```bash
|
||||
# Copy all skills
|
||||
cp -r skills/* ~/.claude/skills/
|
||||
|
||||
# Or copy individually
|
||||
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/
|
||||
```
|
||||
|
||||
### Copy Codebase Reference
|
||||
|
||||
```bash
|
||||
# Copy codebase for reference
|
||||
cp -r codebases/z-ai-tooling ~/reference-codebases/
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Auto-Trigger Configuration
|
||||
|
||||
All skills include auto-trigger capabilities:
|
||||
|
||||
```yaml
|
||||
# Example from minimax-experts/SKILL.md
|
||||
---
|
||||
name: minimax-experts
|
||||
description: "Reference catalog of 40 AI experts from MiniMax platform..."
|
||||
priority: 100
|
||||
autoTrigger: true
|
||||
triggers:
|
||||
- "agent design"
|
||||
- "hedge fund"
|
||||
- "landing page"
|
||||
- "PRD"
|
||||
- ...
|
||||
---
|
||||
```
|
||||
|
||||
### Trigger Examples
|
||||
|
||||
| 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` |
|
||||
|
||||
---
|
||||
|
||||
## SDK Quick Reference
|
||||
|
||||
### z-ai-web-dev-sdk Usage
|
||||
|
||||
```javascript
|
||||
import ZAI from 'z-ai-web-dev-sdk';
|
||||
|
||||
const zai = await ZAI.create();
|
||||
|
||||
// LLM Chat
|
||||
const completion = await zai.chat.completions.create({
|
||||
messages: [
|
||||
{ role: 'system', content: 'You are helpful.' },
|
||||
{ role: 'user', content: 'Hello!' }
|
||||
]
|
||||
});
|
||||
|
||||
// Image Generation
|
||||
const image = await zai.images.generations.create({
|
||||
prompt: 'A sunset over mountains',
|
||||
size: '1024x1024'
|
||||
});
|
||||
|
||||
// Web Search
|
||||
const results = await zai.functions.invoke("web_search", {
|
||||
query: "latest AI news",
|
||||
num: 10
|
||||
});
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Sources
|
||||
|
||||
| Source | Platform | URL |
|
||||
|--------|----------|-----|
|
||||
| MiniMax Experts | MiniMax Agent Platform | https://agent.minimax.io/experts |
|
||||
| GLM Skills | Super Z (z.ai) | Internal platform |
|
||||
| Z.AI Tooling | z.ai Development | Internal platform |
|
||||
|
||||
---
|
||||
|
||||
## Update History
|
||||
|
||||
| Date | Changes |
|
||||
|------|---------|
|
||||
| 2026-02-13 | Initial repository setup with all skills, agents, and codebases |
|
||||
|
||||
---
|
||||
|
||||
## License
|
||||
|
||||
Reference documentation collected from publicly available AI platform resources for educational and development purposes.
|
||||
|
||||
---
|
||||
|
||||
## Quick Links
|
||||
|
||||
- **MiniMax Platform**: https://agent.minimax.io
|
||||
- **z-ai-web-dev-sdk**: Available via npm/bun
|
||||
- **shadcn/ui**: https://ui.shadcn.com
|
||||
- **Next.js**: https://nextjs.org
|
||||
- **Prisma**: https://prisma.io
|
||||
|
||||
---
|
||||
|
||||
*Generated on 2026-02-13*
|
||||
Reference in New Issue
Block a user