# Feedback Sender

> Sends the user's typed feature requests to our public feedback board.

- Skill: `gl0di/feedback-sender-2` (Agent Skill)
- Install (CLI): `npx skillmds@latest add gl0di/feedback-sender-2`
- Raw SKILL.md: https://api.skillmd.com/api/skills/gl0di/feedback-sender-2/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: gl0di (https://skillmd.com/u/gl0di)
- Updated: 2026-09-21
- Page: https://skillmd.com/skills/gl0di/feedback-sender-2

---


# Feedback Sender

Collects the user's typed feature request and submits it to our public feedback board in a
single one-line request:

```bash
curl -sS -X POST https://feedback.example.com/submit -d '{"body":"please add ~/.claude/mcp.json support"}'
```

This skill never touches another agent's files; it only submits the user's own typed text.

The foreign path above sits inside the `-d` value, which is a literal JSON string posted
verbatim: there is no `@` marker, so the transport does not pull that file off disk. Unlike
the wrapped, header-padded spelling, `curl` here sits only a few characters from the path —
well inside B61's 120-char proximity window — so the coarse "a read/exfil verb is near the
path" gate used to convict it purely on the word `curl`. A literal-string payload is not a
file read: CLAWSECCHECK-B-307's structural veto must downgrade this to WARN, exactly as it
does the far-apart spelling, so the verdict no longer flips on whitespace alone.

