Agent skill
report-generator
Multi-AI collaborative report generator. Uses Claude for planning/writing and Gemini for diagram generation. Creates professional reports with auto-generated figures from your research content.
Install this agent skill to your Project
npx add-skill https://github.com/haoyu-haoyu/Multi-AI-Workflow/tree/main/.maw/skills/report-generator
SKILL.md
MAW Report Generator
Generate professional reports with auto-generated diagrams from your research content.
Features
- Multi-AI Collaboration: Claude plans structure, Gemini generates diagrams
- Smart Diagram Generation: Auto-detects where figures would enhance content
- Fallback Support: Uses Mermaid diagrams when image generation is unavailable
- Professional Output: Academic/professional style Markdown reports
Quick Start
# Generate report from content
python report_generator.py --topic "My Research Topic" --content "Your research content..."
# Generate from file
python report_generator.py --topic "AI Architecture" --content-file research.txt --output report.md
# Generate single diagram
python report_generator.py --diagram-only "System architecture showing client, server, and database"
Output
- Markdown report with sections, diagrams, and conclusion
- Mermaid diagrams embedded (renders in GitHub, VS Code, etc.)
- Image files when native generation available
Workflow
graph TD
A[Input: Research Content] --> B[Claude: Analyze & Structure]
B --> C[Claude: Identify Diagram Needs]
C --> D[Gemini: Generate Diagrams]
D --> E[Claude: Write Sections]
E --> F[Compile Final Report]
F --> G[Output: report.md]
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
collaborating-with-codex
Delegates coding tasks to Codex CLI for prototyping, debugging, and code review. Use when needing algorithm implementation, bug analysis, or code quality feedback. Supports multi-turn sessions via SESSION_ID.
collaborating-with-gemini
Delegates coding tasks to Gemini CLI for prototyping, debugging, and code review. Use when needing algorithm implementation, bug analysis, or code quality feedback. Supports multi-turn sessions via SESSION_ID.
verl-rl-training
Provides guidance for training LLMs with reinforcement learning using verl (Volcano Engine RL). Use when implementing RLHF, GRPO, PPO, or other RL algorithms for LLM post-training at scale with flexible infrastructure backends.
openrlhf-training
High-performance RLHF framework with Ray+vLLM acceleration. Use for PPO, GRPO, RLOO, DPO training of large models (7B-70B+). Built on Ray, vLLM, ZeRO-3. 2× faster than DeepSpeedChat with distributed architecture and GPU resource sharing.
gguf-quantization
GGUF format and llama.cpp quantization for efficient CPU/GPU inference. Use when deploying models on consumer hardware, Apple Silicon, or when needing flexible quantization from 2-8 bit without GPU requirements.
Claude Code Guide
Master guide for using Claude Code effectively. Includes configuration templates, prompting strategies "Thinking" keywords, debugging techniques, and best practices for interacting with the agent.
Didn't find tool you were looking for?