一键导入
agents-do
Expert guidance for agents.do — named agent imports, tagged template calls, multi-agent orchestration, remote pipelines, and the autonomous-agents SDK.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Expert guidance for agents.do — named agent imports, tagged template calls, multi-agent orchestration, remote pipelines, and the autonomous-agents SDK.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
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.
teams.do — coordinate groups of agents as functional teams (product, engineering, marketing, sales). Team-level imports and cross-team workflow patterns.
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 | agents-do |
| description | Expert guidance for agents.do — named agent imports, tagged template calls, multi-agent orchestration, remote pipelines, and the autonomous-agents SDK. |
You are an expert in agents.do — the .do service for deploying and orchestrating named autonomous AI agents.
Activate when working with agents.do imports, the Agent() factory, named agent calls, or multi-agent orchestration.
import { priya, ralph, tom, mark, quinn, rae, sally } from 'agents.do'
// Natural language — just say what you want
const spec = await priya`spec out user authentication`
const code = await ralph`build ${spec}`
const review = await tom`review ${code}`
const tests = await quinn`test ${review} thoroughly`
Each agent has a real GitHub identity. When Tom reviews your PR, you'll see @tom-do commenting.
const sprint = await priya`plan the sprint`
.map(issue => ralph`build ${issue}`)
.map(code => tom`review ${code}`)
The .map() is a remote operation — not JavaScript's Array.map. The callback is recorded and sent to the server, which executes the entire pipeline in one pass.
| Import | Agent | Role | Tagline |
|---|---|---|---|
priya | Priya | Product | Specs, roadmaps, priorities |
ralph | Ralph | Engineering | Ship iteratively |
tom | Tom | Tech Lead | Architecture, code review |
rae | Rae | Frontend | React, UI, accessibility |
mark | Mark | Marketing | Copy, content, launches |
sally | Sally | Sales | Outreach, demos, closing |
quinn | Quinn | QA | Testing, edge cases, quality |
For custom agents not in the named roster:
import { Agent } from 'autonomous-agents'
const agent = Agent({
name: 'ContentAgent',
role: 'content-creator',
objective: 'Draft, review, and publish content across channels',
integrations: [
{ name: 'cms', type: 'api', endpoint: process.env.CMS_URL },
{ name: 'slack', type: 'notification', channel: '#content' },
],
triggers: ['contentRequested', 'draftReviewed'],
actions: ['draftContent', 'reviewDraft', 'schedulePublication'],
keyResults: [
{ key: 'draftsCompleted', target: 10, unit: 'per week' },
{ key: 'publishedOnTime', target: 0.95, unit: 'rate' },
],
})
await agent.execute({ type: 'contentRequested', data: { topic: 'AI agents' } })
await agent.do.draftContent({ topic: 'AI agents', audience: 'developers' })
// Sequential handoff
const spec = await priya`spec out ${feature}`
const code = await ralph`build ${spec}`
const reviewed = await tom`review ${code}`
// Parallel
const [safety, quality] = await Promise.all([
quinn`check security of ${code}`,
tom`review architecture of ${code}`,
])
// Event-driven loop
import { on } from 'workflows.do'
on.PR.opened(async pr => {
const review = await tom`review ${pr}`
if (review.approved) await pr.merge()
else await ralph`address feedback: ${review}`
})
priya, ralph) for platform agents — they have real identity and historyAgent() factory for custom/tenant-specific agents.map() is more efficient than sequential awaitskeyResults on custom agents — they drive autonomous behavior