@runchr/gstack-antigravity 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.
Potentially problematic release.
This version of @runchr/gstack-antigravity might be problematic. Click here for more details.
- package/README.md +12 -7
- package/README_KO.md +12 -6
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -45,16 +45,21 @@ cd gstack-origin/browse
|
|
|
45
45
|
./setup
|
|
46
46
|
cd ../..
|
|
47
47
|
```
|
|
48
|
-
3. Install local skills:
|
|
48
|
+
3. Install local skills (recommended):
|
|
49
49
|
```bash
|
|
50
|
-
|
|
51
|
-
# Windows PowerShell:
|
|
52
|
-
./scripts/install-antigravity-skill.ps1 -Mode copy
|
|
50
|
+
npx @runchr/gstack-antigravity
|
|
53
51
|
```
|
|
54
52
|
|
|
55
|
-
Alternative:
|
|
53
|
+
Alternative: run directly from this GitHub repo
|
|
56
54
|
```bash
|
|
57
|
-
npx github:runchr-com/gstack-antigravity
|
|
55
|
+
npx github:runchr-com/gstack-antigravity
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
Manual script install (for contributors):
|
|
59
|
+
```bash
|
|
60
|
+
./scripts/install-antigravity-skill.sh copy
|
|
61
|
+
# Windows PowerShell:
|
|
62
|
+
./scripts/install-antigravity-skill.ps1 -Mode copy
|
|
58
63
|
```
|
|
59
64
|
4. Open Antigravity in this project and run `/office-hours`.
|
|
60
65
|
|
|
@@ -186,4 +191,4 @@ For this repository’s workflow, yes. It improves reproducibility for teammates
|
|
|
186
191
|
|
|
187
192
|
## Notes
|
|
188
193
|
- This repo is optimized for **local workspace usage**.
|
|
189
|
-
- Runtime behavior is driven by `.agents/workflows`, `.agents/rules`, and installed skills in `.agents/skills/gstack`.
|
|
194
|
+
- Runtime behavior is driven by `.agents/workflows`, `.agents/rules`, and installed skills in `.agents/skills/gstack`.
|
package/README_KO.md
CHANGED
|
@@ -47,17 +47,23 @@ cd gstack-origin/browse
|
|
|
47
47
|
./setup
|
|
48
48
|
cd ../..
|
|
49
49
|
```
|
|
50
|
-
3. 로컬 스킬
|
|
50
|
+
3. 로컬 스킬 설치 (권장):
|
|
51
|
+
```bash
|
|
52
|
+
npx @runchr/gstack-antigravity
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
대안: GitHub 저장소에서 바로 실행
|
|
56
|
+
```bash
|
|
57
|
+
npx github:runchr-com/gstack-antigravity
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
수동 스크립트 설치 (기여/개발용):
|
|
51
61
|
```bash
|
|
52
62
|
./scripts/install-antigravity-skill.sh copy
|
|
53
63
|
# Windows PowerShell:
|
|
54
64
|
./scripts/install-antigravity-skill.ps1 -Mode copy
|
|
55
65
|
```
|
|
56
66
|
|
|
57
|
-
대안: npx로 GitHub에서 바로 설치
|
|
58
|
-
```bash
|
|
59
|
-
npx github:runchr-com/gstack-antigravity --mode copy
|
|
60
|
-
```
|
|
61
67
|
4. Antigravity에서 프로젝트를 열고 `/office-hours` 실행
|
|
62
68
|
|
|
63
69
|
## 상세 설정 가이드
|
|
@@ -188,4 +194,4 @@ cd gstack-origin/browse
|
|
|
188
194
|
|
|
189
195
|
## 참고
|
|
190
196
|
- 이 저장소는 **로컬 워크스페이스 사용**을 기준으로 최적화되어 있습니다.
|
|
191
|
-
- 런타임 동작은 `.agents/workflows`, `.agents/rules`, `.agents/skills/gstack` 기준입니다.
|
|
197
|
+
- 런타임 동작은 `.agents/workflows`, `.agents/rules`, `.agents/skills/gstack` 기준입니다.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@runchr/gstack-antigravity",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Local installer for gStack-Antigravity (.agents layout)",
|
|
6
6
|
"keywords": [
|
|
@@ -35,4 +35,4 @@
|
|
|
35
35
|
"gstack-antigravity": "bin/install.js"
|
|
36
36
|
},
|
|
37
37
|
"license": "MIT"
|
|
38
|
-
}
|
|
38
|
+
}
|