@powerformer/refly-cli 0.1.22 → 0.1.24
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/bin/refly.js +1565 -236
- package/dist/bin/refly.js.map +1 -1
- package/dist/index.d.ts +18 -0
- package/dist/index.js +1012 -93
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/skill/SKILL.md +114 -13
package/dist/index.d.ts
CHANGED
|
@@ -165,6 +165,16 @@ declare const ConfigSchema: z.ZodObject<{
|
|
|
165
165
|
installedVersion?: string | undefined;
|
|
166
166
|
installedAt?: string | undefined;
|
|
167
167
|
}>>;
|
|
168
|
+
platforms: z.ZodOptional<z.ZodRecord<z.ZodEnum<["claude-code", "codex", "antigravity", "github-copilot", "windsurf", "opencode", "moltbot", "cursor", "continue", "trae", "qoder"]>, z.ZodObject<{
|
|
169
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
170
|
+
globalPath: z.ZodOptional<z.ZodString>;
|
|
171
|
+
}, "strip", z.ZodTypeAny, {
|
|
172
|
+
enabled: boolean;
|
|
173
|
+
globalPath?: string | undefined;
|
|
174
|
+
}, {
|
|
175
|
+
enabled?: boolean | undefined;
|
|
176
|
+
globalPath?: string | undefined;
|
|
177
|
+
}>>>;
|
|
168
178
|
}, "strip", z.ZodTypeAny, {
|
|
169
179
|
version: number;
|
|
170
180
|
skill?: {
|
|
@@ -189,6 +199,10 @@ declare const ConfigSchema: z.ZodObject<{
|
|
|
189
199
|
api?: {
|
|
190
200
|
endpoint: string;
|
|
191
201
|
} | undefined;
|
|
202
|
+
platforms?: Partial<Record<"claude-code" | "codex" | "antigravity" | "github-copilot" | "windsurf" | "opencode" | "moltbot" | "cursor" | "continue" | "trae" | "qoder", {
|
|
203
|
+
enabled: boolean;
|
|
204
|
+
globalPath?: string | undefined;
|
|
205
|
+
}>> | undefined;
|
|
192
206
|
}, {
|
|
193
207
|
skill?: {
|
|
194
208
|
installedVersion?: string | undefined;
|
|
@@ -213,6 +227,10 @@ declare const ConfigSchema: z.ZodObject<{
|
|
|
213
227
|
api?: {
|
|
214
228
|
endpoint?: string | undefined;
|
|
215
229
|
} | undefined;
|
|
230
|
+
platforms?: Partial<Record<"claude-code" | "codex" | "antigravity" | "github-copilot" | "windsurf" | "opencode" | "moltbot" | "cursor" | "continue" | "trae" | "qoder", {
|
|
231
|
+
enabled?: boolean | undefined;
|
|
232
|
+
globalPath?: string | undefined;
|
|
233
|
+
}>> | undefined;
|
|
216
234
|
}>;
|
|
217
235
|
type Config = z.infer<typeof ConfigSchema>;
|
|
218
236
|
/**
|