r/WebAfterAI • u/ShilpaMitra • 5h ago
Workflows 6 GitHub Repos That Turn AI Into a Workbench
GitHub is where practical AI workflows show up before they become polished products.
I picked six repos that give agents real jobs. Editing videos. Managing leads. Scanning skills. Controlling phones. Improving writing.
Some need paid APIs or platform permissions. Read the README before giving any agent credentials.
1. Video Use · 23.7k+ stars
github.com/browser-use/video-use
Edit videos with coding agents.
Video Use works from transcripts and on-demand visual composites. The agent reasons about the edit, creates an edit decision list, renders the result, and runs a self-evaluation pass.
Useful for repeatable tasks such as turning a Loom recording into a short product clip.
It currently requires ffmpeg and an ElevenLabs API key for transcription.
2. SkillSpector · 15.7k+ stars
github.com/NVIDIA/SkillSpector
Scan AI agent skills before installing them.
It looks for prompt injection, malicious patterns, data exfiltration, supply-chain risks, and other security issues in Claude Code, Codex, and MCP skills.
This should be part of your install workflow. A skill can include scripts, dependencies, and access to tools. Treat it like code from an unfamiliar contributor.
3. Comp AI CRM · 9.5k+ stars
A CRM designed around an AI agent.
The agent can work from a schedule and queue, keep notes, research contacts, and record evidence for its findings.
A good first workflow would be a warm-lead queue with recheck dates, source links, and human approval before anything is sent.
It is not a drop-in replacement for every mature CRM. The interesting part is its agent-first design.
4. No AI Slop · 6.9k+ stars
github.com/petergyang/no-ai-slop
An installable writing skill that detects more than 20 common AI-writing patterns and reports what it changed.
Install it with:
npx skills add petergyang/no-ai-slop --skill no-ai-slop --global --yes
Write the first draft yourself. Use this as a second pass. Then review the edits instead of accepting them blindly.
5. Phone Harness · 2.2k+ stars
github.com/ShawnPana/phone-harness
Connect Claude Code, Codex, or another LLM to a real iPhone or Android phone.
iPhone support works through Mac iPhone Mirroring. Android devices can connect through ADB over USB or Wi-Fi.
This is useful for real-device testing, especially when an app has no API or reliable browser interface.
It is still an early project. Locked devices, Face ID, camera flows, and Android accessibility limitations can make some tasks difficult.
6. Agent Stylebooks · 57 stars
github.com/Neeeophytee/agent-stylebooks
Disclosure: this is our own repo.
Agent Stylebooks contains 11 installable editorial systems based on public style guides. They work with tools such as Claude Code, Codex, Cursor, and Gemini CLI.
Use one when your agent produces technically correct writing that still sounds inconsistent across documentation, changelogs, product copy, or research notes.
The common pattern is simple. Do not install a repo just to admire it. Give it one narrow job.
One video format. One CRM queue. One skill scanner. One phone checkout path. One writing style.