skillfree 0.1.0 → 0.1.1

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.
Files changed (3) hide show
  1. package/SKILL.md +1 -1
  2. package/install.sh +5 -5
  3. package/package.json +8 -2
package/SKILL.md CHANGED
@@ -34,4 +34,4 @@ skillfree auth login
34
34
 
35
35
  ## 充值
36
36
 
37
- 充多少用多少,积分永不过期:https://skillfree.ai/billing
37
+ 充多少用多少,积分永不过期:https://skillfree.tech/billing
package/install.sh CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env bash
2
2
  # install.sh — SkillFree 一键安装脚本
3
- # curl -fsSL https://skillfree.ai/install.sh | bash
3
+ # curl -fsSL https://skillfree.tech/install.sh | bash
4
4
 
5
5
  set -e
6
6
 
@@ -31,7 +31,7 @@ success "CLI 安装完成"
31
31
 
32
32
  # ── 3. 输入 API Key ───────────────────────────────────────────────────────────
33
33
  echo ""
34
- echo -e " 请前往 ${CYAN}https://skillfree.ai/dashboard${NC} 获取 API Key"
34
+ echo -e " 请前往 ${CYAN}https://skillfree.tech/app${NC} 获取 API Key"
35
35
  read -rp " 输入你的 API Key (sk-sf-...): " API_KEY
36
36
 
37
37
  if [[ -z "$API_KEY" || "$API_KEY" != sk-sf-* ]]; then
@@ -55,7 +55,7 @@ else
55
55
  mkdir -p "$SKILL_SRC_DIR"
56
56
 
57
57
  # 下载 SKILL.md(龙虾技能描述)
58
- curl -fsSL "https://skillfree.ai/skill/SKILL.md" -o "$SKILL_SRC_DIR/SKILL.md" 2>/dev/null \
58
+ curl -fsSL "https://skillfree.tech/skill/SKILL.md" -o "$SKILL_SRC_DIR/SKILL.md" 2>/dev/null \
59
59
  || echo "# SkillFree\nUse skillfree CLI for AI tasks." > "$SKILL_SRC_DIR/SKILL.md"
60
60
 
61
61
  # OpenClaw
@@ -98,6 +98,6 @@ echo -e " ${CYAN}快速开始:${NC}"
98
98
  echo -e " $ skillfree pilot --type chat --prompt \"你好龙虾\""
99
99
  echo -e " $ skillfree pilot --type image --prompt \"赛博朋克的上海\" --output ./img.png"
100
100
  echo ""
101
- echo -e " ${CYAN}充值积分:${NC} https://skillfree.ai/billing"
102
- echo -e " ${CYAN}查看文档:${NC} https://skillfree.ai/docs"
101
+ echo -e " ${CYAN}充值积分:${NC} https://skillfree.tech/app/topup"
102
+ echo -e " ${CYAN}查看文档:${NC} https://skillfree.tech/app/docs"
103
103
  echo ""
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skillfree",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "🦞 一个 API,满足所有龙虾技能需求",
5
5
  "main": "bin/skillfree.js",
6
6
  "bin": {
@@ -9,7 +9,13 @@
9
9
  "scripts": {
10
10
  "test": "node bin/skillfree.js --help"
11
11
  },
12
- "keywords": ["ai", "skillfree", "openclaw", "claude", "llm"],
12
+ "keywords": [
13
+ "ai",
14
+ "skillfree",
15
+ "openclaw",
16
+ "claude",
17
+ "llm"
18
+ ],
13
19
  "homepage": "https://skillfree.tech",
14
20
  "repository": {
15
21
  "type": "git",