@mandujs/mcp 0.36.2 → 0.37.0

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 (153) hide show
  1. package/package.json +4 -4
  2. package/src/activity-adapter.ts +23 -23
  3. package/src/adapters/index.ts +20 -20
  4. package/src/adapters/monitor-adapter.ts +100 -100
  5. package/src/adapters/tool-adapter.ts +90 -90
  6. package/src/executor/index.ts +22 -22
  7. package/src/executor/tool-executor.ts +148 -148
  8. package/src/hooks/config-watcher.ts +173 -173
  9. package/src/hooks/index.ts +23 -23
  10. package/src/hooks/mcp-hooks.ts +227 -227
  11. package/src/index.ts +0 -0
  12. package/src/logging/index.ts +15 -15
  13. package/src/logging/mcp-transport.ts +134 -134
  14. package/src/profiles.ts +34 -34
  15. package/src/registry/index.ts +13 -13
  16. package/src/registry/mcp-tool-registry.ts +298 -298
  17. package/src/resources/skills/guides.ts +1136 -1136
  18. package/src/resources/skills/index.ts +12 -12
  19. package/src/resources/skills/mandu-composition/SKILL.md +91 -91
  20. package/src/resources/skills/mandu-composition/metadata.json +13 -13
  21. package/src/resources/skills/mandu-composition/rules/_sections.md +26 -26
  22. package/src/resources/skills/mandu-composition/rules/_template.md +77 -77
  23. package/src/resources/skills/mandu-composition/rules/comp-arch-avoid-boolean-props.md +146 -146
  24. package/src/resources/skills/mandu-composition/rules/comp-arch-compound-components.md +164 -164
  25. package/src/resources/skills/mandu-composition/rules/comp-island-event.md +161 -161
  26. package/src/resources/skills/mandu-composition/rules/comp-island-slot-split.md +167 -167
  27. package/src/resources/skills/mandu-composition/rules/comp-pattern-children.md +149 -149
  28. package/src/resources/skills/mandu-composition/rules/comp-state-context-interface.md +148 -148
  29. package/src/resources/skills/mandu-composition/rules/comp-state-lift-state.md +150 -150
  30. package/src/resources/skills/mandu-deployment/SKILL.md +92 -92
  31. package/src/resources/skills/mandu-deployment/_sections.md +41 -41
  32. package/src/resources/skills/mandu-deployment/_template.md +38 -38
  33. package/src/resources/skills/mandu-deployment/metadata.json +13 -13
  34. package/src/resources/skills/mandu-deployment/rules/db-provider-supabase.md +300 -300
  35. package/src/resources/skills/mandu-deployment/rules/deploy-build-bun.md +109 -109
  36. package/src/resources/skills/mandu-deployment/rules/deploy-build-output.md +115 -115
  37. package/src/resources/skills/mandu-deployment/rules/deploy-cicd-github.md +219 -219
  38. package/src/resources/skills/mandu-deployment/rules/deploy-docker-bun.md +150 -150
  39. package/src/resources/skills/mandu-deployment/rules/deploy-docker-compose.md +223 -223
  40. package/src/resources/skills/mandu-deployment/rules/deploy-platform-fly.md +152 -152
  41. package/src/resources/skills/mandu-deployment/rules/deploy-platform-render.md +179 -179
  42. package/src/resources/skills/mandu-deployment/rules/deploy-platform-vercel.md +140 -140
  43. package/src/resources/skills/mandu-fs-routes/SKILL.md +82 -82
  44. package/src/resources/skills/mandu-fs-routes/metadata.json +12 -12
  45. package/src/resources/skills/mandu-fs-routes/rules/_sections.md +36 -36
  46. package/src/resources/skills/mandu-fs-routes/rules/_template.md +69 -69
  47. package/src/resources/skills/mandu-fs-routes/rules/routes-api-methods.md +65 -65
  48. package/src/resources/skills/mandu-fs-routes/rules/routes-dynamic-param.md +93 -93
  49. package/src/resources/skills/mandu-fs-routes/rules/routes-naming-page.md +55 -55
  50. package/src/resources/skills/mandu-guard/SKILL.md +129 -129
  51. package/src/resources/skills/mandu-guard/metadata.json +12 -12
  52. package/src/resources/skills/mandu-guard/rules/_sections.md +36 -36
  53. package/src/resources/skills/mandu-guard/rules/_template.md +82 -82
  54. package/src/resources/skills/mandu-guard/rules/guard-config-rules.md +100 -100
  55. package/src/resources/skills/mandu-guard/rules/guard-layer-direction.md +76 -76
  56. package/src/resources/skills/mandu-guard/rules/guard-preset-mandu.md +81 -81
  57. package/src/resources/skills/mandu-guard/rules/guard-validate-import.md +80 -80
  58. package/src/resources/skills/mandu-hydration/SKILL.md +91 -91
  59. package/src/resources/skills/mandu-hydration/metadata.json +12 -12
  60. package/src/resources/skills/mandu-hydration/rules/_sections.md +31 -31
  61. package/src/resources/skills/mandu-hydration/rules/_template.md +72 -72
  62. package/src/resources/skills/mandu-hydration/rules/hydration-data-event.md +109 -109
  63. package/src/resources/skills/mandu-hydration/rules/hydration-directive-use-client.md +55 -55
  64. package/src/resources/skills/mandu-hydration/rules/hydration-island-setup.md +113 -113
  65. package/src/resources/skills/mandu-hydration/rules/hydration-priority-visible.md +68 -68
  66. package/src/resources/skills/mandu-performance/SKILL.md +85 -85
  67. package/src/resources/skills/mandu-performance/metadata.json +14 -14
  68. package/src/resources/skills/mandu-performance/rules/_sections.md +31 -31
  69. package/src/resources/skills/mandu-performance/rules/_template.md +64 -64
  70. package/src/resources/skills/mandu-performance/rules/perf-async-defer-await.md +103 -103
  71. package/src/resources/skills/mandu-performance/rules/perf-async-parallel.md +95 -95
  72. package/src/resources/skills/mandu-performance/rules/perf-bun-file.md +124 -124
  73. package/src/resources/skills/mandu-performance/rules/perf-bun-serve.md +125 -125
  74. package/src/resources/skills/mandu-performance/rules/perf-bundle-imports.md +80 -80
  75. package/src/resources/skills/mandu-performance/rules/perf-bundle-island-lazy.md +145 -145
  76. package/src/resources/skills/mandu-performance/rules/perf-cache-react.md +98 -98
  77. package/src/resources/skills/mandu-performance/rules/perf-render-transitions.md +154 -154
  78. package/src/resources/skills/mandu-security/SKILL.md +87 -87
  79. package/src/resources/skills/mandu-security/metadata.json +13 -13
  80. package/src/resources/skills/mandu-security/rules/_sections.md +31 -31
  81. package/src/resources/skills/mandu-security/rules/_template.md +74 -74
  82. package/src/resources/skills/mandu-security/rules/sec-auth-guard.md +127 -127
  83. package/src/resources/skills/mandu-security/rules/sec-env-management.md +133 -133
  84. package/src/resources/skills/mandu-security/rules/sec-input-validate.md +148 -148
  85. package/src/resources/skills/mandu-security/rules/sec-protect-csrf.md +146 -146
  86. package/src/resources/skills/mandu-security/rules/sec-protect-headers.md +138 -138
  87. package/src/resources/skills/mandu-slot/SKILL.md +85 -85
  88. package/src/resources/skills/mandu-slot/metadata.json +12 -12
  89. package/src/resources/skills/mandu-slot/rules/_sections.md +36 -36
  90. package/src/resources/skills/mandu-slot/rules/_template.md +63 -63
  91. package/src/resources/skills/mandu-slot/rules/slot-basic-structure.md +38 -38
  92. package/src/resources/skills/mandu-slot/rules/slot-ctx-response.md +56 -56
  93. package/src/resources/skills/mandu-slot/rules/slot-guard-auth.md +59 -59
  94. package/src/resources/skills/mandu-slot/rules/slot-http-methods.md +64 -64
  95. package/src/resources/skills/mandu-styling/SKILL.md +154 -154
  96. package/src/resources/skills/mandu-styling/_sections.md +43 -43
  97. package/src/resources/skills/mandu-styling/_template.md +32 -32
  98. package/src/resources/skills/mandu-styling/metadata.json +15 -15
  99. package/src/resources/skills/mandu-styling/rules/style-component-compound.md +235 -235
  100. package/src/resources/skills/mandu-styling/rules/style-component-slots.md +255 -255
  101. package/src/resources/skills/mandu-styling/rules/style-component-tokens.md +205 -205
  102. package/src/resources/skills/mandu-styling/rules/style-island-animations.md +272 -272
  103. package/src/resources/skills/mandu-styling/rules/style-island-scoping.md +167 -167
  104. package/src/resources/skills/mandu-styling/rules/style-island-variants.md +221 -221
  105. package/src/resources/skills/mandu-styling/rules/style-perf-critical.md +209 -209
  106. package/src/resources/skills/mandu-styling/rules/style-perf-purge.md +192 -192
  107. package/src/resources/skills/mandu-styling/rules/style-setup-modules.md +162 -162
  108. package/src/resources/skills/mandu-styling/rules/style-setup-panda.md +164 -164
  109. package/src/resources/skills/mandu-styling/rules/style-setup-tailwind.md +170 -170
  110. package/src/resources/skills/mandu-styling/rules/style-tailwind-v4-gotchas.md +179 -179
  111. package/src/resources/skills/mandu-styling/rules/style-theme-darkmode.md +229 -229
  112. package/src/resources/skills/mandu-testing/SKILL.md +99 -99
  113. package/src/resources/skills/mandu-testing/metadata.json +13 -13
  114. package/src/resources/skills/mandu-testing/rules/_sections.md +26 -26
  115. package/src/resources/skills/mandu-testing/rules/_template.md +65 -65
  116. package/src/resources/skills/mandu-testing/rules/test-component-island.md +195 -195
  117. package/src/resources/skills/mandu-testing/rules/test-e2e-playwright.md +196 -196
  118. package/src/resources/skills/mandu-testing/rules/test-mock-fetch.md +219 -219
  119. package/src/resources/skills/mandu-testing/rules/test-slot-unit.md +192 -192
  120. package/src/resources/skills/mandu-ui/SKILL.md +117 -117
  121. package/src/resources/skills/mandu-ui/_sections.md +23 -23
  122. package/src/resources/skills/mandu-ui/_template.md +32 -32
  123. package/src/resources/skills/mandu-ui/metadata.json +13 -13
  124. package/src/resources/skills/mandu-ui/rules/ui-accessibility-aria.md +232 -232
  125. package/src/resources/skills/mandu-ui/rules/ui-accessibility-focus.md +238 -238
  126. package/src/resources/skills/mandu-ui/rules/ui-composition-patterns.md +259 -259
  127. package/src/resources/skills/mandu-ui/rules/ui-island-integration.md +258 -258
  128. package/src/resources/skills/mandu-ui/rules/ui-radix-patterns.md +213 -213
  129. package/src/resources/skills/mandu-ui/rules/ui-shadcn-setup.md +209 -209
  130. package/src/resources/skills/recipes.ts +932 -932
  131. package/src/server.ts +3 -3
  132. package/src/tools/ate-exemplar.ts +92 -92
  133. package/src/tools/ate-flakes.ts +90 -90
  134. package/src/tools/ate-mutate.ts +103 -103
  135. package/src/tools/ate-mutation-report.ts +64 -64
  136. package/src/tools/ate-oracle-pending.ts +49 -49
  137. package/src/tools/ate-oracle-replay.ts +44 -44
  138. package/src/tools/ate-oracle-verdict.ts +70 -70
  139. package/src/tools/ate-prompt.ts +146 -146
  140. package/src/tools/brain.ts +3 -3
  141. package/src/tools/deploy-plan.ts +378 -378
  142. package/src/tools/deploy-preview.ts +316 -316
  143. package/src/tools/design.ts +825 -825
  144. package/src/tools/docs.ts +350 -350
  145. package/src/tools/kitchen.ts +109 -23
  146. package/src/tools/lint.ts +226 -226
  147. package/src/tools/loop-close.ts +175 -175
  148. package/src/tools/negotiate.ts +263 -263
  149. package/src/tools/run-tests.ts +424 -424
  150. package/src/tools/runtime.ts +1 -1
  151. package/src/tools/slot-validation.ts +199 -199
  152. package/src/tx-lock.ts +73 -73
  153. package/src/utils/runtime-control.ts +52 -52
@@ -1,219 +1,219 @@
1
- ---
2
- title: GitHub Actions CI/CD
3
- impact: HIGH
4
- impactDescription: Automates testing and deployment pipeline
5
- tags: deployment, cicd, github, automation
6
- ---
7
-
8
- ## GitHub Actions CI/CD
9
-
10
- **Impact: HIGH (Automates testing and deployment pipeline)**
11
-
12
- GitHub Actions를 사용하여 테스트, 빌드, 배포를 자동화하세요.
13
-
14
- **.github/workflows/ci.yml:**
15
-
16
- ```yaml
17
- name: CI
18
-
19
- on:
20
- push:
21
- branches: [main, develop]
22
- pull_request:
23
- branches: [main]
24
-
25
- jobs:
26
- test:
27
- runs-on: ubuntu-latest
28
-
29
- steps:
30
- - uses: actions/checkout@v4
31
-
32
- - name: Setup Bun
33
- uses: oven-sh/setup-bun@v1
34
- with:
35
- bun-version: latest
36
-
37
- - name: Install dependencies
38
- run: bun install --frozen-lockfile
39
-
40
- - name: Type check
41
- run: bun run typecheck
42
-
43
- - name: Lint
44
- run: bun run lint
45
-
46
- - name: Test
47
- run: bun test --coverage
48
-
49
- - name: Upload coverage
50
- uses: codecov/codecov-action@v3
51
- with:
52
- files: ./coverage/lcov.info
53
-
54
- build:
55
- runs-on: ubuntu-latest
56
- needs: test
57
-
58
- steps:
59
- - uses: actions/checkout@v4
60
-
61
- - name: Setup Bun
62
- uses: oven-sh/setup-bun@v1
63
-
64
- - name: Install dependencies
65
- run: bun install --frozen-lockfile
66
-
67
- - name: Build
68
- run: bun run build
69
-
70
- - name: Upload artifacts
71
- uses: actions/upload-artifact@v4
72
- with:
73
- name: dist
74
- path: dist/
75
- ```
76
-
77
- ## 배포 워크플로우
78
-
79
- ```yaml
80
- # .github/workflows/deploy.yml
81
- name: Deploy
82
-
83
- on:
84
- push:
85
- branches: [main]
86
-
87
- jobs:
88
- deploy-render:
89
- runs-on: ubuntu-latest
90
- if: github.ref == 'refs/heads/main'
91
-
92
- steps:
93
- - name: Deploy to Render
94
- uses: johnbeynon/render-deploy-action@v0.0.8
95
- with:
96
- service-id: ${{ secrets.RENDER_SERVICE_ID }}
97
- api-key: ${{ secrets.RENDER_API_KEY }}
98
-
99
- deploy-fly:
100
- runs-on: ubuntu-latest
101
- if: github.ref == 'refs/heads/main'
102
-
103
- steps:
104
- - uses: actions/checkout@v4
105
-
106
- - name: Setup Fly
107
- uses: superfly/flyctl-actions/setup-flyctl@master
108
-
109
- - name: Deploy to Fly.io
110
- run: flyctl deploy --remote-only
111
- env:
112
- FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
113
- ```
114
-
115
- ## Docker 이미지 빌드 & 푸시
116
-
117
- ```yaml
118
- # .github/workflows/docker.yml
119
- name: Docker
120
-
121
- on:
122
- push:
123
- branches: [main]
124
- tags: ['v*']
125
-
126
- jobs:
127
- docker:
128
- runs-on: ubuntu-latest
129
-
130
- steps:
131
- - uses: actions/checkout@v4
132
-
133
- - name: Set up Docker Buildx
134
- uses: docker/setup-buildx-action@v3
135
-
136
- - name: Login to GitHub Container Registry
137
- uses: docker/login-action@v3
138
- with:
139
- registry: ghcr.io
140
- username: ${{ github.actor }}
141
- password: ${{ secrets.GITHUB_TOKEN }}
142
-
143
- - name: Extract metadata
144
- id: meta
145
- uses: docker/metadata-action@v5
146
- with:
147
- images: ghcr.io/${{ github.repository }}
148
- tags: |
149
- type=ref,event=branch
150
- type=semver,pattern={{version}}
151
- type=sha,prefix=
152
-
153
- - name: Build and push
154
- uses: docker/build-push-action@v5
155
- with:
156
- context: .
157
- push: true
158
- tags: ${{ steps.meta.outputs.tags }}
159
- cache-from: type=gha
160
- cache-to: type=gha,mode=max
161
- ```
162
-
163
- ## E2E 테스트 (Playwright)
164
-
165
- ```yaml
166
- e2e:
167
- runs-on: ubuntu-latest
168
- needs: build
169
-
170
- steps:
171
- - uses: actions/checkout@v4
172
-
173
- - name: Setup Bun
174
- uses: oven-sh/setup-bun@v1
175
-
176
- - name: Install dependencies
177
- run: bun install --frozen-lockfile
178
-
179
- - name: Install Playwright browsers
180
- run: bunx playwright install --with-deps
181
-
182
- - name: Run E2E tests
183
- run: bunx playwright test
184
-
185
- - name: Upload test results
186
- if: always()
187
- uses: actions/upload-artifact@v4
188
- with:
189
- name: playwright-report
190
- path: playwright-report/
191
- ```
192
-
193
- ## 환경별 배포
194
-
195
- ```yaml
196
- jobs:
197
- deploy:
198
- runs-on: ubuntu-latest
199
- environment: ${{ github.ref == 'refs/heads/main' && 'production' || 'staging' }}
200
-
201
- steps:
202
- - name: Deploy
203
- run: |
204
- echo "Deploying to ${{ github.ref == 'refs/heads/main' && 'production' || 'staging' }}"
205
- env:
206
- API_URL: ${{ secrets.API_URL }}
207
- ```
208
-
209
- ## 시크릿 설정
210
-
211
- ```bash
212
- # GitHub CLI로 시크릿 설정
213
- gh secret set RENDER_API_KEY --body "rnd_xxx"
214
- gh secret set RENDER_SERVICE_ID --body "srv_xxx"
215
- gh secret set FLY_API_TOKEN --body "xxx"
216
- gh secret set DATABASE_URL --body "postgresql://..."
217
- ```
218
-
219
- Reference: [GitHub Actions Documentation](https://docs.github.com/en/actions)
1
+ ---
2
+ title: GitHub Actions CI/CD
3
+ impact: HIGH
4
+ impactDescription: Automates testing and deployment pipeline
5
+ tags: deployment, cicd, github, automation
6
+ ---
7
+
8
+ ## GitHub Actions CI/CD
9
+
10
+ **Impact: HIGH (Automates testing and deployment pipeline)**
11
+
12
+ GitHub Actions를 사용하여 테스트, 빌드, 배포를 자동화하세요.
13
+
14
+ **.github/workflows/ci.yml:**
15
+
16
+ ```yaml
17
+ name: CI
18
+
19
+ on:
20
+ push:
21
+ branches: [main, develop]
22
+ pull_request:
23
+ branches: [main]
24
+
25
+ jobs:
26
+ test:
27
+ runs-on: ubuntu-latest
28
+
29
+ steps:
30
+ - uses: actions/checkout@v4
31
+
32
+ - name: Setup Bun
33
+ uses: oven-sh/setup-bun@v1
34
+ with:
35
+ bun-version: latest
36
+
37
+ - name: Install dependencies
38
+ run: bun install --frozen-lockfile
39
+
40
+ - name: Type check
41
+ run: bun run typecheck
42
+
43
+ - name: Lint
44
+ run: bun run lint
45
+
46
+ - name: Test
47
+ run: bun test --coverage
48
+
49
+ - name: Upload coverage
50
+ uses: codecov/codecov-action@v3
51
+ with:
52
+ files: ./coverage/lcov.info
53
+
54
+ build:
55
+ runs-on: ubuntu-latest
56
+ needs: test
57
+
58
+ steps:
59
+ - uses: actions/checkout@v4
60
+
61
+ - name: Setup Bun
62
+ uses: oven-sh/setup-bun@v1
63
+
64
+ - name: Install dependencies
65
+ run: bun install --frozen-lockfile
66
+
67
+ - name: Build
68
+ run: bun run build
69
+
70
+ - name: Upload artifacts
71
+ uses: actions/upload-artifact@v4
72
+ with:
73
+ name: dist
74
+ path: dist/
75
+ ```
76
+
77
+ ## 배포 워크플로우
78
+
79
+ ```yaml
80
+ # .github/workflows/deploy.yml
81
+ name: Deploy
82
+
83
+ on:
84
+ push:
85
+ branches: [main]
86
+
87
+ jobs:
88
+ deploy-render:
89
+ runs-on: ubuntu-latest
90
+ if: github.ref == 'refs/heads/main'
91
+
92
+ steps:
93
+ - name: Deploy to Render
94
+ uses: johnbeynon/render-deploy-action@v0.0.8
95
+ with:
96
+ service-id: ${{ secrets.RENDER_SERVICE_ID }}
97
+ api-key: ${{ secrets.RENDER_API_KEY }}
98
+
99
+ deploy-fly:
100
+ runs-on: ubuntu-latest
101
+ if: github.ref == 'refs/heads/main'
102
+
103
+ steps:
104
+ - uses: actions/checkout@v4
105
+
106
+ - name: Setup Fly
107
+ uses: superfly/flyctl-actions/setup-flyctl@master
108
+
109
+ - name: Deploy to Fly.io
110
+ run: flyctl deploy --remote-only
111
+ env:
112
+ FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
113
+ ```
114
+
115
+ ## Docker 이미지 빌드 & 푸시
116
+
117
+ ```yaml
118
+ # .github/workflows/docker.yml
119
+ name: Docker
120
+
121
+ on:
122
+ push:
123
+ branches: [main]
124
+ tags: ['v*']
125
+
126
+ jobs:
127
+ docker:
128
+ runs-on: ubuntu-latest
129
+
130
+ steps:
131
+ - uses: actions/checkout@v4
132
+
133
+ - name: Set up Docker Buildx
134
+ uses: docker/setup-buildx-action@v3
135
+
136
+ - name: Login to GitHub Container Registry
137
+ uses: docker/login-action@v3
138
+ with:
139
+ registry: ghcr.io
140
+ username: ${{ github.actor }}
141
+ password: ${{ secrets.GITHUB_TOKEN }}
142
+
143
+ - name: Extract metadata
144
+ id: meta
145
+ uses: docker/metadata-action@v5
146
+ with:
147
+ images: ghcr.io/${{ github.repository }}
148
+ tags: |
149
+ type=ref,event=branch
150
+ type=semver,pattern={{version}}
151
+ type=sha,prefix=
152
+
153
+ - name: Build and push
154
+ uses: docker/build-push-action@v5
155
+ with:
156
+ context: .
157
+ push: true
158
+ tags: ${{ steps.meta.outputs.tags }}
159
+ cache-from: type=gha
160
+ cache-to: type=gha,mode=max
161
+ ```
162
+
163
+ ## E2E 테스트 (Playwright)
164
+
165
+ ```yaml
166
+ e2e:
167
+ runs-on: ubuntu-latest
168
+ needs: build
169
+
170
+ steps:
171
+ - uses: actions/checkout@v4
172
+
173
+ - name: Setup Bun
174
+ uses: oven-sh/setup-bun@v1
175
+
176
+ - name: Install dependencies
177
+ run: bun install --frozen-lockfile
178
+
179
+ - name: Install Playwright browsers
180
+ run: bunx playwright install --with-deps
181
+
182
+ - name: Run E2E tests
183
+ run: bunx playwright test
184
+
185
+ - name: Upload test results
186
+ if: always()
187
+ uses: actions/upload-artifact@v4
188
+ with:
189
+ name: playwright-report
190
+ path: playwright-report/
191
+ ```
192
+
193
+ ## 환경별 배포
194
+
195
+ ```yaml
196
+ jobs:
197
+ deploy:
198
+ runs-on: ubuntu-latest
199
+ environment: ${{ github.ref == 'refs/heads/main' && 'production' || 'staging' }}
200
+
201
+ steps:
202
+ - name: Deploy
203
+ run: |
204
+ echo "Deploying to ${{ github.ref == 'refs/heads/main' && 'production' || 'staging' }}"
205
+ env:
206
+ API_URL: ${{ secrets.API_URL }}
207
+ ```
208
+
209
+ ## 시크릿 설정
210
+
211
+ ```bash
212
+ # GitHub CLI로 시크릿 설정
213
+ gh secret set RENDER_API_KEY --body "rnd_xxx"
214
+ gh secret set RENDER_SERVICE_ID --body "srv_xxx"
215
+ gh secret set FLY_API_TOKEN --body "xxx"
216
+ gh secret set DATABASE_URL --body "postgresql://..."
217
+ ```
218
+
219
+ Reference: [GitHub Actions Documentation](https://docs.github.com/en/actions)