From ef1b062be5dd3f4af5cc3888d84ac73d93c98a3e Mon Sep 17 00:00:00 2001 From: Re-bin Date: Tue, 10 Feb 2026 07:42:39 +0000 Subject: [PATCH] fix: create skills dir on onboard --- nanobot/cli/commands.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nanobot/cli/commands.py b/nanobot/cli/commands.py index bcadba9..a200e67 100644 --- a/nanobot/cli/commands.py +++ b/nanobot/cli/commands.py @@ -294,6 +294,10 @@ This file stores important information that should persist across sessions. """) console.print(" [dim]Created memory/MEMORY.md[/dim]") + # Create skills directory for custom user skills + skills_dir = workspace / "skills" + skills_dir.mkdir(exist_ok=True) + def _make_provider(config): """Create LiteLLMProvider from config. Exits if no API key found."""