Add agmsg skill: cross-agent messaging via SQLite for CLI agents#471
Open
fujibee wants to merge 1 commit into
Open
Add agmsg skill: cross-agent messaging via SQLite for CLI agents#471fujibee wants to merge 1 commit into
fujibee wants to merge 1 commit into
Conversation
agmsg is a small shell-based skill that lets CLI AI agents (Codex, Claude Code, Gemini CLI, GitHub Copilot CLI, Antigravity, OpenCode, and others) send messages to each other through a shared local SQLite database — no daemon, no network, no Python. The skill describes when to use agmsg (delegating tasks between agents, coordinating multi-agent work, async handoffs) and walks through the daily workflow (check identity → check inbox → send / history / team list) plus the optional `actas` / `drop` flow for multiple roles per project. Includes delivery-mode notes (Codex defaults to turn, since there is no Monitor tool equivalent). Canonical project: https://github.com/fujibee/agmsg Homepage: https://agmsg.cc
This was referenced Jun 3, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds agmsg as a curated skill under
skills/.curated/agmsg/. agmsg is a small shell-based tool that lets CLI AI agents — Codex, Claude Code, Gemini CLI, GitHub Copilot CLI, Antigravity, OpenCode, and others — send messages to each other through a shared local SQLite database. No daemon, no network, no Python.Canonical project: https://github.com/fujibee/agmsg
Homepage: https://agmsg.cc
What's in the PR
skills/.curated/agmsg/SKILL.md— frontmatter (name + description) and the workflow. Describes when to use agmsg (delegating tasks between agents, coordinating multi-agent work, async handoffs) and walks through the daily flow: identity check → inbox → send / history / team list, plus the optionalactas/dropflow for multi-role projects.skills/.curated/agmsg/LICENSE.txt— MIT.Why this fits a curated catalog entry
bashandsqlite3— both available by default on macOS and most Linux distributions.turn, Stop hook firescheck-inbox.sh) and the SKILL.md is written from the Codex perspective.Install path
After landing here, Codex CLI users can install via:
The skill body links back to the canonical install script (
bash <(curl -fsSL .../setup.sh)) which sets up the SQLite store and hook plumbing under~/.agents/skills/agmsg/.Test plan
SKILL.mdfrontmatter hasnameanddescription(per the repo convention).LICENSE.txtpresent (MIT)..curated/conventions and I'll adjust.Cross-links