@simonyea/holysheep-cli 1.1.1 → 1.1.2
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 +1 -1
- package/src/commands/login.js +211 -0
- package/src/commands/setup.js +2 -1
- package/src/index.js +30 -1
package/package.json
CHANGED
|
@@ -0,0 +1,211 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* hs login — 登录并保存 API Key
|
|
3
|
+
* hs logout — 清除本地 API Key
|
|
4
|
+
* hs whoami — 显示当前登录状态
|
|
5
|
+
*/
|
|
6
|
+
'use strict'
|
|
7
|
+
|
|
8
|
+
const inquirer = require('inquirer')
|
|
9
|
+
const chalk = require('chalk')
|
|
10
|
+
const ora = require('ora')
|
|
11
|
+
const fetch = require('node-fetch')
|
|
12
|
+
const { execSync } = require('child_process')
|
|
13
|
+
const { loadConfig, saveConfig, getApiKey, BASE_URL_OPENAI, SHOP_URL, CONFIG_FILE } = require('../utils/config')
|
|
14
|
+
const fs = require('fs')
|
|
15
|
+
|
|
16
|
+
const MODELS_URL = `${BASE_URL_OPENAI}/models`
|
|
17
|
+
|
|
18
|
+
function maskKey(key) {
|
|
19
|
+
if (!key || key.length < 8) return '****'
|
|
20
|
+
return key.slice(0, 8) + '...' + key.slice(-4)
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* 调用 /v1/models 验证 API Key 是否有效
|
|
25
|
+
* @returns {boolean}
|
|
26
|
+
*/
|
|
27
|
+
async function validateApiKey(apiKey) {
|
|
28
|
+
const res = await fetch(MODELS_URL, {
|
|
29
|
+
method: 'GET',
|
|
30
|
+
headers: {
|
|
31
|
+
Authorization: `Bearer ${apiKey}`,
|
|
32
|
+
'Content-Type': 'application/json',
|
|
33
|
+
},
|
|
34
|
+
timeout: 10000,
|
|
35
|
+
})
|
|
36
|
+
return res.status === 200
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
// ── login ────────────────────────────────────────────────────────────────────
|
|
40
|
+
async function login() {
|
|
41
|
+
console.log()
|
|
42
|
+
console.log(chalk.bold('🐑 HolySheep — 登录'))
|
|
43
|
+
console.log(chalk.gray('━'.repeat(50)))
|
|
44
|
+
console.log()
|
|
45
|
+
|
|
46
|
+
// 检查是否已登录
|
|
47
|
+
const existing = getApiKey()
|
|
48
|
+
if (existing) {
|
|
49
|
+
console.log(`${chalk.green('✓')} 已登录,当前 API Key: ${chalk.cyan(maskKey(existing))}`)
|
|
50
|
+
const { relogin } = await inquirer.prompt([{
|
|
51
|
+
type: 'confirm',
|
|
52
|
+
name: 'relogin',
|
|
53
|
+
message: '是否使用新的 API Key 重新登录?',
|
|
54
|
+
default: false,
|
|
55
|
+
}])
|
|
56
|
+
if (!relogin) {
|
|
57
|
+
console.log(chalk.gray('保持当前登录,退出。'))
|
|
58
|
+
console.log()
|
|
59
|
+
return
|
|
60
|
+
}
|
|
61
|
+
console.log()
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
// 提示用户获取 key 的方式
|
|
65
|
+
console.log(chalk.cyan('获取 API Key 的方式:'))
|
|
66
|
+
console.log(` ${chalk.bold('a)')} 输入已有的 API Key (cr_xxx)`)
|
|
67
|
+
console.log(` ${chalk.bold('b)')} 打开浏览器前往 ${chalk.cyan(SHOP_URL)} 注册`)
|
|
68
|
+
console.log()
|
|
69
|
+
|
|
70
|
+
const { choice } = await inquirer.prompt([{
|
|
71
|
+
type: 'list',
|
|
72
|
+
name: 'choice',
|
|
73
|
+
message: '请选择:',
|
|
74
|
+
choices: [
|
|
75
|
+
{ name: '输入已有的 API Key', value: 'input' },
|
|
76
|
+
{ name: `打开浏览器注册 (${SHOP_URL})`, value: 'browser' },
|
|
77
|
+
],
|
|
78
|
+
}])
|
|
79
|
+
|
|
80
|
+
if (choice === 'browser') {
|
|
81
|
+
console.log(chalk.gray(`\n正在打开浏览器: ${SHOP_URL}`))
|
|
82
|
+
try {
|
|
83
|
+
const platform = process.platform
|
|
84
|
+
if (platform === 'darwin') execSync(`open "${SHOP_URL}"`)
|
|
85
|
+
else if (platform === 'win32') execSync(`start "" "${SHOP_URL}"`)
|
|
86
|
+
else execSync(`xdg-open "${SHOP_URL}"`)
|
|
87
|
+
} catch {
|
|
88
|
+
console.log(chalk.yellow(`无法自动打开浏览器,请手动访问: ${SHOP_URL}`))
|
|
89
|
+
}
|
|
90
|
+
console.log()
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
// 输入 API Key
|
|
94
|
+
const { apiKey } = await inquirer.prompt([{
|
|
95
|
+
type: 'password',
|
|
96
|
+
name: 'apiKey',
|
|
97
|
+
message: '请输入 API Key (cr_xxx):',
|
|
98
|
+
validate: v => {
|
|
99
|
+
if (!v || !v.trim()) return '请输入 API Key'
|
|
100
|
+
if (!v.trim().startsWith('cr_')) return '请输入以 cr_ 开头的 API Key'
|
|
101
|
+
return true
|
|
102
|
+
},
|
|
103
|
+
}])
|
|
104
|
+
|
|
105
|
+
const key = apiKey.trim()
|
|
106
|
+
|
|
107
|
+
// 验证 API Key
|
|
108
|
+
const spinner = ora('正在验证 API Key...').start()
|
|
109
|
+
try {
|
|
110
|
+
const valid = await validateApiKey(key)
|
|
111
|
+
if (!valid) {
|
|
112
|
+
spinner.fail(chalk.red('API Key 无效,请检查后重试'))
|
|
113
|
+
console.log(chalk.gray(` 前往获取有效 Key: ${SHOP_URL}`))
|
|
114
|
+
console.log()
|
|
115
|
+
process.exit(1)
|
|
116
|
+
}
|
|
117
|
+
} catch (e) {
|
|
118
|
+
spinner.fail(`验证失败: ${e.message}`)
|
|
119
|
+
console.log(chalk.yellow(' 网络异常,请检查网络连接后重试'))
|
|
120
|
+
console.log()
|
|
121
|
+
process.exit(1)
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
// 保存
|
|
125
|
+
saveConfig({ apiKey: key, savedAt: new Date().toISOString() })
|
|
126
|
+
spinner.succeed(chalk.green('API Key 验证成功并已保存!'))
|
|
127
|
+
|
|
128
|
+
console.log()
|
|
129
|
+
console.log(` Key: ${chalk.cyan(maskKey(key))}`)
|
|
130
|
+
console.log(` 配置文件: ${chalk.gray(CONFIG_FILE)}`)
|
|
131
|
+
console.log()
|
|
132
|
+
console.log(chalk.bold('接下来:'))
|
|
133
|
+
console.log(` 运行 ${chalk.cyan('hs setup')} 一键配置 AI 工具`)
|
|
134
|
+
console.log(` 运行 ${chalk.cyan('hs whoami')} 查看登录状态`)
|
|
135
|
+
console.log()
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
// ── logout ───────────────────────────────────────────────────────────────────
|
|
139
|
+
async function logout() {
|
|
140
|
+
console.log()
|
|
141
|
+
const existing = getApiKey()
|
|
142
|
+
if (!existing) {
|
|
143
|
+
console.log(chalk.yellow('当前未登录(无本地 API Key)'))
|
|
144
|
+
console.log()
|
|
145
|
+
return
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
const { confirm } = await inquirer.prompt([{
|
|
149
|
+
type: 'confirm',
|
|
150
|
+
name: 'confirm',
|
|
151
|
+
message: `确认退出登录?将删除本地 API Key (${maskKey(existing)})`,
|
|
152
|
+
default: false,
|
|
153
|
+
}])
|
|
154
|
+
|
|
155
|
+
if (!confirm) {
|
|
156
|
+
console.log(chalk.gray('取消,保持当前登录。'))
|
|
157
|
+
console.log()
|
|
158
|
+
return
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
try {
|
|
162
|
+
const config = loadConfig()
|
|
163
|
+
delete config.apiKey
|
|
164
|
+
delete config.savedAt
|
|
165
|
+
fs.writeFileSync(CONFIG_FILE, JSON.stringify(config, null, 2))
|
|
166
|
+
console.log(chalk.green('✓ 已退出登录,本地 API Key 已清除'))
|
|
167
|
+
} catch (e) {
|
|
168
|
+
console.log(chalk.red(`退出失败: ${e.message}`))
|
|
169
|
+
}
|
|
170
|
+
console.log()
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
// ── whoami ───────────────────────────────────────────────────────────────────
|
|
174
|
+
async function whoami() {
|
|
175
|
+
console.log()
|
|
176
|
+
console.log(chalk.bold('🐑 HolySheep — 登录状态'))
|
|
177
|
+
console.log(chalk.gray('━'.repeat(50)))
|
|
178
|
+
console.log()
|
|
179
|
+
|
|
180
|
+
const apiKey = getApiKey()
|
|
181
|
+
if (!apiKey) {
|
|
182
|
+
console.log(chalk.yellow('未登录 — 本地无 API Key'))
|
|
183
|
+
console.log(chalk.gray(`运行 ${chalk.cyan('hs login')} 登录`))
|
|
184
|
+
console.log()
|
|
185
|
+
return
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
console.log(`状态: ${chalk.green('● 已登录')}`)
|
|
189
|
+
console.log(`Key: ${chalk.cyan(maskKey(apiKey))}`)
|
|
190
|
+
|
|
191
|
+
const config = loadConfig()
|
|
192
|
+
if (config.savedAt) {
|
|
193
|
+
console.log(`保存时间: ${chalk.gray(new Date(config.savedAt).toLocaleString())}`)
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
// 验证 key 是否仍然有效
|
|
197
|
+
const spinner = ora('验证 Key 有效性...').start()
|
|
198
|
+
try {
|
|
199
|
+
const valid = await validateApiKey(apiKey)
|
|
200
|
+
if (valid) {
|
|
201
|
+
spinner.succeed(chalk.green('Key 有效'))
|
|
202
|
+
} else {
|
|
203
|
+
spinner.fail(chalk.red('Key 已失效,请重新登录 (hs login)'))
|
|
204
|
+
}
|
|
205
|
+
} catch (e) {
|
|
206
|
+
spinner.warn(`无法验证(网络异常): ${e.message}`)
|
|
207
|
+
}
|
|
208
|
+
console.log()
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
module.exports = { login, logout, whoami }
|
package/src/commands/setup.js
CHANGED
|
@@ -74,7 +74,8 @@ async function setup(options) {
|
|
|
74
74
|
|
|
75
75
|
if (!apiKey) {
|
|
76
76
|
console.log(chalk.yellow('需要 API Key 才能配置工具。'))
|
|
77
|
-
console.log(chalk.cyan(`还没有账号?前往注册:${SHOP_URL}
|
|
77
|
+
console.log(chalk.cyan(`还没有账号?前往注册:${SHOP_URL}`))
|
|
78
|
+
console.log(chalk.gray(`提示:可先运行 ${chalk.cyan('hs login')} 登录并保存 Key,之后 setup 将自动读取。\n`))
|
|
78
79
|
|
|
79
80
|
const { key } = await inquirer.prompt([{
|
|
80
81
|
type: 'password',
|
package/src/index.js
CHANGED
|
@@ -23,6 +23,33 @@ program
|
|
|
23
23
|
支持工具: Claude Code · Codex · Gemini CLI · OpenCode · OpenClaw · Aider · Cursor · Continue
|
|
24
24
|
`)
|
|
25
25
|
|
|
26
|
+
// ── login ────────────────────────────────────────────────────────────────────
|
|
27
|
+
program
|
|
28
|
+
.command('login')
|
|
29
|
+
.description('登录 HolySheep,保存 API Key 到本地')
|
|
30
|
+
.action(async () => {
|
|
31
|
+
const { login } = require('./commands/login')
|
|
32
|
+
await login()
|
|
33
|
+
})
|
|
34
|
+
|
|
35
|
+
// ── logout ───────────────────────────────────────────────────────────────────
|
|
36
|
+
program
|
|
37
|
+
.command('logout')
|
|
38
|
+
.description('退出登录,清除本地 API Key')
|
|
39
|
+
.action(async () => {
|
|
40
|
+
const { logout } = require('./commands/login')
|
|
41
|
+
await logout()
|
|
42
|
+
})
|
|
43
|
+
|
|
44
|
+
// ── whoami ───────────────────────────────────────────────────────────────────
|
|
45
|
+
program
|
|
46
|
+
.command('whoami')
|
|
47
|
+
.description('显示当前登录状态')
|
|
48
|
+
.action(async () => {
|
|
49
|
+
const { whoami } = require('./commands/login')
|
|
50
|
+
await whoami()
|
|
51
|
+
})
|
|
52
|
+
|
|
26
53
|
// ── setup ────────────────────────────────────────────────────────────────────
|
|
27
54
|
program
|
|
28
55
|
.command('setup')
|
|
@@ -86,12 +113,14 @@ program
|
|
|
86
113
|
printBanner()
|
|
87
114
|
console.log()
|
|
88
115
|
console.log(chalk.cyan('快速开始:'))
|
|
116
|
+
console.log(` ${chalk.bold('hs login')} 登录并保存 API Key`)
|
|
89
117
|
console.log(` ${chalk.bold('hs setup')} 一键配置所有 AI 工具`)
|
|
118
|
+
console.log(` ${chalk.bold('hs whoami')} 查看当前登录状态`)
|
|
90
119
|
console.log(` ${chalk.bold('hs doctor')} 检查配置状态`)
|
|
91
120
|
console.log(` ${chalk.bold('hs balance')} 查看账户余额`)
|
|
92
121
|
console.log(` ${chalk.bold('hs tools')} 查看支持的工具列表`)
|
|
93
122
|
console.log()
|
|
94
|
-
console.log(chalk.gray(`注册账号: https://
|
|
123
|
+
console.log(chalk.gray(`注册账号: https://holysheep.ai`))
|
|
95
124
|
console.log()
|
|
96
125
|
})
|
|
97
126
|
|