add-reactions

add-reactions is a skill for Claude Code from sliamh11/Deus. It costs 21 tokens per session (694 once invoked), scanned A, a copy of add-reactions, MIT.

Support for emoji reactions in Deus's WhatsApp channel, including receiving, sending, storing, and searching reactions. WhatsApp is a messaging service where people can react to messages with emojis.

In plain words
What is it for?
It helps agents handle incoming reactions, send emoji responses, save reaction history in SQLite, and look up past reactions.
Why use it?
Without this support, reactions are not available as part of the channel's message history or agent actions.

Skill for Claude Code

Written for Claude Code: disable-model-invocation in frontmatter.

Good fit It helps agents handle incoming reactions, send emoji responses, save reaction history in SQLite, and look up past reactions.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/sliamh11/deus/add-reactions
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add sliamh11/Deus --skill add-reactions
Clone the repo
git clone --depth 1 https://github.com/sliamh11/Deus

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for add-reactions

README.md
[![agentmods](https://agentmods.dev/badge/skills/sliamh11/deus/add-reactions/github.svg)](https://agentmods.dev/skills/sliamh11/deus/add-reactions)
Your own site
<a href="https://agentmods.dev/skills/sliamh11/deus/add-reactions"><img src="https://agentmods.dev/badge/skills/sliamh11/deus/add-reactions/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for add-reactions

Your own site · 80×15
<a href="https://agentmods.dev/skills/sliamh11/deus/add-reactions"><img src="https://agentmods.dev/badge/skills/sliamh11/deus/add-reactions.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 21 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 694 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 84% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00021 $0.00694
Opus 5 $0.00010 $0.00347
Sonnet 5 $0.00004 $0.00139
Haiku 4.5 $0.00002 $0.00069

Measured 9d ago against content hash b148c6a6ce1d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

add-reactions scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

84% identical to add-reactions — 38 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.claude/skills/add-reactions/SKILL.md · 104 lines

How it starts

The opening of the file, as written. The whole thing — 104 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Add Reactions

This skill adds emoji reaction support to Deus's WhatsApp channel: receive and store reactions, send reactions from the container agent via MCP tool, and query reaction history from SQLite.

Phase 1: Pre-flight

Check if already applied

Check if src/status-tracker.ts exists:

test -f src/status-tracker.ts && echo "Already applied" || echo "Not applied"

If already applied, skip to Phase 3 (Verify).

Phase 2: Apply Code Changes

Reactions support is part of the WhatsApp MCP package in packages/. Check if the status tracker already exists:

test -f src/status-tracker.ts && echo "Already present" || echo "Not present"

If not present, the WhatsApp MCP package should include reactions support. Ensure the WhatsApp channel is installed and up to date by running /add-whatsapp.

The following files are involved:

  • scripts/migrate-reactions.ts (database migration for reactions table with composite PK and indexes)
  • src/status-tracker.ts (forward-only emoji state machine for message lifecycle signaling, with persistence and retry)
  • src/status-tracker.test.ts (unit tests for StatusTracker)
  • container/skills/reactions/SKILL.md (agent-facing documentation for the react_to_message MCP tool)
  • Reaction support in src/db.ts, src/channels/whatsapp.ts, src/types.ts, src/ipc.ts, src/index.ts, src/group-queue.ts, and container/agent-runner/src/ipc-mcp-stdio.ts

Run database migration

npx tsx scripts/migrate-reactions.ts

Validate code changes

npm test
npm run build

All tests must pass and build must be clean before proceeding.

Phase 3: Verify

Build and restart

npm run build

Linux:

systemctl --user restart deus

macOS:

launchctl kickstart -k gui/$(id -u)/com.deus

Test receiving reactions

  1. Send a message from your phone
  2. React to it with an emoji on WhatsApp
  3. Check the database:
sqlite3 store/messages.db "SELECT * FROM reactions ORDER BY timestamp DESC LIMIT 5;"

Read the full file on GitHub · 104 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 104 lines · 21 tokens per session scan A b148c6a6ce1d

Subscribe to this mod's changes

add-reactions is a skill published in the GitHub repository sliamh11/Deus (51 stars, last pushed 3d ago), licensed MIT. It adds 21 tokens to every session and 694 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. It is 84% identical to add-reactions, differing in 38 lines, and is treated as a copy.