My AGENTIC LOOP
Most AI setups are a collection of tools that happen to be in the same browser. I try to create a system and expand it: advisors that hold their domains and share what they decide, an executive layer that turns decisions into shipped work, an automation layer that moves work between them, and an evaluation layer that scores everything and proposes its own improvements.
It runs on cloud tiers and on some hardware I already owned for cost efficiency on certain tasks. It was built inside-out over seven layers.
This setup is continuously expanding. More to add in the upcoming weeks. Currently working on my personal and entrepreneurial GraphRAG.
|
Layer |
What runs there |
What it's for |
|---|---|---|
|
Local |
Llama 3.2 (3B), Qwen 3.5 (4B) and Qwen3 Embedding via Ollama — a spare laptop, 6GB GPU |
A Free Play setup for various local LLM tests; LLMs can be replaced with others or can be extended with a different setup. Used mostly for Triage, classification, routing, reformatting, extraction. Simple and recurring tasks at zero marginal cost. |
|
Free-tier cloud |
NVIDIA NIM behind a gateway |
Occasional use if needed as NIM is for development tests only. First-pass drafting, structured extraction, and the judge. |
|
Premium |
Claude, ChatGPT Codex, Gemini (Vertex AI), Qwen3.8 27B via OpenRouter |
Core reasoning and the advisory layer. Claude, Codex and Qwen share the coding load. Gemini on Vertex AI leads marketing media. Load balanced. |
|
Execution |
Claude Code, with a full replica on ChatGPT Codex |
The executive team — a head of orchestration, 3 wing heads and 29 specialists, a total of 32 agents sharing 160+ skills, all with scoped tool permissions and cost optimizations. |
|
Knowledge |
Two RAG stores on local embeddings |
Grounded retrieval: an advisory archive and my personal knowledge base. |
|
Evals |
Arize Phoenix |
Traces on every run, judge scoring and regression checks. |
|
Automation |
n8n |
Watching folders, moving work between the two halves, scheduled runs. |
|
Sync layer |
Google Drive + Drive for Desktop |
The shared state. Reachable by Claude, by Gemini, and as a plain local path by anything running on my machine. |
The execution team. Where a decision becomes work. A head of orchestration sits on top of three wings: product, engineering, and marketing. The wings hold 32 agents, and those agents share more than 160 skills: research, specs, prototyping, code, tests, review, security, content, SEO, image and video generation, and documentation work. Safety here is enforced through tool permissions. Agents are mixed of models and providers. Orchestration is mainly led by Claude Code, but a full replica is available to run through ChatGPT Codex, so work can move from one to another when session limits run low or when a task needs a second engine.
The knowledge layer. Two RAG stores sit beside the shared memory: an advisory archive and my personal knowledge base. Both run on a local embedding model, so each lookup costs nothing. Agents retrieve grounded context from them instead of guessing.