feng3d-cli 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/.claude-skill/README.md +6 -0
- package/.claude-skill/SKILL.md +1 -1
- package/.claude-skill/skill.json +1 -1
- package/README.md +4 -1
- package/package.json +1 -1
package/.claude-skill/README.md
CHANGED
|
@@ -9,9 +9,15 @@
|
|
|
9
9
|
使用 [Skills.sh](https://skills.sh/) 生态系统标准方式:
|
|
10
10
|
|
|
11
11
|
```bash
|
|
12
|
+
# macOS / Linux
|
|
12
13
|
npx skills add feng3d-labs/feng3d-cli
|
|
14
|
+
|
|
15
|
+
# Windows (需要显式指定 agent)
|
|
16
|
+
npx skills add feng3d-labs/feng3d-cli --agent claude-code -g -y
|
|
13
17
|
```
|
|
14
18
|
|
|
19
|
+
> **Windows 用户注意**:由于 skills.sh 的环境检测问题,在 Windows 上需要添加 `--agent claude-code` 参数来显式指定代理类型。
|
|
20
|
+
|
|
15
21
|
**为什么推荐?**
|
|
16
22
|
- ✅ 生态系统标准方式
|
|
17
23
|
- ✅ 自动索引和发现
|
package/.claude-skill/SKILL.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: "feng3d-cli"
|
|
3
3
|
description: "Create and update feng3d projects with unified standards, including ESLint, TypeScript, Vite, GitHub Actions, and pre-commit hooks. Automate project setup and configuration management for feng3d development."
|
|
4
|
-
version: "0.1.
|
|
4
|
+
version: "0.1.2"
|
|
5
5
|
author: "feng"
|
|
6
6
|
category: "Development"
|
|
7
7
|
tags:
|
package/.claude-skill/skill.json
CHANGED
package/README.md
CHANGED
|
@@ -31,9 +31,12 @@ feng3d-cli <command>
|
|
|
31
31
|
如果你使用 Claude Code 或其他 AI 代理,推荐通过 [Skills.sh](https://skills.sh/) 安装:
|
|
32
32
|
|
|
33
33
|
```bash
|
|
34
|
-
# 推荐:使用 Skills.sh
|
|
34
|
+
# 推荐:使用 Skills.sh 生态系统标准方式(macOS / Linux)
|
|
35
35
|
npx skills add feng3d-labs/feng3d-cli
|
|
36
36
|
|
|
37
|
+
# Windows 用户需要显式指定 agent
|
|
38
|
+
npx skills add feng3d-labs/feng3d-cli --agent claude-code -g -y
|
|
39
|
+
|
|
37
40
|
# 或:使用 feng3d-cli 内置命令
|
|
38
41
|
npx feng3d-cli skill
|
|
39
42
|
```
|