docs(cli): update skill installation command from add --name all to init

- Replace `bl skill add --name all` with `bl skill init` across documentation
- Update installation instructions in README, INSTALL, and agent skill guides
- Modify code references in update checker and UI components
- Adjust documentation links and cross-references accordingly
- Revise command examples in protocol and asset files
- Update versioning and setup instructions to reflect new command
- Modify HTML UI rendering for skill installation guidance
- Change internal command constants and execution calls
This commit is contained in:
clh02467605
2026-08-07 17:56:30 +08:00
parent d6cb075629
commit 9ae5dc924d
24 changed files with 58 additions and 57 deletions
+2 -2
View File
@@ -299,11 +299,11 @@ export async function performAutoUpdate(
try {
process.stderr.write(` ${dim}Syncing agent skill...${reset}\n`);
execSync(`bl skill add --name all`, { stdio: "inherit" });
execSync(`bl skill init`, { stdio: "inherit" });
process.stderr.write(` ${green}✓ Agent skill updated.${reset}\n\n`);
} catch (err) {
process.stderr.write(` ${yellow}⚠ Agent skill sync failed: ${errorMessage(err)}${reset}\n`);
process.stderr.write(` ${yellow} Run manually: bl skill add --name all${reset}\n\n`);
process.stderr.write(` ${yellow} Run manually: bl skill init${reset}\n\n`);
}
pendingNotification = null;