@perceptdot/vercel 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.
- package/dist/index.js +0 -0
- package/package.json +1 -1
- package/smithery.yaml +28 -0
package/dist/index.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
package/smithery.yaml
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# Smithery configuration — @perceptdot/vercel
|
|
2
|
+
# AI agent vision for Vercel deployments with ROI measurement
|
|
3
|
+
# https://smithery.ai/docs/config#smitheryyaml
|
|
4
|
+
|
|
5
|
+
startCommand:
|
|
6
|
+
type: stdio
|
|
7
|
+
|
|
8
|
+
configSchema:
|
|
9
|
+
type: object
|
|
10
|
+
required:
|
|
11
|
+
- vercelToken
|
|
12
|
+
properties:
|
|
13
|
+
vercelToken:
|
|
14
|
+
type: string
|
|
15
|
+
description: "Vercel API 토큰. vercel.com/account/tokens 에서 발급."
|
|
16
|
+
vercelTeamId:
|
|
17
|
+
type: string
|
|
18
|
+
description: "Vercel 팀 ID (선택). 팀 프로젝트 조회 시 필요."
|
|
19
|
+
|
|
20
|
+
commandFunction: |-
|
|
21
|
+
config => ({
|
|
22
|
+
command: 'npx',
|
|
23
|
+
args: ['-y', '@perceptdot/vercel'],
|
|
24
|
+
env: {
|
|
25
|
+
VERCEL_TOKEN: config.vercelToken,
|
|
26
|
+
...(config.vercelTeamId ? { VERCEL_TEAM_ID: config.vercelTeamId } : {})
|
|
27
|
+
}
|
|
28
|
+
})
|