Skip to content

Commit 0e1fec6

Browse files
committed
Fix retry/tip messages to include --skill '*' flag
All retry and tip messages for skill installation now include the --skill '*' flag to match the actual install command and ensure users get auto-selection behavior when they follow the suggested commands.
1 parent d021e8d commit 0e1fec6

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

install.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ main() {
8989
echo "" >&2
9090
log "Dune CLI ${version} installed successfully!"
9191
echo "" >&2
92-
log "Tip: Run 'npx skills add duneanalytics/skills' to install Dune AI skills."
92+
log "Tip: Run 'npx skills add duneanalytics/skills --skill '\''*'\''' to install Dune AI skills."
9393
log "Tip: Run 'dune auth' to authenticate with your Dune account."
9494
log "Tip: Run 'dune sim auth' to access real-time blockchain data (balances, tokens, NFTs)."
9595
fi
@@ -108,15 +108,15 @@ post_install() {
108108
read -r answer < /dev/tty || answer=""
109109
case "$answer" in
110110
[nN]*)
111-
log "Skipped. You can install them later with: npx skills add duneanalytics/skills"
111+
log "Skipped. You can install them later with: npx skills add duneanalytics/skills --skill '\''*'\''"
112112
;;
113113
*)
114114
log "Installing Dune skills..."
115-
npx skills add duneanalytics/skills --skill '*' < /dev/tty || log "Skill installation failed. You can retry with: npx skills add duneanalytics/skills"
115+
npx skills add duneanalytics/skills --skill '*' < /dev/tty || log "Skill installation failed. You can retry with: npx skills add duneanalytics/skills --skill '\''*'\''"
116116
;;
117117
esac
118118
else
119-
log "Tip: Run 'npx skills add duneanalytics/skills' to install Dune AI skills."
119+
log "Tip: Run 'npx skills add duneanalytics/skills --skill '\''*'\''' to install Dune AI skills."
120120
log "(requires Node.js / npx)"
121121
fi
122122

0 commit comments

Comments
 (0)