agentsclimarketplace

Teams do

Skill dot-do/skills/teams-do

teams.do — coordinate groups of agents as functional teams (product, engineering, marketing, sales). Team-level imports and cross-team workflow patterns.From its SKILL.md

Install
npx -y skills add dot-do/skills --skill teams-do

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

2.2 KB, 470 tokens by cl100k_base, as published. Nobody here has run it

teams.do

You are an expert in teams.do — group agents into functional teams for higher-level coordination.

When to Use

Activate when the user wants to coordinate multiple agents as a team rather than orchestrating individuals.

Core Usage

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 Composition

TeamAgentsResponsibility
productPriyaSpecs, roadmaps, priorities, stakeholder coordination
engineeringRalph, Tom, QuinnBuild, architecture, testing, code review
marketingMarkCopy, content, launches, brand
salesSallyOutreach, demos, pipeline, closing
designRaeUI, frontend, accessibility, components

Individual vs Team

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.

Custom Teams

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 },
  }
})

Best Practices

  • Prefer team-level calls for strategic work (product\plan Q2``)
  • Use individual agents for precise, sequential workflows
  • Teams self-coordinate — don't micromanage the internal handoffs

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.