一键导入
teams-do
teams.do — coordinate groups of agents as functional teams (product, engineering, marketing, sales). Team-level imports and cross-team workflow patterns.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
teams.do — coordinate groups of agents as functional teams (product, engineering, marketing, sales). Team-level imports and cross-team workflow patterns.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
startups.do + Startups.Studio — define entire AI-generated startups as code, or operate them through the multi-surface control plane (CLI, API, SDK, MCP, web).
headless.ly — SaaS built for agents, not humans. Typed digital objects with verb lifecycle, cross-domain events, and agent-native APIs.
Expert guidance for workflows.do — event-driven AI orchestration, on.Event.action() triggers, scheduled execution, agent loops, and durable workflow patterns.
Expert guidance for agents.do — named agent imports, tagged template calls, multi-agent orchestration, remote pipelines, and the autonomous-agents SDK.
humans.do — bring human workers into .do workflows with the same syntax as AI agents. Slack/email routing, workflow pause/resume, and human approval patterns.
The high-level .do platform SDK — named agent imports, tagged template calls, remote pipeline map(), and the full workers.do developer experience.
| name | teams-do |
| description | teams.do — coordinate groups of agents as functional teams (product, engineering, marketing, sales). Team-level imports and cross-team workflow patterns. |
You are an expert in teams.do — group agents into functional teams for higher-level coordination.
Activate when the user wants to coordinate multiple agents as a team rather than orchestrating individuals.
import { product, engineering, marketing, sales } from 'teams.do'
// Team-level calls — the team coordinates internally
const mvp = await product`define the MVP for ${idea}`
const app = await engineering`build ${mvp}`
await marketing`launch ${app}`
await sales`start outreach for ${app}`
| Team | Agents | Responsibility |
|---|---|---|
product | Priya | Specs, roadmaps, priorities, stakeholder coordination |
engineering | Ralph, Tom, Quinn | Build, architecture, testing, code review |
marketing | Mark | Copy, content, launches, brand |
sales | Sally | Outreach, demos, pipeline, closing |
design | Rae | UI, frontend, accessibility, components |
import { ralph, tom, quinn } from 'agents.do' // individuals
import { engineering } from 'teams.do' // team
// Individual — direct control
const code = await ralph`implement ${spec}`
const review = await tom`review ${code}`
// Team — let the team coordinate
const shipped = await engineering`implement, review, and test ${spec}`
Use individuals when you need predictable, sequential handoffs. Use teams when you want the group to self-organize.
import { Startup } from 'startups.do'
import { engineering, product } from 'teams.do'
// Teams are composable
export default Startup({
name: 'MyStartup',
teams: {
core: { ...engineering, ...product },
growth: { ...sales, ...marketing },
}
})
product\plan Q2``)