feat(welcome): progressive discovery onboarding

Welcome skill now uses drip-feed approach instead of listing all
capabilities upfront. Agent asks user to explore or jump into building.
Init script delegates to /welcome skill instead of hardcoded prompt.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
gabi-simons
2026-04-16 14:13:53 +00:00
parent 4ae9785a61
commit 056d308868
2 changed files with 12 additions and 11 deletions

View File

@@ -50,9 +50,7 @@ interface Args {
}
const DEFAULT_WELCOME =
'System instruction: please send a short, friendly welcome message to the user. ' +
'Introduce yourself as their NanoClaw agent, confirm the channel is working, and invite them to chat. ' +
'Keep it under three sentences.';
'System instruction: run /welcome to introduce yourself to the user on this new channel.';
function parseArgs(argv: string[]): Args {
const out: Partial<Args> = {};