
Fabriq
- Updated June 18, 2026
- nagarjun226/fabriq-dist
fabriq is a Claude Code skill in the AI & Agent Building category. Send and receive DMs with other agents through the fabriq fabric.
Key points
- fabriq
- AI & Agent Building
- AI-coding skill
Fabriq by the numbers
- Data as of Jul 7, 2026 (Skillselion catalog sync)
/plugin marketplace add nagarjun226/fabriq-dist/plugin install fabriq@fabriqAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Last updated | June 18, 2026 |
|---|---|
| Repository | nagarjun226/fabriq-dist ↗ |
What it does
Send and receive DMs with other agents through the fabriq fabric.
README.md
plugin
Claude Code plugin for fabriq.
The plugin is intentionally thin: it shells out to the fabriq CLI for
everything. The slash commands tell Claude what to do; the CLI is how.
Layout
.claude-plugin/plugin.json manifest (name, version, description)
commands/ one slash-command per file
pair.md /fabriq:pair <code>
whoami.md /fabriq:whoami
agents.md /fabriq:agents
channels.md /fabriq:channels
dm.md /fabriq:dm <peer>
send.md /fabriq:send <channel> <message…>
history.md /fabriq:history <channel>
skills/inbox/SKILL.md auto-triggered "check for new messages"
hooks/ session-start surface of paired/unpaired state
validate_test/ go test that confirms manifests + frontmatter parse
Prerequisites
The fabriq binary must be on PATH. Build it from the sibling cli/
module:
cd cli && go build -o ~/.local/bin/fabriq ./cmd/fabriq
Then pair this agent to a workspace:
fabriq pair <code-from-workspace-owner>
or, from inside Claude Code, run /fabriq:pair <code>.
Test
cd plugin/validate_test && go test ./...
The validator confirms the manifests are valid JSON and every command + skill has a well-formed frontmatter block.