You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix/skills install claude code dir structure (#40)
* fix: skills install for Claude Code uses correct directory structure
Claude Code requires skills in <name>/SKILL.md format, not flat .md files.
Updated manifest file_map, install to create subdirs, uninstall to clean
empty dirs, and stale cleanup to handle flat-to-subdir transition.
Copy file name to clipboardExpand all lines: internal/skills/files/verda-cloud.md
+4-3Lines changed: 4 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,8 @@ description: Use when the user mentions Verda Cloud, GPU/CPU VMs, cloud instance
37
37
38
38
### Explore
39
39
40
-
- Available instances: `verda --agent instance-types [--gpu|--cpu] -o json` → present name, GPU, VRAM, RAM, price_per_hour sorted by price. **Stop.**
40
+
- What's available now: `verda --agent vm availability -o json` → shows what's **in stock** with location and pricing. Filter with `--kind gpu` or `--kind cpu` (NOT `--type gpu`). If result is empty or null, tell the user **nothing is in stock** for that kind — do NOT fall back to showing a different kind. **Stop.**
41
+
- Full catalog (all types, not just in stock): `verda --agent instance-types [--gpu|--cpu] -o json` → specs and pricing. **Stop.**
@@ -50,8 +51,8 @@ Otherwise walk this chain. **ALWAYS** steps must run even if user specified valu
50
51
1.**Billing***(skip if known)* — spot ("cheap", "testing") or on-demand (default)
51
52
2.**Compute***(skip if known)* — GPU (ML/training/CUDA) or CPU (web/API/dev)
52
53
3.**Instance type***(skip if user specified)* — `verda --agent instance-types [--gpu|--cpu] -o json`, present top 3 by price
53
-
4.**ALWAYS: Availability** — `verda --agent availability --type <type> [--spot] -o json`. Location depends on availability, NOT the reverse
54
-
5.**ALWAYS: Images** — `verda --agent images --type <type> -o json`. **NEVER guess slugs** — they vary by instance type
54
+
4.**ALWAYS: Availability** — `verda --agent vm availability --type <type> [--spot] -o json`. Location depends on availability, NOT the reverse
55
+
5.**ALWAYS: Images** — `verda --agent images --type <type> -o json`. Use `image_type` field for `--os` flag. **NEVER guess** — they vary by instance type
55
56
6.**ALWAYS: SSH keys** — `verda --agent ssh-key list -o json`. If user named a key, find its ID
0 commit comments