Files
GLM-Tools-Skills-Agents/README.md

233 lines
6.1 KiB
Markdown
Executable File

# 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/
├── 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 Overview
### 1. MiniMax Experts (`skills/minimax-experts/`)
40 AI experts from the MiniMax platform (agent.minimax.io):
| 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:** agent design, trading, landing pages, PRD, CV optimization
### 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 |
**Auto-Triggers:** ASR, TTS, image/video generation, PDF/DOCX, multimodal
### 3. Z.AI Tooling Reference (`skills/zai-tooling-reference/`)
Production-ready Next.js 16 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 |
**Auto-Triggers:** Next.js, shadcn/ui, Prisma, WebSocket, React 19
### 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
---
## 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
```
Open [http://localhost:3000](http://localhost:3000).
---
## Installation for Claude Code
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/
```
---
## SDK Quick Reference
### z-ai-web-dev-sdk
```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
});
```
---
## 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 |
|--------|----------|-----|
| 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 |
---
## Update History
| Date | Changes |
|------|---------|
| 2026-02-13 | Merged original z.ai project with skills, agents, and documentation |
---
## Quick Links
- **MiniMax Platform**: https://agent.minimax.io
- **z-ai-web-dev-sdk**: npm/bun
- **shadcn/ui**: https://ui.shadcn.com
- **Next.js**: https://nextjs.org
- **Prisma**: https://prisma.io
---
*Updated: 2026-02-13*