0.1.0:2 - remove 'modelo' default everywhere (it's Grant's username, not factory)

Per user correction: 'modelo' is not the DGX Spark factory default. Generic-ize:
- configureSparks: no default user; placeholder 'your SSH username'
- sparkConfig schema: empty string defaults
- main.ts env fallback: empty
- showPublicKey: drop the 'modelo' fallback; skip Spark if user not configured
- Update feedback memory with the correction
This commit is contained in:
Grant
2026-05-12 10:39:57 -05:00
parent d718a3b78a
commit 22c817a4ec
5 changed files with 15 additions and 13 deletions
@@ -4,9 +4,9 @@ import { sdk } from '../sdk'
export const sparkConfigSchema = z.object({
spark1_host: z.string().catch(''),
spark1_user: z.string().catch('modelo'),
spark1_user: z.string().catch(''),
spark2_host: z.string().catch(''),
spark2_user: z.string().catch('modelo'),
spark2_user: z.string().catch(''),
})
export type SparkConfig = z.infer<typeof sparkConfigSchema>