Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计提醒

hypdiscordgodhypdiscordgod 控制

Agent Skill

用于处理 Discord 服务器、频道、消息、成员和机器人交互。它适合让 Agent 辅助查询社区对话、整理频道内容、发布通知或管理基础协作流程。使用时需要确认 bot 权限、频道可见范围和服务器规则;涉及删除消息、管理成员、批量通知或读取私密频道时,应先获得明确授权并控制操作范围。

总安装

3,158

周安装

129

GitHub Stars

公开资料未说明

下载量

1,011
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:hypdiscordgod(hypdiscordgod 控制)
来源仓库:https://github.com/hypjo/hypdiscordgod
安装命令:
openclaw skills install hypdiscordgod
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install hypdiscordgod

简介

构建、调试与管理 Discord 机器人与自动化系统。

  • 支持斜杠命令添加、频道消息管理与成员交互功能。
  • 通过 clawhub 安装,适合社区运营与技术协作支持。
  • 需申请 bot 权限并遵守服务器规则与隐私政策。
  • 建议限制敏感操作并设置操作日志以便追溯。hypdiscordgod 属于效率类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
hypdiscordgod
description
Build, extend, debug, scaffold, and package Discord bots and bot systems. Use when asked to create a Discord bot, scaffold a new bot project, add slash commands, prefix commands, event handlers, moderation systems, ticket systems, role tools, embeds, buttons, select menus, modals, webhooks, persistence, deployment setup, Bun support, Docker setup, dashboard/API integration, Discord OAuth dashboard auth, frontend dashboard scaffolding, queue/worker processing, Postgres/Prisma/Drizzle database variants, moderation dashboards, mono-repo service layouts, or troubleshoot Discord API behavior in Node.js/TypeScript or Python projects.

HypDiscordGOD

Overview

Use this skill to turn Discord bot requests into shippable systems with clean architecture, minimal privileged intents, clear configuration, and production-ready command, API, worker, and dashboard structure.

Prefer acting over theorizing: if the repository exists, inspect it and implement directly; if no project exists, scaffold a minimal runnable system immediately.

Default to modern Discord patterns:

  • Prefer slash commands over legacy prefix commands unless the user asks otherwise.
  • Prefer discord.js for Node/TypeScript projects and discord.py for Python projects unless the repo already uses another library.
  • Keep tokens and secrets in environment variables; never hardcode them.
  • Request only the intents and permissions the feature actually needs.

Workflow

  1. Inspect the repository and detect the stack.
  2. Decide whether this is:

- a new bot, - a new feature in an existing bot, - a refactor/migration, - a dashboard/API integration task, - a webhook integration task, - a worker/queue task, - a moderation dashboard task, - a mono-repo starter task, - or a debugging task.

  1. Confirm the runtime, package manager, storage model, and bot library already in use.
  2. Implement the smallest clean change that satisfies the request.
  3. Add or update configuration examples, command registration, startup instructions, API route notes, auth notes, and worker notes if needed.
  4. Validate with available tests, type checks, or a dry run when possible.
  5. If creating a new bot or companion service from scratch, prefer bundled scaffolds and templates before hand-rolling files.

Core Rules

  • Match the existing repository style when one already exists.
  • Prefer least privilege for intents, permissions, routes, and secrets.
  • Keep Discord snowflakes as strings in JavaScript/TypeScript systems.
  • Separate bot runtime, HTTP API, dashboard frontend, and worker concerns when complexity justifies it.
  • Treat in-memory sessions as development-grade unless explicitly hardened.
  • Call out production gaps clearly: CSRF, durable sessions, refresh token storage, HTTPS, audit logging, and permission enforcement.

Mono-repo Systems

For bot + API + dashboard + worker systems:

  • separate apps clearly
  • share schema, config, and type helpers through packages or documented conventions
  • leave behind runnable service start points and compose orchestration when possible
  • prefer wiring the mono-repo starter to real bundled patterns instead of leaving empty placeholders
  • when asked for a full transplant or deep merge, align monorepo app shapes with the richer bundled starters so another agent can upgrade them in place without re-scaffolding

Output Expectations

When completing Discord bot work:

  • Modify the existing project instead of inventing a parallel architecture.
  • Include any required environment variables.
  • Mention command registration steps if commands changed.
  • Mention portal-side steps if intents or permissions must be enabled.
  • Keep examples realistic and directly runnable.
  • When adding persistence, define schema shape or migration expectations.
  • When adding deployment, leave behind runnable deploy artifacts if appropriate.
  • When adding transcript support, mention limitations around embeds, edited/deleted messages, and retention unless fully handled.
  • When adding dashboard/API integration, identify which auth parts are development-grade versus production-ready.
  • When adding OAuth, mention redirect URI requirements, secure session storage expectations, refresh-token handling expectations, and logout behavior.
  • When adding queue/worker patterns, explain the responsibility split between API, worker, and bot.
  • When adding Prisma or Drizzle, include enough starter assets that another agent can actually use them without rebuilding from scratch.
  • When preparing for public release, keep wording generic, remove private assumptions, and ensure the packaged skill stands on its own.

Bundled Assets

Use these when they save time:

  • assets/discord-js-ts-template/ for a modern slash-command bot starter.
  • assets/bun-template/ for a Bun-oriented starter.
  • assets/ticket-bot-starter/ for a SQLite-backed ticket bot with claim, archive/reopen, and transcript support.
  • assets/dashboard-api-starter/ for an Express + SQLite companion API starter with OAuth starter auth, guild permission checks, real OAuth guild listing, logout/session handling, CSRF protection, webhook route, shared guild-config access, and queue/worker patterns.
  • assets/dashboard-frontend-starter/ for a React/Vite dashboard frontend starter with multi-guild UX.
  • assets/moderation-dashboard-starter/ for a moderation dashboard API starter with audit logging.
  • assets/prisma-starter/ for a Prisma + Postgres starter with guild config and ticket schema.
  • assets/drizzle-starter/ for a Drizzle + Postgres starter with guild config and ticket schema.
  • assets/monorepo-starter/ for a multi-service layout starter combining bot, API, dashboard, worker, env template, and Docker Compose.
  • assets/docker/ for basic container deployment artifacts.

References

Read these only if needed:

  • references/discord-bot-planning.md
  • references/discord-js-patterns.md
  • references/discord-py-patterns.md
  • references/persistence-patterns.md
  • references/postgres-prisma-drizzle-patterns.md
  • references/deployment-patterns.md
  • references/dashboard-api-patterns.md
  • references/oauth-dashboard-patterns.md
  • references/csrf-session-patterns.md
  • references/webhook-patterns.md
  • references/worker-queue-patterns.md
  • references/moderation-dashboard-patterns.md
  • references/monorepo-starter-patterns.md
  • references/ticket-system-patterns.md
  • references/ticket-advanced-patterns.md
  • references/ticket-bot-starter-notes.md
  • references/troubleshooting.md

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

98.78%
按下载量换算999

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills