@giljae/ag-lazyweb-skill 0.0.1 → 0.0.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.
Files changed (3) hide show
  1. package/README.md +14 -1
  2. package/README_KO.md +14 -1
  3. package/package.json +4 -1
package/README.md CHANGED
@@ -50,7 +50,20 @@ curl -k -sS -X POST https://www.lazyweb.com/api/mcp/install-token \
50
50
  ```
51
51
 
52
52
  ### 2. Install to Antigravity
53
- You can install these skills globally to your Antigravity environment using the provided script:
53
+
54
+ #### Option A: Install via npm (Recommended)
55
+ You can install and run the installation script directly via npm:
56
+
57
+ ```bash
58
+ # Install globally
59
+ npm install -g @giljae/ag-lazyweb-skill
60
+
61
+ # Run the installer
62
+ ag-lazyweb-install
63
+ ```
64
+
65
+ #### Option B: Manual Installation
66
+ If you have cloned the repository locally, run the provided script:
54
67
 
55
68
  ```bash
56
69
  ./scripts/install.sh
package/README_KO.md CHANGED
@@ -50,7 +50,20 @@ curl -k -sS -X POST https://www.lazyweb.com/api/mcp/install-token \
50
50
  ```
51
51
 
52
52
  ### 2. 안티그래비티에 설치
53
- 제공된 스크립트를 사용하여 이 스킬들을 안티그래비티 전역 환경에 설치할 수 있습니다:
53
+
54
+ #### 옵션 A: npm을 이용한 설치 (권장)
55
+ npm을 통해 설치 패키지를 다운로드하고 즉시 설치 스크립트를 실행할 수 있습니다:
56
+
57
+ ```bash
58
+ # 전역 설치
59
+ npm install -g @giljae/ag-lazyweb-skill
60
+
61
+ # 설치 프로그램 실행
62
+ ag-lazyweb-install
63
+ ```
64
+
65
+ #### 옵션 B: 수동 설치
66
+ 리포지토리를 로컬에 클론한 경우, 제공된 스크립트를 직접 실행하세요:
54
67
 
55
68
  ```bash
56
69
  ./scripts/install.sh
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@giljae/ag-lazyweb-skill",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "Antigravity Lazyweb Skill - Optimized port for deep design research, visual inspiration, and design critiques.",
5
5
  "main": "index.js",
6
6
  "files": [
@@ -15,6 +15,9 @@
15
15
  "README_KO.md",
16
16
  "LICENSE"
17
17
  ],
18
+ "bin": {
19
+ "ag-lazyweb-install": "scripts/install.sh"
20
+ },
18
21
  "publishConfig": {
19
22
  "access": "public"
20
23
  },