@powerformer/refly-cli 0.1.4 → 0.1.6
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 +334 -114
- package/dist/bin/refly.js.map +1 -1
- package/dist/index.d.ts +5 -4
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/package.json +12 -3
- package/skill/SKILL.md +37 -227
- package/skill/references/file.md +20 -0
- package/skill/references/node.md +46 -0
- package/skill/references/skill.md +119 -0
- package/skill/references/workflow.md +82 -0
- package/skill/registry.json +15 -0
- package/skill/references/api-errors.md +0 -120
- package/skill/references/node-types.md +0 -91
- package/skill/references/workflow-schema.md +0 -95
package/dist/index.d.ts
CHANGED
|
@@ -357,6 +357,7 @@ declare const ErrorCodes: {
|
|
|
357
357
|
readonly RUN_NOT_FOUND: "RUN_NOT_FOUND";
|
|
358
358
|
readonly INVALID_NODE_TYPE: "INVALID_NODE_TYPE";
|
|
359
359
|
readonly INVALID_NODE_INPUT: "INVALID_NODE_INPUT";
|
|
360
|
+
readonly EXECUTION_FAILED: "EXECUTION_FAILED";
|
|
360
361
|
readonly NETWORK_ERROR: "NETWORK_ERROR";
|
|
361
362
|
readonly TIMEOUT: "TIMEOUT";
|
|
362
363
|
readonly API_ERROR: "API_ERROR";
|
|
@@ -478,11 +479,11 @@ declare const ConfigSchema: z.ZodObject<{
|
|
|
478
479
|
uid: string;
|
|
479
480
|
name?: string | undefined;
|
|
480
481
|
} | undefined;
|
|
481
|
-
provider?: "google" | "github" | undefined;
|
|
482
482
|
method?: "oauth" | "apikey" | undefined;
|
|
483
483
|
accessToken?: string | undefined;
|
|
484
484
|
refreshToken?: string | undefined;
|
|
485
485
|
expiresAt?: string | undefined;
|
|
486
|
+
provider?: "google" | "github" | undefined;
|
|
486
487
|
apiKey?: string | undefined;
|
|
487
488
|
apiKeyId?: string | undefined;
|
|
488
489
|
apiKeyName?: string | undefined;
|
|
@@ -492,11 +493,11 @@ declare const ConfigSchema: z.ZodObject<{
|
|
|
492
493
|
uid: string;
|
|
493
494
|
name?: string | undefined;
|
|
494
495
|
} | undefined;
|
|
495
|
-
provider?: "google" | "github" | undefined;
|
|
496
496
|
method?: "oauth" | "apikey" | undefined;
|
|
497
497
|
accessToken?: string | undefined;
|
|
498
498
|
refreshToken?: string | undefined;
|
|
499
499
|
expiresAt?: string | undefined;
|
|
500
|
+
provider?: "google" | "github" | undefined;
|
|
500
501
|
apiKey?: string | undefined;
|
|
501
502
|
apiKeyId?: string | undefined;
|
|
502
503
|
apiKeyName?: string | undefined;
|
|
@@ -530,11 +531,11 @@ declare const ConfigSchema: z.ZodObject<{
|
|
|
530
531
|
uid: string;
|
|
531
532
|
name?: string | undefined;
|
|
532
533
|
} | undefined;
|
|
533
|
-
provider?: "google" | "github" | undefined;
|
|
534
534
|
method?: "oauth" | "apikey" | undefined;
|
|
535
535
|
accessToken?: string | undefined;
|
|
536
536
|
refreshToken?: string | undefined;
|
|
537
537
|
expiresAt?: string | undefined;
|
|
538
|
+
provider?: "google" | "github" | undefined;
|
|
538
539
|
apiKey?: string | undefined;
|
|
539
540
|
apiKeyId?: string | undefined;
|
|
540
541
|
apiKeyName?: string | undefined;
|
|
@@ -554,11 +555,11 @@ declare const ConfigSchema: z.ZodObject<{
|
|
|
554
555
|
uid: string;
|
|
555
556
|
name?: string | undefined;
|
|
556
557
|
} | undefined;
|
|
557
|
-
provider?: "google" | "github" | undefined;
|
|
558
558
|
method?: "oauth" | "apikey" | undefined;
|
|
559
559
|
accessToken?: string | undefined;
|
|
560
560
|
refreshToken?: string | undefined;
|
|
561
561
|
expiresAt?: string | undefined;
|
|
562
|
+
provider?: "google" | "github" | undefined;
|
|
562
563
|
apiKey?: string | undefined;
|
|
563
564
|
apiKeyId?: string | undefined;
|
|
564
565
|
apiKeyName?: string | undefined;
|
package/dist/index.js
CHANGED