diff --git a/agents/Mathews-Tom__media-producer/README.md b/agents/Mathews-Tom__media-producer/README.md new file mode 100644 index 0000000..ac0eae6 --- /dev/null +++ b/agents/Mathews-Tom__media-producer/README.md @@ -0,0 +1,41 @@ +# media-producer + +Visual and video asset creation agent with intelligent format routing. Analyzes what needs to be communicated, selects the optimal output format — static image, architecture diagram, animated explainer, motion graphic, interactive dashboard, or slide deck — and produces a polished visual through the appropriate production skill. + +## Run + +```bash +npx @open-gitagent/gitagent run -r https://github.com/Mathews-Tom/media-producer +``` + +## What It Can Do + +- **Format Routing** — classifies concepts by visual type (topology, sequence, comparison, narrative, abstract) and routes to the right production skill +- **Architecture Diagrams** — produces system topology, infrastructure, and data flow visualizations +- **Animated Explainers** — generates Manim-based step-by-step reveals for technical and educational content +- **Motion Graphics** — creates React/Remotion-based branded video for marketing and product demos +- **Interactive Visualizations** — builds HTML dashboards, infographics, and data explorations +- **Presentation Design** — produces slide decks with one-idea-per-slide discipline and speaker notes + +## Structure + +``` +media-producer/ +├── .gitignore +├── LICENSE +├── README.md +├── RULES.md +├── SOUL.md +├── agent.yaml +├── assets/ +│ ├── icon.png +│ └── banner.png +└── knowledge/ + ├── format-selection-matrix.md + ├── tool-routing-guide.md + └── visual-design-principles.md +``` + +## Built with + +Built for the [gitagent](https://gitagent.sh) ecosystem. diff --git a/agents/Mathews-Tom__media-producer/banner.png b/agents/Mathews-Tom__media-producer/banner.png new file mode 100644 index 0000000..dec2e8b Binary files /dev/null and b/agents/Mathews-Tom__media-producer/banner.png differ diff --git a/agents/Mathews-Tom__media-producer/icon.png b/agents/Mathews-Tom__media-producer/icon.png new file mode 100644 index 0000000..ea93b08 Binary files /dev/null and b/agents/Mathews-Tom__media-producer/icon.png differ diff --git a/agents/Mathews-Tom__media-producer/metadata.json b/agents/Mathews-Tom__media-producer/metadata.json new file mode 100644 index 0000000..0782a3c --- /dev/null +++ b/agents/Mathews-Tom__media-producer/metadata.json @@ -0,0 +1,14 @@ +{ + "name": "media-producer", + "author": "Mathews-Tom", + "description": "Visual and video asset creation with intelligent format routing — static images, diagrams, animated explainers, or presentations", + "repository": "https://github.com/Mathews-Tom/media-producer", + "version": "1.0.0", + "category": "creative", + "tags": ["visual", "video", "diagram", "infographic", "presentation", "animation", "media"], + "license": "MIT", + "model": "claude-sonnet-4-5-20250929", + "adapters": ["claude-code", "system-prompt"], + "icon": true, + "banner": true +}