smewai 0.1.1 → 0.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/README.md CHANGED
@@ -14,6 +14,10 @@ Run the setup wizard:
14
14
  npx smewai
15
15
  ```
16
16
 
17
+ Create or copy your Smew API key first:
18
+
19
+ - https://smew.ai/keys
20
+
17
21
  Or pass your Smew API key directly:
18
22
 
19
23
  ```bash
package/README.zh-CN.md CHANGED
@@ -12,6 +12,10 @@ Smew 的 Codex CLI 一键配置工具。
12
12
  npx smewai
13
13
  ```
14
14
 
15
+ 运行前请先前往这里创建或复制 Smew API Key:
16
+
17
+ - https://smew.ai/keys
18
+
15
19
  也可以直接传入 Smew API Key:
16
20
 
17
21
  ```bash
package/cli.js CHANGED
@@ -17,6 +17,8 @@ function extractApiKeyArg() {
17
17
 
18
18
  async function getApiKeyInput() {
19
19
  console.log('');
20
+ logInfo('请先前往 https://smew.ai/keys 创建或复制你的 API Key');
21
+ console.log('');
20
22
 
21
23
  let response;
22
24
  try {
@@ -75,6 +77,8 @@ async function main() {
75
77
  await checkForUpdates(cliVersion);
76
78
 
77
79
  logInfo(`Smew Codex 一键配置 v${cliVersion}`);
80
+ logInfo('创建 API Key: https://smew.ai/keys');
81
+ console.log('');
78
82
 
79
83
  const quickApiKey = extractApiKeyArg();
80
84
  if (quickApiKey) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "smewai",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Smew Codex CLI 一键配置工具",
5
5
  "main": "cli.js",
6
6
  "bin": {