Skip to content

Commit 58cb0a2

Browse files
committed
feat: add media-producer agent to registry
Register Mathews-Tom/media-producer in the gitagent registry.
1 parent 601aee3 commit 58cb0a2

File tree

4 files changed

+55
-0
lines changed

4 files changed

+55
-0
lines changed
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# media-producer
2+
3+
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.
4+
5+
## Run
6+
7+
```bash
8+
npx @open-gitagent/gitagent run -r https://github.com/Mathews-Tom/media-producer
9+
```
10+
11+
## What It Can Do
12+
13+
- **Format Routing** — classifies concepts by visual type (topology, sequence, comparison, narrative, abstract) and routes to the right production skill
14+
- **Architecture Diagrams** — produces system topology, infrastructure, and data flow visualizations
15+
- **Animated Explainers** — generates Manim-based step-by-step reveals for technical and educational content
16+
- **Motion Graphics** — creates React/Remotion-based branded video for marketing and product demos
17+
- **Interactive Visualizations** — builds HTML dashboards, infographics, and data explorations
18+
- **Presentation Design** — produces slide decks with one-idea-per-slide discipline and speaker notes
19+
20+
## Structure
21+
22+
```
23+
media-producer/
24+
├── .gitignore
25+
├── LICENSE
26+
├── README.md
27+
├── RULES.md
28+
├── SOUL.md
29+
├── agent.yaml
30+
├── assets/
31+
│ ├── icon.png
32+
│ └── banner.png
33+
└── knowledge/
34+
├── format-selection-matrix.md
35+
├── tool-routing-guide.md
36+
└── visual-design-principles.md
37+
```
38+
39+
## Built with
40+
41+
Built for the [gitagent](https://gitagent.sh) ecosystem.
230 KB
Loading
14.3 KB
Loading
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"name": "media-producer",
3+
"author": "Mathews-Tom",
4+
"description": "Visual and video asset creation with intelligent format routing — static images, diagrams, animated explainers, or presentations",
5+
"repository": "https://github.com/Mathews-Tom/media-producer",
6+
"version": "1.0.0",
7+
"category": "creative",
8+
"tags": ["visual", "video", "diagram", "infographic", "presentation", "animation", "media"],
9+
"license": "MIT",
10+
"model": "claude-sonnet-4-5-20250929",
11+
"adapters": ["claude-code", "system-prompt"],
12+
"icon": true,
13+
"banner": true
14+
}

0 commit comments

Comments
 (0)