Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计提醒

agent-commsAgent 通讯

Agent Skill

agent-comms 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

196

周安装

8

GitHub Stars

公开资料未说明

下载量

63
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:agent-comms(Agent 通讯)
来源仓库:https://github.com/abbiirr/agent-comms
仓库路径:skills/agent-comms
安装命令:
npx skills add https://github.com/abbiirr/agent-comms --skill agent-comms
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/abbiirr/agent-comms --skill agent-comms

简介

agent-comms 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理时使用。

  • 适用于多代理与人工共享通信通道初始化,支持仓库规则读取和日志管理。
  • 通过 npx skills add 命令从 GitHub 安装,具体用法请参考原始 README 和 SKILL.md 文件。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 该技能由 abbiirr/agent-comms 项目提供,支持多宿主环境集成,适合团队协作沟通。

SKILL.md

Agent Comms

Overview

Use this skill to initialize and operate a single shared communication channel for multiple agents and humans in a repository.

If the repo does not already contain the comms files, bootstrap them first with scripts/setup.sh. After that, use the normal workflow: read the rules first, then check the active log, then reply or append at the bottom.

Quick Start

Install:

npx skills add Abbiirr/agent-comms

For Claude Code with non-interactive install:

npx skills add Abbiirr/agent-comms --agent claude-code --yes --copy

After install, invoke the skill normally.

  • Codex: Use $agent-comms to bootstrap this repository.
  • Claude Code: /agent-comms bootstrap this repository

On first invocation, if the repo is missing the comms files, this skill should bootstrap them automatically before doing anything else.

Local development install flow:

npx skills add /path/to/agent-comms --agent codex claude-code --yes --copy

Fallback manual bootstrap flow:

bash .agents/skills/agent-comms/scripts/setup.sh

What bootstrap does:

  • bootstraps AGENT_COMMUNICATION_RULES.md
  • bootstraps AGENTS_CONVERSATION.MD
  • ensures docs/communication/old/ exists
  • injects a standard comms section into AGENTS.md by default

After setup:

  1. Read AGENT_COMMUNICATION_RULES.md
  2. Read AGENTS_CONVERSATION.MD
  3. Report:

- active entries - messages requiring a response - threads ready for archival

  1. Before changing code or docs, append a pre-task intent entry
  2. Reply or append new entries at the bottom

Bootstrap Workflow

Use scripts/setup.sh as the public entrypoint. It wraps init_agent_comms.py and gives a cleaner CLI.

Use bootstrap when the repo does not already have:

  • AGENT_COMMUNICATION_RULES.md
  • AGENTS_CONVERSATION.MD
  • docs/communication/old/

Default commands:

# Codex
bash .agents/skills/agent-comms/scripts/setup.sh

# Claude Code
bash .claude/skills/agent-comms/scripts/setup.sh

Useful flags:

  • --root <path> to target a different repo root
  • --no-inject-agents-md to avoid modifying AGENTS.md
  • --force overwrites the template files
  • --inject-agents-md explicitly enables AGENTS.md injection
  • --python <bin> chooses the Python interpreter
  • --rules-file, --conversation-file, and --archive-dir let you override the defaults

Bootstrap should be conservative:

  • do not overwrite existing files unless --force is set
  • do not read archives by default
  • do not auto-resolve threads

First Invocation Behavior

When this skill is invoked in a repo that does not yet contain the comms files, bootstrap the repo first, then continue with the requested comms work.

Missing bootstrap files means one or more of these is absent:

  • AGENT_COMMUNICATION_RULES.md
  • AGENTS_CONVERSATION.MD
  • docs/communication/old/

Use the first valid setup script path that exists:

  1. .agents/skills/agent-comms/scripts/setup.sh
  2. .claude/skills/agent-comms/scripts/setup.sh
  3. ${CLAUDE_SKILL_DIR}/scripts/setup.sh if that environment variable exists

Run the bootstrap script from repo root:

bash .agents/skills/agent-comms/scripts/setup.sh

or, for Claude Code if needed:

bash .claude/skills/agent-comms/scripts/setup.sh

After bootstrap:

  1. tell the user what files were created
  2. read AGENT_COMMUNICATION_RULES.md
  3. read AGENTS_CONVERSATION.MD
  4. continue with the requested comms task

If the files already exist, do not re-run bootstrap unless the user explicitly asks to reinitialize or overwrite with --force.

Operating Workflow

1. Identify the agent

Use your actual environment identity, such as Codex, Claude, OpenCode, or User.

2. Read the rules first

Always read AGENT_COMMUNICATION_RULES.md before AGENTS_CONVERSATION.MD.

3. Check for pending messages

Look for:

  • Directed to: <your name>
  • Replying to: <your name>
  • open questions or task handoffs without a response
  • resolved threads that the original author can archive

Report:

  • number of active entries
  • messages requiring a response
  • threads ready for archival

4. Take action

Before any code or doc changes:

  • append a pre-task intent entry

When replying:

  • use the correct message type
  • append to the bottom of AGENTS_CONVERSATION.MD
  • preserve the identity header format from the rules file

When archiving:

  • only the original author archives, unless the user explicitly overrides
  • move the full resolved thread to docs/communication/old/
  • never delete archived files

Guardrails

  • Never read docs/communication/old/ unless the user explicitly asks, or an active thread points to a specific archive file.
  • Never self-resolve another agent's entry.
  • Never let a bootstrap command silently overwrite an existing comms setup without --force.
  • Keep AGENTS_CONVERSATION.MD lean and append-only during normal operation.

Resources

  • scripts/setup.sh — production-facing bootstrap entrypoint
  • scripts/init_agent_comms.py — bootstrap a repo-local comms setup
  • assets/AGENT_COMMUNICATION_RULES.md — default rules template
  • assets/AGENTS_CONVERSATION.MD — default active-log template
  • assets/AGENTS_MD_SNIPPET.md — optional snippet to add to a repo's AGENTS.md

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.97%
按下载量换算22

Claude

27.5%
按下载量换算17

Cursor

18.04%
按下载量换算11

Gemini CLI

9.55%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills