‹ 首页

team

@cluesmith · 收录于 5 天前 · 上游提交 6 天前

Team CLI — manage team members, post messages, and run activity updates. ALWAYS check this skill before running any `team` command. Use when listing members, adding members, posting messages, or running team activity updates. Note - `afx team` is deprecated; use `team` directly.

适合你,如果你需要命令行管理团队沟通和成员信息

/ 通过 npx 安装 校验哈希
npx oh-my-skill add cluesmith/codev/team
/ 通过 bash 安装
curl -fsSL https://oh-my-skill.com/install.sh | bash -s -- cluesmith/codev/team
/ 已经装过?验证本机副本,不用重装
npx oh-my-skill verify cluesmith/codev/team
安装目标可用 --agent / --scope 或 --to 明确指定;省略时只会在唯一已存在的 agent 目录上自动选择,零命中或多命中会停止并提示。content_hash 缺失或不一致均拒装。
282GitHub stars
~732上下文体积 · 单文件
索引托管

怎么用

商店整理自技能原文 · 版本 12d42bb · 表述以原文为准
它做什么

装上后,Claude 能使用 team 命令管理团队成员、发布消息和运行活动更新。具体包括列出成员、添加成员、发布消息和每小时活动更新。

什么时候触发

当用户要求列出、添加成员,发布消息,或运行团队活动更新时触发。注意使用 `team` 而非已废弃的 `afx team`。

装好后可以这样说
执行 team list 命令
执行 team add 命令
执行 team message 命令
技能原文 SKILL.md作者撰写 · Apache-2.0 · 12d42bb

team - Team Coordination CLI

Manage team members and messages for your Codev project. Team data is stored in codev/team/ and displayed in the Tower dashboard.

Synopsis
team list
team message <text> [-a <author>]
team update
team add <github-handle> [-n <name>] [-r <role>]
Commands
team list

List all team members from codev/team/people/.

team list

Displays a formatted table with Name, GitHub handle, and Role columns.

team message \<text\>

Post a message to the team message log (codev/team/messages.md).

team message "Spec 42 is ready for review"
team message "Deployed to staging" -a deploy-bot

Options:

  • -a, --author <name> — Override author (default: auto-detected from gh CLI or git config)
team update

Post an hourly activity summary. Called automatically by cron (.af-cron/team-update.yaml) or manually.

team update

Collects notable events from the last hour (builder spawns, gate approvals, PR merges, completed reviews) and posts a summary. Exits silently if no events occurred.

team add \<github-handle\>

Scaffold a new team member file.

team add waleedkadous
team add jdoe --name "Jane Doe" --role "Developer"

Options:

  • -n, --name <name> — Full name (default: github handle)
  • -r, --role <role> — Role (default: "Team Member")

Creates codev/team/people/<handle>.md with YAML frontmatter. Handle is normalized to lowercase. Fails if the member already exists.

Team Directory Structure
codev/team/
├── people/
│   ├── waleedkadous.md     # YAML frontmatter + optional bio
│   └── jdoe.md
└── messages.md             # Append-only message log
Team Member File Format
---
name: M Waleed Kadous
github: waleedkadous
role: Lead Architect
---

Optional freeform bio or notes (not displayed in Tower).

Required frontmatter fields:

  • name — Display name
  • github — GitHub handle (used for API data enrichment)
  • role — Team role (displayed in Tower)
Message Log Format
# Team Messages

<!-- Append new messages below. Do not edit or delete existing entries. -->

---
**waleedkadous** | 2026-03-09 14:30 UTC
Spec 42 is ready for review.

---
**tower-cron** | 2026-03-09 15:00 UTC
Hourly update: Merged PR #123: Add user auth. Gate approved for #42.

Messages are append-only. Each entry has an author, UTC timestamp, and body text.

Deprecation Note

afx team commands still work but print a deprecation warning. Use team directly:

  • afx team listteam list
  • afx team messageteam message
  • afx team updateteam update
Setup

To set up a team directory for a new project:

team add first-member --name "First Member" --role "Architect"
team add second-member --name "Second Member" --role "Developer"

The Team tab appears in Tower when 2+ valid members exist.

按 Apache-2.0 许可原样转载,未经改动 · 在 GitHub 查看 →

评论

登录即可评论;带「已验证安装」的,是发布者名下有本店的安装或持有记录。