ソース情報
- リポジトリ
- thmtz/nanoclaw-fleet
- ソースの最終更新活動
- 2026年4月17日 11:42
- 検出された SKILL.md の言語
- 英語
- スター
- 5
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/thmtz/nanoclaw-fleet --skill add-discordコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Debug container agent issues. Use when things aren't working, container fails, authentication problems, or to understand how the container system works. Covers logs, environment variables, mounts, and common issues.
Format messages for Slack using mrkdwn syntax. Use when responding to Slack channels (folder starts with "slack_" or JID contains slack identifiers).
Report a Discord-formatted status dashboard of the fleet — master state, every worker's backend/model/uptime, and a summary footer. Trigger on the user typing "/status", "status?", "fleet status", "what's running", or anything semantically equivalent to "show me what's running right now."
SOC 職業分類に基づく
SKILL.md を表示中
| name | add-discord |
| description | Add Discord bot channel integration via Chat SDK. |
Adds Discord bot support via the Chat SDK bridge.
NanoClaw doesn't ship channels in trunk. This skill copies the Discord adapter in from the channels branch.
Skip to Credentials if all of these are already in place:
src/channels/discord.ts existssrc/channels/index.ts contains import './discord.js';@chat-adapter/discord is listed in package.json dependenciesOtherwise continue. Every step below is safe to re-run.
git fetch origin channels
git show origin/channels:src/channels/discord.ts > src/channels/discord.ts
Append to src/channels/index.ts (skip if the line is already present):
import './discord.js';
pnpm install @chat-adapter/discord@4.26.0
pnpm run build
botSend Messages, Read Message History, Add Reactions, Attach Files, Use Slash CommandsAll three values are required — the adapter will fail to start without DISCORD_PUBLIC_KEY and DISCORD_APPLICATION_ID.
Add to .env:
DISCORD_BOT_TOKEN=your-bot-token
DISCORD_APPLICATION_ID=your-application-id
DISCORD_PUBLIC_KEY=your-public-key
Sync to container: mkdir -p data/env && cp .env data/env/env
If you're in the middle of /setup, return to the setup flow now.
Otherwise, run /manage-channels to wire this channel to an agent group.
discorddiscord:{guildId}:{channelId} — both IDs are required.