Reacord
Create interactive Discord messages using React. ⚛
Install / Use
npx skills add itsMapleLeaf/reacordInstalls into whichever agent you are using.
README
Installation ∙ 
# npm
npm install reacord react discord.js
# yarn
yarn add reacord react discord.js
# pnpm
pnpm add reacord react discord.js
Get Started
Visit the docs to get started.
Example
<!-- prettier-ignore -->import { useState } from "react"
import { Embed, Button } from "reacord"
function Counter() {
const [count, setCount] = useState(0)
return (
<>
<Embed title="Counter">
This button has been clicked {count} times.
</Embed>
<Button
label="+1"
onClick={() => setCount(count + 1)}
/>
</>
)
}

Related Skills
node-connect
385.5kDiagnose OpenClaw Android, iOS, or macOS node pairing, QR/setup code, route, auth, and connection failures.
imsg
385.5kUse the imsg CLI from OpenClaw agents for iMessage/SMS DMs, groups, replies, reactions, polls, watching, and private-API actions.
Agent Development
140.7kThis skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or…
review-duplication
106.4kUse this skill during code reviews to proactively investigate the codebase for duplicated functionality, reinvented wheels, or failure to reuse existing project best practices and shared utilities.
