chore: use more conventional XDG_CONFIG_HOME for config

This commit is contained in:
Joe Fleming
2026-03-13 19:22:37 -06:00
parent 398b98393a
commit 9ac92ed536
9 changed files with 28 additions and 28 deletions

View File

@@ -11,7 +11,7 @@ export function onboardCommand(program: Command): void {
.description('Initialize a new nanobot workspace with config and templates')
.action(async (rawPath?: string) => {
try {
const targetPath = resolvePath(rawPath ?? '~/.nanobot');
const targetPath = resolvePath(rawPath ?? '~/.config/nanobot');
const configPath = join(targetPath, 'config.json');
console.info(pc.blue('Initializing nanobot workspace...'));