A minimal multi-agent system with an orchestrator, a planner, a coder, and a designer working together providing orchestration between Claude, Codex and Gemini.
Install all agents listed below into VS Code Insiders...
| Title | Type | Description |
|---|
| name | description |
|---|---|
prd |
Generate a Product Requirements Document (PRD) for a new feature. Use when planning a feature, starting a new project, or when asked to create a PRD. Triggers on: create a prd, write prd for, plan this feature, requirements for, spec out. |
Create detailed Product Requirements Documents that are clear, actionable, and suitable for autonomous AI implementation via the Ralph loop.
| javascript:(function() { | |
| var frames = document.querySelectorAll('iframe'); | |
| var listaDeParcelas; | |
| var valores; | |
| for(let frm of frames){ | |
| if(frm.contentWindow.document.body.querySelectorAll('select').length > 0){ | |
| valores = []; | |
| valores.push("Opções disponíveis: \n"); |
| # Bibliotecas padrão | |
| import sys | |
| import time | |
| # Telegram bot | |
| import telepot | |
| from telepot.loop import MessageLoop | |
| # Chatterbot | |
| from chatterbot import ChatBot | |
| from chatterbot.trainers import ChatterBotCorpusTrainer | |
| from settings import * |