Six months ago, "AI agent" basically meant "coding assistant." Claude Code, Copilot, Cursor. All doing the same thing: helping you write code.
That's changing. The most interesting open-source projects right now aren't building yet another coding agent. They're building agents that specialize: agents that trade stocks, agents that run your entire content marketing operation, agents that make your coding agent actually follow engineering discipline.
The model is the same underneath. The harness around it is what makes it useful for a specific job.
Here are four repos that show where this is heading, with setup instructions for each.
1. mattpocock/skills (91.7K stars) — Make Your Coding Agent an Actual Engineer
Repo: github.com/mattpocock/skills
Matt Pocock (the TypeScript educator behind Total TypeScript) open-sourced his personal .claude directory. It's a collection of skills that fix the most common failure modes of AI coding agents: building the wrong thing, skipping tests, producing code that works but is impossible to maintain, and declaring "done" when nothing actually compiles.
Most people treat their coding agent like an intern with no process. Matt's skills give it the process.
The standout: /grill-me
This skill forces the agent to interrogate you about what you actually want before writing a single line of code. It's a structured interview that catches misalignment before it becomes a wasted hour. There's also /grill-with-docs, which does the same thing but additionally builds a shared vocabulary between you and the agent in a CONTEXT.md file.
The CONTEXT.md approach is quietly brilliant. Instead of the agent using 20 words to describe something, you teach it your project's jargon. Over time, the agent's outputs get shorter, more precise, and the variables and functions it creates use consistent naming. It also reduces token usage, because concise terminology means shorter prompts and responses.
Other skills worth knowing
-
/tdd— Test-driven development with red-green-refactor. The agent writes a failing test first, then fixes it. Far better code quality than "write the feature, then maybe add tests." -
/diagnose— Disciplined debugging loop: reproduce, minimise, hypothesise, instrument, fix, regression-test. -
/improve-codebase-architecture— Finds structural improvements using your project's domain language fromCONTEXT.md. -
/handoff— Compacts the current conversation into a handoff document so another agent (or a new session) can continue the work without losing context. -
/caveman— Ultra-compressed communication mode. Cuts token usage by roughly 75% while keeping full technical accuracy. Useful when you're burning through credits.
Setup
npx skills@latest add mattpocock/skills
Pick the skills you want and which coding agents to install them on. Make sure you select /setup-matt-pocock-skills during install. Then run that command in your agent, and it'll configure your issue tracker (GitHub, Linear, or local files), triage labels, and docs location. Works with Claude Code, Cursor, Codex, and others.
How it compares to Addy Osmani's agent-skills
If you've seen addyosmani/agent-skills, you might wonder how these differ. Addy's skills focus on the full development lifecycle with slash commands like /spec, /plan, /build, /ship. Matt's skills focus more on engineering fundamentals: alignment, testing discipline, debugging, and architecture quality. They're complementary, not competing. You can run both in the same project.
2. AI-Trader (13.7K stars) — Let AI Agents Trade for You
Repo: github.com/HKUDS/AI-Trader
AI-Trader is an agent-native trading platform built by researchers at the University of Hong Kong. The core idea: just like humans have their trading platforms, AI agents need their own.
You connect your AI agent (Claude Code, Cursor, OpenClaw, Codex, whatever), and it can publish trading signals, copy trades from top-performing agents, participate in strategy discussions, and access real-time market data across stocks, crypto, forex, options, and futures.
Why it's interesting
This isn't just one agent making trades. It's a platform where multiple agents collaborate, debate strategies, and learn from each other. They call it "collective intelligence trading."
Agents publish three types of signals:
- Strategies — for discussion and analysis
- Operations — for direct copy trading
- Discussions — for collaborative reasoning
There's a reward system where agents earn points for successful predictions, and a $100K paper trading mode so you can test without risk.
Setup
The simplest way to connect an agent:
Read https://ai4trade.ai/SKILL.md and register.
Send that message to your AI agent. It reads the integration guide, installs the necessary components, and registers itself on the platform. For human traders, visit ai4trade.ai and sign up directly.
For developers who want to self-host:
git clone https://github.com/HKUDS/AI-Trader.git
cd AI-Trader
npm install
The backend is FastAPI (Python), frontend is React. Full OpenAPI docs are in docs/api/openapi.yaml.
A word of caution
Automated trading carries real financial risk. AI-Trader includes paper trading mode for a reason. Start there. The fact that it comes from a university research group rather than a fintech startup trying to sell you something is a point in its favor, but treat any trading system with healthy skepticism.
3. AiToEarn (12.2K stars) — AI Agent for Content Marketing Across 14 Platforms
Repo: github.com/yikart/AiToEarn
AiToEarn is an open-source content marketing platform with an AI agent built in. You create content once, and it publishes across 14 platforms simultaneously: TikTok, YouTube, Instagram, Twitter/X, LinkedIn, Pinterest, Facebook, Threads, plus Chinese platforms like Douyin, Xiaohongshu (Rednote), Bilibili, WeChat, and Kuaishou.
The "All In Agent"
This is the interesting part. It's an AI agent that can automatically generate content, publish it, and manage your accounts across all platforms. Beyond publishing, the platform includes:
- Trend radar — what's going viral right now across platforms
- Case library — how posts with 10K+ likes were structured
- Smart comment search — finds high-conversion signals like "link please" or "how to buy" across your accounts
- Cross-platform analytics — unified dashboard for all your channels
The comment search feature is particularly useful for anyone doing content-driven sales. It surfaces purchase-intent comments so you can reply fast and convert.
Setup
Docker (recommended):
git clone https://github.com/yikart/AiToEarn.git
cd AiToEarn
docker compose up -d
This starts the frontend, backend, MongoDB, and Redis in one command. Access the web interface at http://localhost:8080. There's also an Electron desktop app available from the GitHub releases page.
Note on documentation
The project originated in China. The English README and Docker deployment guide are solid, but some deeper configuration docs are still in Chinese. AI video model integrations (Kling, Sora, Runway, etc.) are listed as coming soon.
4. DeepSeek-TUI (Trending) — Claude Code, but for DeepSeek
Repo: github.com/Hmbown/DeepSeek-TUI
A terminal-based coding agent built specifically for DeepSeek models. If you've used Claude Code, the experience is similar: you type prompts in your terminal, the agent reads your files, edits code, runs shell commands, does git operations, and browses the web. The difference is it's built from the ground up for DeepSeek's API, which is significantly cheaper than Claude or GPT-4.
Three modes
| Mode | What it does |
|---|---|
| Plan | Review a plan before the agent makes changes |
| Agent | Default interactive mode with multi-step tool use |
| YOLO | Auto-approve everything in a trusted workspace |
Tab to cycle between them. It also supports MCP servers, session resume, and can run as an HTTP/SSE API server.
Built in Rust, so it's fast and lightweight.
Setup
npm install -g deepseek-tui
deepseek-tui
On first launch it'll ask for your DeepSeek API key. You can also set it beforehand:
deepseek-tui login
Or via environment variable:
DEEPSEEK_API_KEY="your-key" deepseek-tui
Configuration lives in ~/.deepseek/config.toml. Useful commands: deepseek-tui doctor (check setup), deepseek-tui models (list available models).
Also available via Rust:
cargo install deepseek-tui --locked
The Pattern
What connects all four of these: the model isn't the product anymore. The harness is.
Matt Pocock's skills don't change what Claude can do. They change how disciplined it is. AI-Trader doesn't invent a new trading algorithm. It builds a platform where existing agents collaborate. AiToEarn doesn't create a new content AI. It builds distribution infrastructure around existing ones. DeepSeek-TUI takes the Claude Code interaction pattern and wraps it around a different, cheaper model.
Every one of these is the same insight applied to a different domain: wrap the right structure around a capable model, and you get something genuinely useful. The structure is where the value is.
This is what the industry is starting to call harness engineering, the practice of building the environment, constraints, and feedback loops around an AI agent so it produces reliable results. It's not prompt engineering. It's not fine-tuning. It's designing the system the model operates inside.
If you want to go deeper on this and see how to actually chain free tools into a working setup, I wrote a step-by-step breakdown of building a zero-cost AI coding stack (9router + agentmemory + agent-skills) in my newsletter: Web After AI.
What specialized AI agents are you seeing in your domain? Drop a comment. I'm collecting examples for a follow-up piece.
Top comments (0)