reskill 0.17.1 → 1.0.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.
package/README.zh-CN.md CHANGED
@@ -1,6 +1,6 @@
1
1
  <div align="center">
2
2
 
3
- # reskill
3
+ <img src="https://raw.githubusercontent.com/kanyun-ai-infra/reskill/main/logov2.png" alt="reskill" height="48" />
4
4
 
5
5
  **基于 Git 的 AI Agent Skills 包管理器**
6
6
 
@@ -18,235 +18,60 @@
18
18
  ## 快速开始
19
19
 
20
20
  ```bash
21
- # 1. 初始化项目
22
21
  npx reskill@latest init
23
-
24
- # 2. 安装 skill
25
22
  npx reskill@latest install github:anthropics/skills/frontend-design@latest
26
-
27
- # 3. 列出已安装的 skills
28
23
  npx reskill@latest list
29
24
  ```
30
25
 
31
- ## 什么是 reskill?
32
-
33
- reskill 是一个**基于 Git 的包管理器**,用于管理 AI agent skills,类似 npm 或 Go modules。它提供声明式配置、版本锁定和无缝同步,帮助你在项目和团队间管理 skills。
34
-
35
- **支持:** Cursor、Claude Code、Codex、OpenCode、Windsurf、GitHub Copilot 等。
36
-
37
- ## 为什么选择 reskill?
38
-
39
- reskill 提供**精细化的 skill 管理和同步方案**:
40
-
41
- ### 本地体验优化
42
-
43
- - **声明式配置** — `skills.json` 清晰表达项目依赖
44
- - **全局缓存** — 避免重复下载,加速安装
26
+ ## 特性
45
27
 
46
- ### 工程化项目管理
47
-
48
- - **版本锁定**`skills.lock` 确保团队一致性
49
- - **灵活版本**支持精确版本、semver 范围、分支和 commit
50
- - **Git 即 Registry** — 无需额外服务,任何 Git 仓库都可作为 skill 源
51
-
52
- ### 跨项目同步
53
-
54
- - **版本控制** — 将 `skills.json` 和 `skills.lock` 提交到仓库
55
- - **CI 集成** — 在 CI 中运行 `reskill install` 验证依赖
56
- - **多 Registry** — 支持 GitHub、GitLab 和私有仓库
57
-
58
- ### 灵活的版本策略
59
-
60
- ```json
61
- {
62
- "skills": {
63
- "frontend-design": "github:anthropics/skills/frontend-design@latest",
64
- "code-review": "github:team/code-review@v2.1.0",
65
- "testing": "github:team/testing@^1.0.0"
66
- }
67
- }
68
- ```
69
-
70
- 运行 `reskill update` 时:
71
-
72
- - `@latest` 的 skill 会自动更新到最新 tag
73
- - `@v2.1.0` 保持不变
74
- - `@^1.0.0` 会更新到 1.x.x 的最新版本
28
+ - **一键安装** — 从任意 Git 仓库一键安装 skill
29
+ - **声明式配置** — `skills.json` + `skills.lock` 确保团队一致性
30
+ - **灵活版本**精确版本、semver 范围、分支、commit
31
+ - **多 Registry** GitHub、GitLab、自建、私有仓库
32
+ - **多 Agent** — Cursor、Claude Code、Codex、Windsurf、GitHub Copilot
75
33
 
76
34
  ## 安装
77
35
 
78
36
  ```bash
79
- # 全局安装(推荐常态化使用)
80
- npm install -g reskill
81
-
82
- # 或使用 npx(推荐加 @latest 确保最新版本)
83
- npx reskill@latest <command>
84
-
85
- # 单次使用也可以直接 npx reskill
86
- npx reskill <command>
37
+ npm install -g reskill # 全局安装
38
+ npx reskill@latest <command> # 或直接使用 npx
87
39
  ```
88
40
 
89
- > **注意:** 使用 `npx` 时,建议使用 `npx reskill@latest` 以确保使用最新版本。不加 `@latest` 时,npx 可能会使用缓存的旧版本。
90
-
91
- ## 使用方式
92
-
93
- ### 源格式
94
-
95
- ```bash
96
- # GitHub 简写
97
- npx reskill@latest install github:user/skill@v1.0.0
98
-
99
- # 完整 Git URL
100
- npx reskill@latest install https://github.com/user/skill.git
101
-
102
- # GitHub 网页 URL(支持分支和子路径)
103
- npx reskill@latest install https://github.com/vercel-labs/agent-skills/tree/main/skills/web-design-guidelines
104
-
105
- # GitLab
106
- npx reskill@latest install gitlab:group/skill@latest
107
-
108
- # 私有 Registry
109
- npx reskill@latest install gitlab.company.com:team/skill@v1.0.0
110
-
111
- # 默认 Registry(来自 skills.json)
112
- npx reskill@latest install user/skill@v1.0.0
113
- ```
114
-
115
- ### 版本规范
116
-
117
- | 格式 | 示例 | 说明 |
118
- | -------- | ----------------- | ----------------------------- |
119
- | 精确版本 | `@v1.0.0` | 锁定到指定 tag |
120
- | 最新版本 | `@latest` | 获取最新 tag |
121
- | 范围版本 | `@^2.0.0` | semver 兼容(>=2.0.0 <3.0.0) |
122
- | 分支 | `@branch:develop` | 指定分支 |
123
- | Commit | `@commit:abc1234` | 指定 commit hash |
124
-
125
41
  ## 命令
126
42
 
127
- 无需全局安装,直接使用 `npx reskill@latest`:
128
-
129
- ```bash
130
- # 初始化项目
131
- npx reskill@latest init
132
-
133
- # GitHub 安装 skill
134
- npx reskill@latest install github:anthropics/skills/frontend-design@latest
135
-
136
- # 从私有 GitLab 安装
137
- npx reskill@latest install gitlab.company.com:team/internal-skill@v1.0.0
138
-
139
- # 列出已安装的 skills
140
- npx reskill@latest list
141
- ```
142
-
143
- ### 命令参考
144
-
145
- | 命令 | 说明 |
146
- | --------------------------------------- | ----------------------------------------------- |
147
- | `npx reskill@latest init` | 在当前目录初始化 `skills.json` |
148
- | `npx reskill@latest install [skill]` | 安装 `skills.json` 中的所有 skills 或指定 skill |
149
- | `npx reskill@latest list` | 列出已安装的 skills |
150
- | `npx reskill@latest info <skill>` | 查看 skill 详情 |
151
- | `npx reskill@latest update [skill]` | 更新所有或指定 skill |
152
- | `npx reskill@latest outdated` | 检查过期的 skills |
153
- | `npx reskill@latest uninstall <skill>` | 卸载 skill |
154
- | `npx reskill@latest completion install` | 安装 Shell Tab 补全 |
155
-
156
- 运行 `npx reskill@latest <command> --help` 查看详细选项。
157
-
158
- ### Shell 补全
159
-
160
- reskill 支持 bash、zsh 和 fish 的 Tab 补全。
161
-
162
- ```bash
163
- # 安装补全(交互式,一次性设置)
164
- reskill completion install
165
-
166
- # 然后重启 shell 或执行:
167
- source ~/.zshrc # zsh
168
- source ~/.bashrc # bash
169
- ```
170
-
171
- 安装后即可使用 Tab 补全:
172
-
173
- ```bash
174
- reskill <Tab> # 显示所有命令
175
- reskill info <Tab> # 补全已安装的 skill 名称
176
- reskill uninstall <Tab> # 补全已安装的 skill 名称
177
- reskill install -<Tab> # 补全选项 (-f, -g, -a 等)
178
- reskill install -a <Tab> # 补全 agent 名称
179
- ```
180
-
181
- 卸载补全:`reskill completion uninstall`
182
-
183
- ## 私有 GitLab 支持
184
-
185
- reskill 完整支持私有 GitLab 仓库,包括自建实例。认证通过系统的 git 配置透明处理。
43
+ | 命令 | 说明 |
44
+ | -------------------- | -------------------- |
45
+ | `init` | 初始化 `skills.json` |
46
+ | `install [skill]` | 安装 skills |
47
+ | `list` | 列出已安装的 skills |
48
+ | `info <skill>` | 查看 skill 详情 |
49
+ | `update [skill]` | 更新 skills |
50
+ | `outdated` | 检查过期的 skills |
51
+ | `uninstall <skill>` | 卸载 skill |
52
+ | `doctor` | 诊断环境并检查问题 |
53
+ | `completion install` | 安装 Shell Tab 补全 |
186
54
 
187
- ### 认证方式
55
+ 运行 `reskill <command> --help` 查看详细选项。
188
56
 
189
- **SSH(推荐)**
190
-
191
- reskill 自动使用你已有的 SSH 配置:
57
+ ## 源格式
192
58
 
193
59
  ```bash
194
- # 自动使用 ~/.ssh/id_rsa 或 ~/.ssh/id_ed25519
195
- npx reskill@latest install gitlab.company.com:team/private-skill@v1.0.0
196
-
197
- # 或使用显式的 SSH URL
198
- npx reskill@latest install git@gitlab.company.com:team/private-skill.git@v1.0.0
60
+ github:user/skill@v1.0.0 # GitHub 简写
61
+ gitlab:group/skill@latest # GitLab 简写
62
+ gitlab.company.com:team/skill@v1.0.0 # 自建实例
63
+ https://github.com/user/repo/tree/main/path # 网页 URL(支持子路径)
199
64
  ```
200
65
 
201
- 确保你的 SSH key 已添加到 GitLab,并且 ssh-agent 正在运行。
202
-
203
- **HTTPS + Git Credential**
204
-
205
- 适用于 CI/CD 或无 SSH 的环境,配置 git credential helper:
206
-
207
- ```bash
208
- # 存储凭证(首次会提示输入,之后自动记住)
209
- git config --global credential.helper store
210
-
211
- # 或在 CI 中使用环境变量
212
- git config --global credential.helper '!f() { echo "username=oauth2"; echo "password=${GITLAB_TOKEN}"; }; f'
213
- ```
214
-
215
- GitLab CI/CD 可使用内置的 `CI_JOB_TOKEN`:
216
-
217
- ```yaml
218
- before_script:
219
- - git config --global url."https://gitlab-ci-token:${CI_JOB_TOKEN}@gitlab.company.com/".insteadOf "https://gitlab.company.com/"
220
- ```
66
+ ## 版本规范
221
67
 
222
- ### Registry 配置
223
-
224
- `skills.json` 中配置私有 registry:
225
-
226
- ```json
227
- {
228
- "registries": {
229
- "internal": "https://gitlab.company.com",
230
- "private": "git@gitlab.internal.io"
231
- },
232
- "skills": {
233
- "company-standards": "internal:team/standards@latest",
234
- "private-utils": "private:utils/helpers@v1.0.0"
235
- }
236
- }
237
- ```
238
-
239
- ### 自建 GitLab
240
-
241
- 对于使用自定义域名的自建 GitLab 实例:
242
-
243
- ```bash
244
- # 直接安装
245
- npx reskill@latest install git.mycompany.io:team/skill@v1.0.0
246
-
247
- # 使用显式的 SSH URL
248
- npx reskill@latest install git@git.mycompany.io:team/skill.git@v1.0.0
249
- ```
68
+ | 格式 | 示例 | 说明 |
69
+ | -------- | ----------------- | ---------------- |
70
+ | 精确版本 | `@v1.0.0` | 锁定到指定 tag |
71
+ | 最新版本 | `@latest` | 获取最新 tag |
72
+ | 范围版本 | `@^2.0.0` | semver 兼容 |
73
+ | 分支 | `@branch:develop` | 指定分支 |
74
+ | Commit | `@commit:abc1234` | 指定 commit hash |
250
75
 
251
76
  ## 配置
252
77
 
@@ -254,81 +79,40 @@ npx reskill@latest install git@git.mycompany.io:team/skill.git@v1.0.0
254
79
 
255
80
  ```json
256
81
  {
257
- "name": "my-project",
258
82
  "skills": {
259
83
  "planning": "github:user/planning-skill@v1.0.0",
260
- "code-review": "gitlab:team/code-review@latest"
261
- },
262
- "defaults": {
263
- "registry": "github",
264
- "installDir": ".skills"
84
+ "internal-tool": "internal:team/tool@latest"
265
85
  },
266
86
  "registries": {
267
87
  "internal": "https://gitlab.company.com"
88
+ },
89
+ "defaults": {
90
+ "installDir": ".skills"
268
91
  }
269
92
  }
270
93
  ```
271
94
 
272
- ### skills.lock
95
+ ### 私有仓库
96
+
97
+ reskill 使用你已有的 git 凭证(SSH key 或 credential helper)。CI/CD 配置:
273
98
 
274
- 锁定文件记录精确版本和 commit hash,确保团队间可复现的安装结果。
99
+ ```bash
100
+ # GitLab CI
101
+ git config --global url."https://gitlab-ci-token:${CI_JOB_TOKEN}@gitlab.company.com/".insteadOf "https://gitlab.company.com/"
102
+ ```
275
103
 
276
104
  ## 多 Agent 支持
277
105
 
278
- reskill 支持所有主流 AI 编程 Agent。Skills 默认安装到 `.skills/` 目录,可与任何 Agent 集成。
106
+ Skills 默认安装到 `.skills/`,可与任何 Agent 集成:
279
107
 
280
- | Agent | 集成路径 |
108
+ | Agent | 路径 |
281
109
  | -------------- | ------------------------------------- |
282
110
  | Cursor | `.cursor/rules/` 或 `.cursor/skills/` |
283
111
  | Claude Code | `.claude/skills/` |
284
112
  | Codex | `.codex/skills/` |
285
- | OpenCode | `.opencode/skills/` |
286
113
  | Windsurf | `.windsurf/skills/` |
287
114
  | GitHub Copilot | `.github/skills/` |
288
115
 
289
- ## Skill 仓库结构
290
-
291
- 每个 Skill 仓库应遵循以下结构:
292
-
293
- ```
294
- my-skill/
295
- ├── skill.json # 元数据(必需)
296
- ├── SKILL.md # 主入口文档(必需)
297
- ├── README.md # 仓库说明
298
- └── templates/ # 模板文件(可选)
299
- ```
300
-
301
- ### skill.json
302
-
303
- ```json
304
- {
305
- "name": "my-skill",
306
- "version": "1.0.0",
307
- "description": "A skill for ...",
308
- "author": "Your Name",
309
- "license": "MIT",
310
- "entry": "SKILL.md",
311
- "keywords": ["ai", "skill"]
312
- }
313
- ```
314
-
315
- ## 项目结构
316
-
317
- 安装后的目录结构:
318
-
319
- ```
320
- my-project/
321
- ├── skills.json # 依赖声明
322
- ├── skills.lock # 版本锁定文件
323
- └── .skills/ # 安装目录
324
- ├── planning/
325
- │ ├── skill.json
326
- │ └── SKILL.md
327
- └── code-review/
328
- ├── skill.json
329
- └── SKILL.md
330
- ```
331
-
332
116
  ## 环境变量
333
117
 
334
118
  | 变量 | 说明 | 默认值 |
@@ -363,8 +147,6 @@ reskill 的实现参考了以下优秀项目:
363
147
  - [skild](https://github.com/Peiiii/skild) by Peiiii
364
148
  - [openskills](https://github.com/numman-ali/openskills) by Numman Ali
365
149
 
366
- 感谢这些项目为 AI agent skills 生态系统做出的开创性贡献!
367
-
368
150
  ## 相关链接
369
151
 
370
152
  - [Agent Skills 规范](https://agentskills.io)
@@ -0,0 +1,119 @@
1
+ import { Command } from 'commander';
2
+ /**
3
+ * Check result type
4
+ */
5
+ export type CheckStatus = 'ok' | 'warn' | 'error';
6
+ export interface CheckResult {
7
+ name: string;
8
+ status: CheckStatus;
9
+ message: string;
10
+ hint?: string;
11
+ }
12
+ /**
13
+ * Get status icon
14
+ */
15
+ export declare function getStatusIcon(status: CheckStatus): string;
16
+ /**
17
+ * Execute command and return output
18
+ *
19
+ * @warning This function executes arbitrary shell commands. It is exported for
20
+ * testing purposes only. Do not use with untrusted input. Internal usage is
21
+ * limited to hardcoded commands (e.g., 'git --version').
22
+ */
23
+ export declare function execCommand(command: string): string | null;
24
+ /**
25
+ * Get directory size in bytes
26
+ */
27
+ export declare function getDirSize(dirPath: string): number;
28
+ /**
29
+ * Format bytes to human readable
30
+ */
31
+ export declare function formatBytes(bytes: number): string;
32
+ /**
33
+ * Count cached skills
34
+ */
35
+ export declare function countCachedSkills(cacheDir: string): number;
36
+ /**
37
+ * Check reskill version
38
+ */
39
+ export declare function checkReskillVersion(currentVersion: string, packageName: string): Promise<CheckResult>;
40
+ /**
41
+ * Check Node.js version
42
+ */
43
+ export declare function checkNodeVersion(): CheckResult;
44
+ /**
45
+ * Check Git version
46
+ */
47
+ export declare function checkGitVersion(): CheckResult;
48
+ /**
49
+ * Check Git authentication
50
+ */
51
+ export declare function checkGitAuth(): CheckResult;
52
+ /**
53
+ * Check cache directory
54
+ */
55
+ export declare function checkCacheDir(): CheckResult;
56
+ /**
57
+ * Check skills.json
58
+ */
59
+ export declare function checkSkillsJson(cwd: string): CheckResult;
60
+ /**
61
+ * Check for registry name conflicts
62
+ */
63
+ export declare function checkRegistryConflicts(cwd: string): CheckResult[];
64
+ /**
65
+ * Check for dangerous installDir configuration
66
+ */
67
+ export declare function checkInstallDir(cwd: string): CheckResult | null;
68
+ /**
69
+ * Check for invalid targetAgents configuration
70
+ */
71
+ export declare function checkTargetAgents(cwd: string): CheckResult[];
72
+ /**
73
+ * Check for skill reference format errors
74
+ */
75
+ export declare function checkSkillRefs(cwd: string): CheckResult[];
76
+ /**
77
+ * Check for version conflicts in monorepo skills
78
+ */
79
+ export declare function checkMonorepoVersions(cwd: string): CheckResult[];
80
+ /**
81
+ * Check skills.lock sync status
82
+ */
83
+ export declare function checkSkillsLock(cwd: string): CheckResult;
84
+ /**
85
+ * Skill issue type
86
+ */
87
+ export interface SkillIssue {
88
+ name: string;
89
+ reason: string;
90
+ severity: 'error' | 'warn';
91
+ }
92
+ /**
93
+ * Check installed skills with detailed diagnostics
94
+ */
95
+ export declare function checkInstalledSkills(cwd: string): CheckResult[];
96
+ /**
97
+ * Check network connectivity
98
+ */
99
+ export declare function checkNetwork(host: string): Promise<CheckResult>;
100
+ /**
101
+ * Print check result
102
+ */
103
+ export declare function printResult(result: CheckResult): void;
104
+ /**
105
+ * Run all checks
106
+ */
107
+ export declare function runDoctorChecks(options: {
108
+ cwd: string;
109
+ packageName: string;
110
+ packageVersion: string;
111
+ skipNetwork?: boolean;
112
+ skipConfigChecks?: boolean;
113
+ }): Promise<CheckResult[]>;
114
+ /**
115
+ * doctor command - Diagnose reskill environment
116
+ */
117
+ export declare const doctorCommand: Command;
118
+ export default doctorCommand;
119
+ //# sourceMappingURL=doctor.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"doctor.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/doctor.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AASpC;;GAEG;AACH,MAAM,MAAM,WAAW,GAAG,IAAI,GAAG,MAAM,GAAG,OAAO,CAAC;AAElD,MAAM,WAAW,WAAW;IAC1B,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,WAAW,CAAC;IACpB,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED;;GAEG;AACH,wBAAgB,aAAa,CAAC,MAAM,EAAE,WAAW,GAAG,MAAM,CASzD;AAED;;;;;;GAMG;AACH,wBAAgB,WAAW,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAM1D;AAED;;GAEG;AACH,wBAAgB,UAAU,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,CAkBlD;AAED;;GAEG;AACH,wBAAgB,WAAW,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAMjD;AAED;;GAEG;AACH,wBAAgB,iBAAiB,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM,CA2B1D;AAED;;GAEG;AACH,wBAAsB,mBAAmB,CACvC,cAAc,EAAE,MAAM,EACtB,WAAW,EAAE,MAAM,GAClB,OAAO,CAAC,WAAW,CAAC,CAuBtB;AAED;;GAEG;AACH,wBAAgB,gBAAgB,IAAI,WAAW,CAmB9C;AAED;;GAEG;AACH,wBAAgB,eAAe,IAAI,WAAW,CAqB7C;AAED;;GAEG;AACH,wBAAgB,YAAY,IAAI,WAAW,CAiD1C;AAED;;GAEG;AACH,wBAAgB,aAAa,IAAI,WAAW,CAmB3C;AAED;;GAEG;AACH,wBAAgB,eAAe,CAAC,GAAG,EAAE,MAAM,GAAG,WAAW,CA4BxD;AAwCD;;GAEG;AACH,wBAAgB,sBAAsB,CAAC,GAAG,EAAE,MAAM,GAAG,WAAW,EAAE,CA2BjE;AAED;;GAEG;AACH,wBAAgB,eAAe,CAAC,GAAG,EAAE,MAAM,GAAG,WAAW,GAAG,IAAI,CAwC/D;AAED;;GAEG;AACH,wBAAgB,iBAAiB,CAAC,GAAG,EAAE,MAAM,GAAG,WAAW,EAAE,CA2B5D;AAED;;GAEG;AACH,wBAAgB,cAAc,CAAC,GAAG,EAAE,MAAM,GAAG,WAAW,EAAE,CAyCzD;AAED;;GAEG;AACH,wBAAgB,qBAAqB,CAAC,GAAG,EAAE,MAAM,GAAG,WAAW,EAAE,CA6DhE;AAED;;GAEG;AACH,wBAAgB,eAAe,CAAC,GAAG,EAAE,MAAM,GAAG,WAAW,CAsExD;AAED;;GAEG;AACH,MAAM,WAAW,UAAU;IACzB,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,EAAE,OAAO,GAAG,MAAM,CAAC;CAC5B;AA4CD;;GAEG;AACH,wBAAgB,oBAAoB,CAAC,GAAG,EAAE,MAAM,GAAG,WAAW,EAAE,CA0F/D;AAED;;GAEG;AACH,wBAAsB,YAAY,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,WAAW,CAAC,CAoCrE;AAED;;GAEG;AACH,wBAAgB,WAAW,CAAC,MAAM,EAAE,WAAW,GAAG,IAAI,CAUrD;AAED;;GAEG;AACH,wBAAsB,eAAe,CAAC,OAAO,EAAE;IAC7C,GAAG,EAAE,MAAM,CAAC;IACZ,WAAW,EAAE,MAAM,CAAC;IACpB,cAAc,EAAE,MAAM,CAAC;IACvB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,gBAAgB,CAAC,EAAE,OAAO,CAAC;CAC5B,GAAG,OAAO,CAAC,WAAW,EAAE,CAAC,CA4CzB;AAED;;GAEG;AACH,eAAO,MAAM,aAAa,SAgDtB,CAAC;AAEL,eAAe,aAAa,CAAC"}
@@ -1,4 +1,5 @@
1
1
  export { completionCommand, maybeHandleCompletion } from './completion.js';
2
+ export { doctorCommand } from './doctor.js';
2
3
  export { infoCommand } from './info.js';
3
4
  export { initCommand } from './init.js';
4
5
  export { installCommand } from './install.js';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,qBAAqB,EAAE,MAAM,iBAAiB,CAAC;AAC3E,OAAO,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AACxC,OAAO,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AACxC,OAAO,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;AAC9C,OAAO,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AACxC,OAAO,EAAE,eAAe,EAAE,MAAM,eAAe,CAAC;AAChD,OAAO,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAC;AAClD,OAAO,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,qBAAqB,EAAE,MAAM,iBAAiB,CAAC;AAC3E,OAAO,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAC5C,OAAO,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AACxC,OAAO,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AACxC,OAAO,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;AAC9C,OAAO,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AACxC,OAAO,EAAE,eAAe,EAAE,MAAM,eAAe,CAAC;AAChD,OAAO,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAC;AAClD,OAAO,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC"}