@qcplay/cli 1.0.7 → 1.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/bin/qcplay.js +2 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
- 认证默认请求线上接口:`https://cli.qcg.ink`
|
|
8
8
|
- 发布默认请求线上接口:`https://cli.qcg.ink`
|
|
9
9
|
- 登录默认打开线上页面:`https://cli.qcg.ink/auth.html`
|
|
10
|
+
- `qcplay-cli install` 初始化完成后会自动打开登录页并等待登录完成
|
|
10
11
|
- 登录凭证保存在当前用户本机的 `~/.qcplay/auth.json`,不同客户端之间不共享账号
|
|
11
12
|
- 状态、权限和发布请求通过 Bearer Token 识别当前账号
|
|
12
13
|
- `qcplay-cli update` 会更新 npm 全局包,并同步 `~/.agents/skills`
|
package/bin/qcplay.js
CHANGED
|
@@ -969,9 +969,8 @@ async function installCommand(options) {
|
|
|
969
969
|
console.log(chalk.gray(`发布后端: ${publishBackendUrl}`));
|
|
970
970
|
console.log(chalk.gray(`登录页地址: ${authPageUrl || "本地内置页面"}`));
|
|
971
971
|
console.log("");
|
|
972
|
-
console.log("
|
|
973
|
-
|
|
974
|
-
console.log("");
|
|
972
|
+
console.log(chalk.cyan("正在启动登录..."));
|
|
973
|
+
await authCommand([]);
|
|
975
974
|
}
|
|
976
975
|
|
|
977
976
|
function printSkillsSyncResult(result) {
|