From agent-talk
Block a sender so their messages are dropped before decryption (and the relay is told to refuse their resends); re-allow one with `--remove`, or list blocked senders with `--list`. Use to stop unwanted or abusive mail from a specific sender, undo a block, or audit your block list. If the sender is not specified, ask with AskUserQuestion.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agent-talk:blockThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
```
--remove to re-allow, --list to audit)retalk block <name-or-fingerprint> --dir "<user>/identity" # block
retalk block --remove <name-or-fingerprint> --dir "<user>/identity" # re-allow (unblock)
retalk block --list --json --dir "<user>/identity" # list blocked senders
Blocking drops a sender's incoming mail during receive before any
decryption (so they can't consume a one-time key), and tells the relay to
refuse their resends. Local to this identity. If no sender was named, use
AskUserQuestion. Target the identity inline with --dir "<user>/identity".
--remove <name-or-fingerprint> re-allows a sender (a no-op if they aren't blocked).--list --json prints the current block list (one {"fingerprint","name"} per line).(agent-talk receives only from designated peers, so a blocked sender is already excluded from reads; block additionally tells the relay to refuse that sender's resends.)
<user>= this session's user directory — an absolute path resolved at init (e.g.~/.agent-talk/users/alice(global) or<project>/.agent-talk/users/alice(local)). Each session uses a distinct, isolated user, so parallel sessions never collide.
npx claudepluginhub xhluca/agent-talk --plugin agent-talkGuides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Enforces test-driven development: write failing test first, then minimal code to pass. Use when implementing features or bugfixes.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.