Channel Welcome Onboarding
An onboarding script that makes an agent introduce itself and reveal its capabilities one at a time when a new channel or user is first connected.
UtilitiesBeginner★ 30,471⑂ 12,865AI score 6/10Last updated: Aug 9, 2026
What it does
- Fires when a channel (Telegram, Slack, Discord, etc.) is first wired: sends a short warm greeting and states the agent's name.
- Defines a drip-feed tour of 8 capabilities in order (long-term memory, spawning persistent agents, scheduled/background tasks, web research, coding & deployment, interactive UI, file artifacts, self-customization), each in 2–4 sentences.
- Frames approvals and access control positively so users feel in control from the start.
- Instructs the agent to infer the user's recurring domains and record them as Core Memory in
memory/index.md.
Who it's for
- Operators of nanoclaw / OneCLI-style personal agents who want a polished first conversation.
- Anyone wiring a bot into multiple messaging platforms who needs a consistent onboarding script.
- Builders who prefer conversational onboarding over a feature dump.
Examples
- A freshly connected Telegram bot greets casually and asks whether to explore capabilities or dive in.
- In Slack, the same tour runs in a more professional tone and demos only the scheduled-briefing capability.
- When the user mentions "we do legal work," the agent records client/matter memory types for future sessions.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/nanocoai/nanoclaw/HEAD/container/skills/welcome/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the container/skills/welcome folder from the GitHub repo nanocoai/nanoclaw into my ~/.claude/skills/welcome/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/nanocoai/nanoclaw.git && mkdir -p ~/.claude/skills && cp -r nanoclaw/container/skills/welcome ~/.claude/skills/welcome⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal.
- Clone the repo:
git clone https://github.com/nanocoai/nanoclaw.git - Create the skills folder:
mkdir -p ~/.claude/skills - Copy the skill:
cp -r nanoclaw/container/skills/welcome ~/.claude/skills/welcome - Edit
~/.claude/skills/welcome/SKILL.mdand remove or rewrite capabilities you don't actually have (e.g.create_agent, the OneCLI approval vault). - Restart Claude Code and test with a prompt like "introduce yourself to this new channel."
View source on GitHub ↗License: MIT