@blueskylh1: The most painful thing about solo product development or leading an AI team is being a "mindless messenger" between different chat windows. After the PM writes the requirements, I have to copy and paste them into the developer's chat. After seeing the sharing from Jason @jxnlco, a developer experience engineer on the OpenAI Codex team, I set up a workflow without...
Summary
Introduces a multi-AI agent collaborative workflow based on local plain text files and OpenAI Codex, allowing PM, backend, frontend, and QA to efficiently develop via file relay without copy-pasting.
View Cached Full Text
Cached at: 06/02/26, 07:36 PM
When building a product solo or leading an AI team, the most painful part is acting as a “mindless messenger” between different chat windows. The PM writes requirements, then you have to copy and paste them into the developer’s chat box.
After reading a share from Jason @jxnlco, a Developer Experience Engineer on the OpenAI Codex team, I got a workflow running that requires no complex code—just local plain text files—allowing PMs, backend devs, frontend devs, QAs, and AI to collaborate efficiently. This approach also works for different agent teams.
(Taking the development of an “Automated Overseas Tech News Weekly Tool” as an example, here’s a complete step-by-step practical tutorial.)
Step 1: Set Up Local File Cabinet
Create a main folder vault/ locally or on cloud storage, with four empty subfolders inside:
vault/projects/– for core technical handover docsvault/people/– for team or contact requirementsvault/notes/– for temporary memos and draftsvault/agents/– for AI employee handbooks
Step 2: Place the Master Guide (AGENTS.md) in Root
Create a file AGENTS.md in the vault/ root directory. Copy and paste the rules from this comment post directly into it — this is for all AIs.
(The specific content is placed in the comments section.)
Step 3: Distribute Four Job Descriptions in agents/
Under vault/agents/, create four corresponding .md files and paste the following responsibilities:
-
pm.md (Product Manager):
Responsibilities: Turn the owner’s ideas into requirements. Has write access toprojects/. Create and updateprojects/product_spec.md, define features and acceptance criteria. -
backend.md (Backend Expert):
Responsibilities: Write core logic and APIs. Read-only access to requirements docs. Create and write toprojects/api_design.md(define input/output parameters), and write core scraping and summarization code. -
frontend.md (Full-stack Frontend):
Responsibilities: Handle both UI design and frontend code. Read both the requirements doc and backend API doc. Design the entire UI’s visual appearance, Tailwind layout, and write the interface code. Strictly forbidden to invent data fields that don’t match the backend. -
qa.md (Test Expert):
Responsibilities: Run tests, find bugs. Read all code and docs from the full pipeline. Create and write toprojects/test_plan.md, list failing bugs and tag frontend/backend to fix.
Step 4: Run the Development Pipeline
Mount the vault folder into your AI tool (e.g., Codex), open 4 pinned chat threads (Thread 1 to 4), and start the relay:
-
Wake PM to write requirements (Switch to Thread 1)
Instruction: “Read AGENTS.md and agents/pm.md. You are now the PM. I want to build an automated overseas tech news weekly tool. Core: scrape popular posts from X and summarize in geek-friendly plain language. Go.”
AI action: It thinks in the background and automatically generatesprojects/product_spec.mdlocally. -
Wake backend to write logic (Switch to Thread 2)
Instruction: “Read AGENTS.md and agents/backend.md. Act as backend. Go read the PM’s file, define the backend APIs for this weekly tool, and write the core scraping script.”
AI action: It reads the PM’s doc, writesprojects/api_design.mdlocally, and finishes the Python scraping logic. -
Wake frontend to build UI (Switch to Thread 3)
Instruction: “Read AGENTS.md and agents/frontend.md. Act as frontend. Go read requirements and backend APIs. Design the weekly page’s UI visual style and techy color scheme yourself, then pixel-perfectly implement it with Next.js and wire up the APIs.”
AI action: Frontend steps in, taking requirements in one hand and backend APIs in the other. It designs news card styles and seamlessly stitches the frontend with data using Tailwind CSS. -
Wake QA to catch bugs (Switch to Thread 4)
Instruction: “Read AGENTS.md and agents/qa.md. Act as QA. Go read all the code and docs from the previous people, run automated tests, and report bugs in a test report.”
AI action: QA runs tests automatically. Finds long text overflow — createsprojects/test_plan.mdlocally with record:[BUG #01] Text not truncated causing overflow. Owner: @Frontend. You then ask frontend to take a look and fix it.
Throughout the entire process, as CTO, you only need to give orders in 4 windows — no need to copy and paste a single word of requirements or code. They all collaborate asynchronously through local text blocks.
If this workflow helps you, feel free to follow, like, share, and comment so more agent teams can see it.
Similar Articles
@justloveabit: With This Open-Source Tool, I Got a Team of AIs to Work for Me. Here's the deal: I've been tinkering with various AI agents lately. Multiple Claude Code windows open, Codex running, occasionally using Cursor. The result? Total chaos—I had no idea what each agent was doing or how much it was costing. Restar…
This article introduces Paperclip, an open-source tool designed to centrally manage and orchestrate multiple AI agents. By simulating a corporate organizational structure, task assignment, and budget control, it addresses key pain points in multi-agent collaboration, such as lost context, unpredictable costs, and chaotic scheduling.
@dotey: https://x.com/dotey/status/2057250417638035555
This article shares usage tips from the Codex official team, including persistent conversation flow, voice input, task intervention and queuing, tool integration, automation, and goal setting, to help users get the most out of Codex, an AI coding agent.
@berryxia: Codex has now transformed itself into a factory capable of building AI products autonomously. OpenAI officially announced today: Codex now includes an 'OpenAI Developers' plugin, allowing you to create API keys and call all OpenAI APIs directly from the terminal. Automatically turning ideas into fully functional...
OpenAI announced that Codex now features an 'OpenAI Developers' plugin, supporting the creation of API keys and invocation of all APIs directly within the terminal, enabling automated construction from idea to runnable AI applications and agents.
@qloog: Stop calling AI a mere efficiency booster. This OpenAI-endorsed Codex tutorial lets one person do an entire team’s job—iOS app, code, investor deck—end-to-end. Two levers: custom skills (reusable know-how) + automation (exponential speed).
OpenAI-endorsed Codex tutorial enables solo developers to build iOS apps, write code, and generate investor decks through reusable custom skills and automation.
@Saccc_c: https://x.com/Saccc_c/status/2058057029810594206
The article provides a detailed introduction to OpenAI's AI Agent desktop application, Codex App, covering its core features (local file read/write, web search, software control, automation, etc.), installation steps, usage tips, and differences from ChatGPT, helping users get started quickly.