用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/jaylfc/taosmd --skill taosmd-a2a命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | taosmd-a2a |
| description | Set up agent-to-agent comms and named channels via the taOSmd A2A bus. |
| user-invocable | true |
Print the setup guide from the taosmd package, then execute it. taOSmd must be importable to read the guide, so install it first if it is missing:
python -c "import taosmd" 2>/dev/null || pip install git+https://github.com/jaylfc/taosmd
python -c "import taosmd; print(taosmd.a2a_setup_guide())"
Follow every step in the guide in order. The guide is the source of truth for checking for an existing server, starting the bus, creating/joining a channel, and generating the invite block for the user's other agents.
After joining a channel, set up the hourly bus-check cron so you do not miss
messages when your session ends — follow the "Durable monitoring" section
in the guide for idempotent cron/schtasks setup instructions. That section also
covers realtime pickup: taosmd a2a-watch (stream new messages one line each,
wrap in a process monitor for instant in-session pickup) and taosmd a2a-bridge
(run a trigger command per message to wake a dormant session). Keep the hourly
cron as the durable floor underneath either.