@simonyea/holysheep-cli 1.5.3 → 1.5.4
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/package.json +2 -2
- package/src/commands/setup.js +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simonyea/holysheep-cli",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.4",
|
|
4
4
|
"description": "一键配置所有 AI 编程工具接入 HolySheep API — Claude Code / Codex / Gemini CLI / OpenCode / OpenClaw / Aider / Cursor",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"claude",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"ai",
|
|
18
18
|
"coding"
|
|
19
19
|
],
|
|
20
|
-
"homepage": "https://
|
|
20
|
+
"homepage": "https://holysheep.ai",
|
|
21
21
|
"repository": {
|
|
22
22
|
"type": "git",
|
|
23
23
|
"url": "https://github.com/holysheep123/holysheep-cli"
|
package/src/commands/setup.js
CHANGED
|
@@ -72,7 +72,8 @@ async function setup(options) {
|
|
|
72
72
|
|
|
73
73
|
if (!apiKey) {
|
|
74
74
|
console.log(chalk.yellow('需要 API Key 才能配置工具。'))
|
|
75
|
-
console.log(chalk.cyan(
|
|
75
|
+
console.log(chalk.cyan(`👉 免费注册获取 Key:${SHOP_URL}/register`))
|
|
76
|
+
console.log(chalk.gray(` (¥10 起充,按量计费,支持微信/支付宝)`))
|
|
76
77
|
console.log(chalk.gray(`提示:可先运行 ${chalk.cyan('hs login')} 登录并保存 Key,之后 setup 将自动读取。`))
|
|
77
78
|
if (process.platform === 'win32') {
|
|
78
79
|
console.log(chalk.gray(` ⚠️ Windows 用户:如果 ${chalk.cyan('hs')} 命令找不到,请用以下方式运行:`))
|