ccjk 2.2.4 → 2.3.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 (70) hide show
  1. package/dist/chunks/auto-updater.mjs +15 -1
  2. package/dist/chunks/ccjk-config.mjs +77 -13
  3. package/dist/chunks/ccr.mjs +7 -10
  4. package/dist/chunks/ccu.mjs +4 -4
  5. package/dist/chunks/check-updates.mjs +4 -7
  6. package/dist/chunks/claude-code-config-manager.mjs +8 -11
  7. package/dist/chunks/claude-code-incremental-manager.mjs +4 -7
  8. package/dist/chunks/codex.mjs +416 -17
  9. package/dist/chunks/commands.mjs +392 -89
  10. package/dist/chunks/commands2.mjs +109 -0
  11. package/dist/chunks/config-consolidator.mjs +2 -2
  12. package/dist/chunks/config-switch.mjs +5 -8
  13. package/dist/chunks/doctor.mjs +6 -6
  14. package/dist/chunks/features.mjs +654 -35
  15. package/dist/chunks/help.mjs +339 -0
  16. package/dist/chunks/index.mjs +1020 -10
  17. package/dist/chunks/index2.mjs +4 -3
  18. package/dist/chunks/index3.mjs +1171 -0
  19. package/dist/chunks/init.mjs +21 -24
  20. package/dist/chunks/installer.mjs +178 -0
  21. package/dist/chunks/interview.mjs +6 -6
  22. package/dist/chunks/mcp-performance.mjs +79 -2
  23. package/dist/chunks/mcp.mjs +500 -0
  24. package/dist/chunks/menu.mjs +10 -10
  25. package/dist/chunks/notification.mjs +5 -5
  26. package/dist/chunks/onboarding.mjs +6 -6
  27. package/dist/chunks/package.mjs +1 -1
  28. package/dist/chunks/platform.mjs +10 -10
  29. package/dist/chunks/prompts.mjs +7 -8
  30. package/dist/chunks/session.mjs +2 -2
  31. package/dist/chunks/skills-sync.mjs +2 -2
  32. package/dist/chunks/uninstall.mjs +4 -5
  33. package/dist/chunks/update.mjs +4 -7
  34. package/dist/chunks/upgrade-manager.mjs +2 -2
  35. package/dist/chunks/version-checker.mjs +88 -7
  36. package/dist/chunks/workflows.mjs +617 -84
  37. package/dist/cli.mjs +295 -55
  38. package/dist/i18n/locales/en/agentBrowser.json +79 -0
  39. package/dist/i18n/locales/en/cloud-sync.json +147 -0
  40. package/dist/i18n/locales/en/marketplace.json +32 -1
  41. package/dist/i18n/locales/en/mcp.json +2 -4
  42. package/dist/i18n/locales/en/updater.json +3 -1
  43. package/dist/i18n/locales/zh/agentBrowser.json +79 -0
  44. package/dist/i18n/locales/zh-CN/cloud-sync.json +147 -0
  45. package/dist/i18n/locales/zh-CN/common.json +1 -1
  46. package/dist/i18n/locales/zh-CN/marketplace.json +32 -1
  47. package/dist/i18n/locales/zh-CN/mcp.json +2 -4
  48. package/dist/i18n/locales/zh-CN/updater.json +3 -1
  49. package/dist/index.d.mts +8 -584
  50. package/dist/index.d.ts +8 -584
  51. package/dist/index.mjs +9 -13
  52. package/dist/shared/{ccjk.DJM5aVQJ.mjs → ccjk.ByTIGCUC.mjs} +3 -3
  53. package/dist/shared/{ccjk.qYAnUMuy.mjs → ccjk.CGTmRqsu.mjs} +2 -3
  54. package/dist/shared/{ccjk.CUdzQluX.mjs → ccjk.CURU8gbR.mjs} +1 -1
  55. package/dist/{chunks/mcp-market.mjs → shared/ccjk.D-RZS4E2.mjs} +6 -65
  56. package/dist/shared/{ccjk.B7169qud.mjs → ccjk.tB4-Y4Qb.mjs} +3 -3
  57. package/package.json +4 -1
  58. package/templates/common/skills/en/agent-browser.md +258 -0
  59. package/templates/common/skills/zh-CN/agent-browser.md +260 -0
  60. package/dist/chunks/claude-config.mjs +0 -228
  61. package/dist/chunks/features2.mjs +0 -661
  62. package/dist/chunks/json-config.mjs +0 -59
  63. package/dist/chunks/mcp-doctor.mjs +0 -160
  64. package/dist/chunks/mcp-profile.mjs +0 -220
  65. package/dist/chunks/mcp-release.mjs +0 -138
  66. package/dist/chunks/shencha.mjs +0 -320
  67. package/dist/chunks/tools.mjs +0 -169
  68. package/dist/shared/ccjk.COdsoe-Y.mjs +0 -64
  69. package/dist/shared/ccjk.DwDtZ5cK.mjs +0 -266
  70. package/dist/shared/ccjk.n_AtlHzB.mjs +0 -186
package/dist/index.d.mts CHANGED
@@ -464,593 +464,17 @@ declare function getPluginSkills(): any[];
464
464
  declare function initializePlugins(): Promise<void>;
465
465
 
466
466
  /**
467
- * Project context for LLM analysis
468
- */
469
- interface ProjectContext$1 {
470
- /** Project root path */
471
- rootPath: string;
472
- /** Project name */
473
- projectName?: string;
474
- /** Root directory */
475
- rootDir?: string;
476
- /** Detected language/framework */
477
- framework?: string;
478
- /** Detected frameworks */
479
- frameworks?: string[];
480
- /** Detected languages */
481
- languages?: string[];
482
- /** Package manager */
483
- packageManager?: 'npm' | 'yarn' | 'pnpm' | 'bun';
484
- /** Source directories */
485
- sourceDirs: string[];
486
- /** Test directories */
487
- testDirs: string[];
488
- /** Configuration files */
489
- configFiles: string[];
490
- /** File structure */
491
- fileStructure?: string[];
492
- /** Git information */
493
- git?: {
494
- branch: string;
495
- lastCommit: string;
496
- uncommittedChanges: number;
497
- };
498
- }
499
- /**
500
- * Scan target discovered by LLM
501
- */
502
- interface ScanTarget {
503
- /** Target type */
504
- type: 'file' | 'directory' | 'function' | 'class' | 'module' | 'api' | 'config';
505
- /** Target path */
506
- path: string;
507
- /** Reason for scanning */
508
- reason: string;
509
- /** Priority (1-10, 10 being highest) */
510
- priority: number;
511
- /** Estimated complexity */
512
- complexity: 'low' | 'medium' | 'high';
513
- /** Tags for categorization */
514
- tags: string[];
515
- }
516
- /**
517
- * Scan strategy determined by LLM
518
- */
519
- interface ScanStrategy {
520
- /** Strategy type */
521
- type: 'security' | 'performance' | 'quality' | 'accessibility' | 'comprehensive';
522
- /** Specific checks to perform */
523
- checks: string[];
524
- /** Depth of analysis */
525
- depth: 'surface' | 'moderate' | 'deep';
526
- /** Context to include */
527
- contextFiles: string[];
528
- /** LLM model to use */
529
- model: 'opus' | 'sonnet' | 'haiku';
530
- /** Focus areas */
531
- focusAreas?: string[];
532
- }
533
- /**
534
- * Scan result from LLM analysis
535
- */
536
- interface ScanResult {
537
- /** Target that was scanned */
538
- target: ScanTarget;
539
- /** Strategy used */
540
- strategy: ScanStrategy;
541
- /** Timestamp */
542
- timestamp: Date;
543
- /** Scanned at timestamp */
544
- scannedAt?: Date;
545
- /** Duration in milliseconds */
546
- duration: number;
547
- /** Issues found */
548
- issues: Issue[];
549
- /** Metrics collected */
550
- metrics: Record<string, number>;
551
- /** LLM reasoning/notes */
552
- notes: string;
553
- }
554
- /**
555
- * Issue found during scan
556
- */
557
- interface Issue {
558
- /** Issue unique ID */
559
- id: string;
560
- /** Issue title */
561
- title: string;
562
- /** Detailed description */
563
- description: string;
564
- /** Severity level */
565
- severity: 'critical' | 'high' | 'medium' | 'low' | 'info';
566
- /** Issue category */
567
- category: 'security' | 'performance' | 'quality' | 'style' | 'accessibility' | 'logic';
568
- /** Issue type */
569
- type?: string;
570
- /** File path */
571
- file: string;
572
- /** Line number (if applicable) */
573
- line?: number;
574
- /** Column number (if applicable) */
575
- column?: number;
576
- /** Code snippet */
577
- snippet?: string;
578
- /** Location info */
579
- location?: {
580
- file?: string;
581
- startLine?: number;
582
- endLine?: number;
583
- column?: number;
584
- snippet?: string;
585
- } | string;
586
- /** Suggested fix */
587
- suggestedFix?: string;
588
- /** Suggestion text */
589
- suggestion?: string;
590
- /** Whether auto-fix is safe */
591
- autoFixable: boolean;
592
- /** Related issues */
593
- relatedIssues?: string[];
594
- /** Confidence score (0-1) */
595
- confidence: number;
596
- }
597
- /**
598
- * Evaluated issue with LLM decision
599
- */
600
- interface EvaluatedIssue extends Issue {
601
- /** LLM evaluation reasoning */
602
- evaluation: string;
603
- /** Reasoning explanation */
604
- reasoning?: string;
605
- /** Actual priority (may differ from severity) */
606
- priority: number;
607
- /** Adjusted severity after evaluation */
608
- adjustedSeverity?: 'critical' | 'high' | 'medium' | 'low' | 'info';
609
- /** Whether this is a real issue */
610
- isRealIssue?: boolean;
611
- /** Risks associated */
612
- risks?: string[];
613
- /** Related patterns */
614
- relatedPatterns?: string[];
615
- /** Recommended action */
616
- action: 'fix-now' | 'fix-later' | 'monitor' | 'ignore';
617
- /** Effort estimate */
618
- effort: 'trivial' | 'small' | 'medium' | 'large';
619
- }
620
- /**
621
- * Fix decision from LLM
622
- */
623
- interface FixDecision {
624
- /** Whether to auto-fix */
625
- shouldFix: boolean;
626
- /** Whether can auto-fix */
627
- canAutoFix?: boolean;
628
- /** Whether requires review */
629
- requiresReview?: boolean;
630
- /** Risk level */
631
- riskLevel?: 'none' | 'low' | 'medium' | 'high';
632
- /** Reasoning */
633
- reason: string;
634
- /** Reasoning (alias) */
635
- reasoning?: string;
636
- /** Risk assessment */
637
- risk: 'none' | 'low' | 'medium' | 'high';
638
- /** Prerequisites before fixing */
639
- prerequisites: string[];
640
- /** Post-fix verification steps */
641
- verificationSteps: string[];
642
- /** Conditions for safe auto-fix */
643
- conditions?: string[];
644
- /** Alternative approaches */
645
- alternatives?: string[];
646
- }
647
- /**
648
- * Fix plan generated by LLM
649
- */
650
- interface FixPlan {
651
- /** Issue being fixed */
652
- issueId: string;
653
- /** Approach description */
654
- approach: string;
655
- /** Files to modify */
656
- filesToModify: string[];
657
- /** Expected changes description */
658
- expectedChanges: string;
659
- /** Rollback strategy */
660
- rollbackStrategy: string;
661
- /** Rollback plan */
662
- rollbackPlan?: string;
663
- /** Tests to run after fix */
664
- testsToRun: string[];
665
- /** Steps to execute */
666
- steps?: Array<string | {
667
- action: string;
668
- description?: string;
669
- order?: number;
670
- target?: string;
671
- changes?: string;
672
- }>;
673
- /** Validations to run */
674
- validations?: string[];
675
- /** Side effects */
676
- sideEffects?: string[];
677
- /** Test strategy */
678
- testStrategy?: string;
679
- /** Estimated duration in minutes */
680
- estimatedDuration?: number;
681
- }
682
- /**
683
- * Generated fix from LLM
684
- */
685
- interface GeneratedFix {
686
- /** Fix ID */
687
- id?: string;
688
- /** Issue ID */
689
- issueId?: string;
690
- /** Plan ID */
691
- planId?: string;
692
- /** Plan used */
693
- plan: FixPlan;
694
- /** File changes */
695
- changes: FileChange[];
696
- /** Commit message */
697
- commitMessage: string;
698
- /** Timestamp */
699
- generatedAt: Date;
700
- /** File path */
701
- filePath?: string;
702
- /** Fixed code */
703
- fixedCode?: string;
704
- /** Imports needed */
705
- imports?: string[];
706
- /** Warnings */
707
- warnings?: string[];
708
- /** Approach used */
709
- approach?: string;
710
- /** Description */
711
- description?: string;
712
- /** Pros */
713
- pros?: string[];
714
- }
715
- /**
716
- * File change in a fix
717
- */
718
- interface FileChange {
719
- /** File path */
720
- path: string;
721
- /** File reference */
722
- file?: string;
723
- /** Change type */
724
- type: 'modify' | 'create' | 'delete' | 'rename';
725
- /** Original content (for modify/delete) */
726
- originalContent?: string;
727
- /** New content (for modify/create) */
728
- newContent?: string;
729
- /** New path (for rename) */
730
- newPath?: string;
731
- /** Diff (unified format) */
732
- diff?: string;
733
- /** Start line */
734
- startLine?: number;
735
- /** End line */
736
- endLine?: number;
737
- /** Explanation */
738
- explanation?: string;
739
- /** Before content */
740
- before?: string;
741
- /** After content */
742
- after?: string;
743
- }
744
- /**
745
- * Fix application result
746
- */
747
- interface FixResult {
748
- /** Fix that was applied */
749
- fix: GeneratedFix;
750
- /** Fix ID */
751
- fixId?: string;
752
- /** Success status */
753
- success: boolean;
754
- /** Error message if failed */
755
- error?: string;
756
- /** Original content before fix */
757
- originalContent?: string;
758
- /** New content after fix */
759
- newContent?: string;
760
- /** Applied changes */
761
- appliedChanges: FileChange[];
762
- /** Failed changes */
763
- failedChanges: Array<{
764
- change: FileChange;
765
- error: string;
766
- }>;
767
- /** Backup paths */
768
- backupPaths: string[];
769
- /** Timestamp */
770
- appliedAt: Date;
771
- /** Duration in ms */
772
- duration?: number;
773
- /** Changes applied count */
774
- changesApplied?: number;
775
- }
776
- /**
777
- * Verification result from LLM
778
- */
779
- interface VerifyResult {
780
- /** Fix ID that was verified */
781
- fixId?: string;
782
- /** Fix that was verified */
783
- fix?: GeneratedFix;
784
- /** Overall success */
785
- success?: boolean;
786
- /** Is the fix correct */
787
- isCorrect?: boolean;
788
- /** Issue resolved */
789
- issueResolved?: boolean;
790
- /** Syntax valid */
791
- syntaxValid?: boolean;
792
- /** Functionality preserved */
793
- functionalityPreserved?: boolean;
794
- /** Logic errors found */
795
- logicErrors?: string[];
796
- /** Edge cases handled */
797
- edgeCasesHandled?: boolean;
798
- /** Style consistent */
799
- styleConsistent?: boolean;
800
- /** Code correctness verified */
801
- codeCorrect?: boolean;
802
- /** No regressions detected */
803
- noRegressions?: boolean;
804
- /** No new issues introduced */
805
- noNewIssues?: boolean;
806
- /** Confidence score (0-1) */
807
- confidence?: number;
808
- /** Reasoning */
809
- reasoning?: string;
810
- /** Verification notes */
811
- notes?: string;
812
- /** Suggestions */
813
- suggestions?: string[];
814
- /** Recommendations */
815
- recommendations?: string[];
816
- /** Verified timestamp */
817
- verifiedAt?: Date;
818
- }
819
- /**
820
- * Regression found during verification
821
- */
822
- interface Regression {
823
- /** Type of regression */
824
- type: 'functional' | 'performance' | 'breaking-change';
825
- /** Description */
826
- description: string;
827
- /** Affected files */
828
- affectedFiles: string[];
829
- /** Severity */
830
- severity: 'critical' | 'high' | 'medium' | 'low';
831
- /** File path */
832
- file?: string;
833
- /** Location */
834
- location?: string;
835
- /** Impact description */
836
- impact?: string;
837
- /** Suggestion for fix */
838
- suggestion?: string;
839
- }
840
- /**
841
- * New issue introduced by fix
842
- */
843
- interface NewIssue extends Issue {
844
- /** The fix that introduced this issue */
845
- introducedByFix: string;
846
- }
847
- /**
848
- * Execution plan for async audit
467
+ * Get built-in skill by ID
849
468
  */
850
- interface ExecutionPlan {
851
- /** Plan ID */
852
- id: string;
853
- /** Creation timestamp */
854
- createdAt: Date;
855
- /** Targets to scan */
856
- targets: ScanTarget[];
857
- /** Execution order */
858
- order: string[];
859
- /** Parallel execution groups */
860
- parallelGroups: string[][];
861
- /** Estimated duration */
862
- estimatedDuration: number;
863
- /** Total estimated minutes */
864
- totalEstimatedMinutes?: number;
865
- /** Priority queue */
866
- priorityQueue: Array<{
867
- targetId: string;
868
- priority: number;
869
- }>;
870
- /** Execution phases */
871
- phases?: Array<{
872
- name: string;
873
- description?: string;
874
- targets: string[];
875
- issueIds?: string[];
876
- parallel?: boolean;
877
- estimatedMinutes?: number;
878
- }>;
879
- /** Recommendations */
880
- recommendations?: string[];
881
- /** Issues to process */
882
- issues?: string[];
883
- }
469
+ declare function getBuiltinSkill(id: string): CcjkSkill | undefined;
884
470
  /**
885
- * ShenCha configuration
471
+ * Get all built-in skills
886
472
  */
887
- interface ShenChaConfig {
888
- /** Schedule configuration */
889
- schedule: {
890
- intervalHours: number;
891
- totalDurationHours: number;
892
- startTime?: string;
893
- };
894
- /** LLM configuration */
895
- llm: {
896
- baseUrl: string;
897
- apiKey?: string;
898
- models: {
899
- scanning: string;
900
- analysis: string;
901
- fixing: string;
902
- };
903
- maxTokens?: number;
904
- temperature?: number;
905
- };
906
- /** Scanner configuration */
907
- scanners: {
908
- page?: {
909
- enabled: boolean;
910
- criticalPages?: string[];
911
- };
912
- api?: {
913
- enabled: boolean;
914
- endpoints?: string[];
915
- };
916
- errorLog?: {
917
- enabled: boolean;
918
- lookbackHours?: number;
919
- };
920
- userBehavior?: {
921
- enabled: boolean;
922
- database?: string;
923
- };
924
- };
925
- /** Fixer configuration */
926
- fixer: {
927
- enabled: boolean;
928
- autoCommit: boolean;
929
- safetyChecks: {
930
- requireTypeCheck: boolean;
931
- requireLintPass: boolean;
932
- requireTestPass: boolean;
933
- maxFilesPerFix: number;
934
- maxLineChanges: number;
935
- requireReview: string[];
936
- };
937
- };
938
- /** Reporter configuration */
939
- reporter: {
940
- outputDir: string;
941
- formats: Array<'markdown' | 'json' | 'html'>;
942
- webhooks?: Array<{
943
- url: string;
944
- events: string[];
945
- }>;
946
- };
947
- }
948
- /**
949
- * Audit cycle status
950
- */
951
- interface AuditCycleStatus {
952
- /** Cycle number */
953
- cycleNumber: number;
954
- /** Total cycles planned */
955
- totalCycles: number;
956
- /** Current status */
957
- status: 'pending' | 'scanning' | 'analyzing' | 'fixing' | 'verifying' | 'completed' | 'failed';
958
- /** Start time */
959
- startedAt?: Date;
960
- /** End time */
961
- completedAt?: Date;
962
- /** Issues found this cycle */
963
- issuesFound: number;
964
- /** Issues fixed this cycle */
965
- issuesFixed: number;
966
- /** Current target being processed */
967
- currentTarget?: string;
968
- /** Progress percentage */
969
- progress: number;
970
- }
971
- /**
972
- * Audit cycle
973
- */
974
- interface AuditCycle {
975
- /** Cycle ID */
976
- id: string;
977
- /** Start time */
978
- startedAt: Date;
979
- /** Completion time */
980
- completedAt?: Date;
981
- /** Current status */
982
- status: 'pending' | 'running' | 'paused' | 'completed' | 'failed' | 'cancelled';
983
- /** Current phase */
984
- currentPhase?: string;
985
- /** Pause reason if paused */
986
- pauseReason?: string;
987
- /** Error message if failed */
988
- error?: string;
989
- /** Project context */
990
- context: ProjectContext$1;
991
- /** Scan results */
992
- scanResults: ScanResult[];
993
- /** Evaluated issues */
994
- evaluatedIssues: EvaluatedIssue[];
995
- /** Fix results */
996
- fixResults: Array<{
997
- issue: EvaluatedIssue;
998
- plan: FixPlan;
999
- fix: GeneratedFix;
1000
- result: FixResult;
1001
- }>;
1002
- /** Generated report */
1003
- report: AuditReport | null;
1004
- }
473
+ declare function getBuiltinSkills(): CcjkSkill[];
1005
474
  /**
1006
- * Audit report
475
+ * Check if a skill is built-in
1007
476
  */
1008
- interface AuditReport {
1009
- /** Report ID */
1010
- id: string;
1011
- /** Cycle ID */
1012
- cycleId?: string;
1013
- /** Cycle number */
1014
- cycleNumber: number;
1015
- /** Generation timestamp */
1016
- generatedAt: Date;
1017
- /** Duration */
1018
- duration: number;
1019
- /** Summary */
1020
- summary: {
1021
- totalIssues: number;
1022
- fixedIssues: number;
1023
- pendingIssues: number;
1024
- pendingReview?: number;
1025
- failedFixes?: number;
1026
- bySeverity?: Record<string, number>;
1027
- byCategory?: Record<string, number>;
1028
- byType?: Record<string, number>;
1029
- healthScore?: number;
1030
- scores: {
1031
- security: number;
1032
- performance: number;
1033
- quality: number;
1034
- };
1035
- };
1036
- /** Issues by category */
1037
- issuesByCategory: Record<string, Issue[]>;
1038
- /** Issues list */
1039
- issues?: EvaluatedIssue[];
1040
- /** Fixes applied */
1041
- fixesApplied: FixResult[];
1042
- /** Fixes summary */
1043
- fixes?: Array<{
1044
- issueId: string;
1045
- success: boolean;
1046
- error?: string;
1047
- }>;
1048
- /** Recommendations */
1049
- recommendations: string[];
1050
- /** Next steps */
1051
- nextSteps: string[];
1052
- }
1053
-
477
+ declare function isBuiltinSkill(id: string): boolean;
1054
478
  /**
1055
479
  * Initialize skills directory
1056
480
  */
@@ -2732,5 +2156,5 @@ declare function checkAllVersions(): Promise<void>;
2732
2156
  */
2733
2157
  declare function upgradeAll(): Promise<void>;
2734
2158
 
2735
- export { AIDER_CONFIG_FILE, AIDER_DIR, AIDER_ENV_FILE, AI_OUTPUT_LANGUAGES, API_DEFAULT_URL, API_ENV_KEY, CCJK_CLOUD_API_URL, CCJK_CLOUD_PLUGINS_API, CCJK_CLOUD_PLUGINS_CACHE_DIR, CCJK_CLOUD_PLUGINS_CACHE_FILE, CCJK_CLOUD_PLUGINS_DIR, CCJK_CLOUD_PLUGINS_INSTALLED_DIR, CCJK_CONFIG_DIR, CCJK_CONFIG_FILE, CCJK_GROUPS_DIR, CCJK_PLUGINS_DIR, CCJK_SKILLS_DIR, CLAUDE_DIR, CLAUDE_MD_FILE, CLAUDE_VSC_CONFIG_FILE, CLINE_CONFIG_FILE, CLINE_DIR, CLOUD_PLUGINS_CACHE_TTL, CLOUD_PLUGINS_MAX_CACHE_SIZE, CODEX_AGENTS_FILE, CODEX_AUTH_FILE, CODEX_CONFIG_FILE, CODEX_DIR, CODEX_PROMPTS_DIR, CODE_TOOL_ALIASES, CODE_TOOL_BANNERS, CODE_TOOL_INFO, CODE_TOOL_TYPES, COLORS, CONTINUE_CONFIG_FILE, CONTINUE_DIR, CURSOR_CONFIG_FILE, CURSOR_DIR, ClAUDE_CONFIG_FILE, CodexUninstaller, DEFAULT_CODE_TOOL_TYPE, LANG_LABELS, LEGACY_ZCF_CONFIG_DIR, LEGACY_ZCF_CONFIG_FILE, LEGACY_ZCF_CONFIG_FILES, MenuBuilder, PERMISSION_TEMPLATES, SETTINGS_FILE, STATUS, SUPPORTED_LANGS, ZCF_CONFIG_DIR, ZCF_CONFIG_FILE, addAutoApprovePattern, addCompletedOnboarding, addContinueCustomCommand, addContinueMcpServer, addContinueModel, addGroup, addProviderToExisting, addSkill, applyAiLanguageDirective, applyCodexPlatformCommand, applyTemplate, backupCodexAgents, backupCodexComplete, backupCodexConfig, backupCodexFiles, backupCodexPrompts, backupExistingConfig, backupMcpConfig, boxify, buildMcpServerConfig, checkAllVersions, checkCcjkVersion, checkClaudeCodeVersion, checkCodexUpdate, checkPluginVersions, cleanupPermissions, switchToOfficialLogin$1 as codexSwitchToOfficialLogin, commandExists, compareConfigs, configureAiderApi, configureApi, configureCodexApi, configureCodexMcp, configureContinueApi, configureIncrementalManagement, confirm, consolidateConfigs, copyConfigFiles, createBackupDirectory, createBatchSkills, createHomebrewSymlink, deleteProviders, detectAllConfigs, detectBuildTools, detectCICDSystems, detectConfigManagementMode, detectFrameworks, detectInstalledVersion, detectLanguages, detectPackageManager, detectProject, detectProjectContext, detectTestFrameworks, determineProjectType, disableGroup, disablePlugin, discoverPlugins, displayBanner, displayBannerWithInfo, displayConfigScan, displayCurrentStatus, displayHealthReport, displayPermissions, displayVerificationResult, editExistingProvider, enableContinueContextProvider, enableGroup, enablePlugin, ensureAiderDir, ensureApiKeyApproved, ensureClaudeDir, ensureContinueDir, ensureEnvKeyMigration, ensureGroupsDir, ensurePluginsDir, ensureSkillsDir, executeInstallMethod, exportGroups, exportPermissions, exportProjectKnowledge, exportSkills, fixWindowsMcpConfig, formatFileSize, formatToolStatus, generateContextContent, generateSuggestions, getAiOutputLanguageLabel, getAiderModelPresets, getAiderVersion, getAllGroups, getAllSkills, getAllToolsInfo, getAllToolsStatus, getApplicableRules, getAvailableManagementActions, getBackupMessage, getBatchCategories, getCodexVersion, getContextFileTypeLabel, getContextFiles, getContextRules, getContinueProviderPresets, getCurrentCodexProvider, getCurrentTemplateId, getDisplayWidth, getEnabledAgents, getEnabledSkillIds, getExistingApiConfig, getExistingModelConfig, getGroup, getRegistry as getGroupRegistry, getInstallationStatus, getInstalledTools, getLoadedPlugins, getMcpConfigPath, getPlatform, getPluginAgents, getPluginInfo, getPluginMcpServices, getPluginOutputStyles, getPluginSkills, getPluginWorkflows, getProjectKnowledge, getProjectSummary, getProjectTypeLabel, getRecommendedRules, getRecommendedTools, getSkill, getRegistry$1 as getSkillRegistry, getToolConfigPath, getToolDir, getToolInfo, getToolStatus, getToolVersion, getToolsByCategory, handleInstallFailure, importGroups, importPermissions, importRecommendedEnv, importRecommendedPermissions, importSkills, init, initializePlugins, installAider, installClaudeCode, installCodex, installCodexCli, installTool, isAiderInstalled, isClaudeCodeInstalled, isCodeToolType, isCodexInstalled$1 as isCodexCliInstalled, isCodexInstalled, isContinueConfigured, isDirectoryTrusted, isGroupEnabled, isLocalClaudeCodeInstalled, isPermissionAllowed, isToolInstalled, listCodexProviders, listPlugins, loadKnowledgeBase, loadPlugin, manageApiKeyApproval, menuItem, mergeAndCleanPermissions, mergeConfigs, mergeContextContent, mergeMcpServers, mergeSettingsFile, migrateEnvKeyInContent, migrateEnvKeyToTempEnvKey, needsEnvKeyMigration, openSettingsJson, padToDisplayWidth, parseCodexConfig, promptApiConfigurationAction, quickSync, readAiderConfig, readCodexConfig, readContextFile, readContinueConfig, readMcpConfig, readPermissions, readPluginConfig, refreshRegistry as refreshGroupRegistry, refreshRegistry$1 as refreshSkillRegistry, removeApiKeyFromRejected, removeAutoApprovePattern, removeContinueModel, removeGroup, removeLocalClaudeCode, removeRedundantConfigs, removeSkill, renderCodexConfig, renderProgressBar, resetPermissions, resolveCodeToolType, runAider, runCodexFullInit, runCodexSystemPromptSelection, runCodexUninstall, runCodexUpdate, runCodexWorkflowImport, runCodexWorkflowImportWithLanguageSelection, runCodexWorkflowSelection, runConfigWizard, runDoctor, runHealthCheck, runOnboarding, saveKnowledgeBase, searchGroups, searchSkills, sectionDivider, selectInstallMethod, setInstallMethod, setPrimaryApiKey, setSkillEnabled, shouldShowManagementMode, showQuickMenu, showStatus, switchCodexProvider, switchToOfficialLogin, switchToProvider, syncSkillsToContinue, trustDirectory, uninstallCodeTool, unloadPlugin, untrustDirectory, updateCustomModel, updateDefaultModel, upgradeAll, upgradeAllPlugins, upgradeCcjk, upgradeClaudeCode, upgradePlugin, validateProviderData, verifyInstallation, writeAiderConfig, writeAuthFile, writeCodexConfig, writeConsolidatedConfig, writeContextFile, writeContinueConfig, writeMcpConfig, writePermissions, writePluginConfig };
2736
- export type { AgentDefinition, AgentExtension, AgentTemplate, AiOutputLanguage, AiderConfig, ApiConfig, AuditCycle, AuditCycleStatus, AuditReport, BatchSkillOptions, BatchSkillTemplate, BoxStyle, BuildTool, CICDSystem, CcjkPlugin, CcjkSkill, CheckResult, ClaudeConfiguration, CodeToolInfo, CodeToolType, CodexConfigData, CodexFullInitOptions, CodexProvider, CodexUninstallItem, CodexUninstallResult, CodexVersionInfo, CommandExtension, ConfigDiff, ConfigLocation, ConfigManagementMode, ConfigSuggestions, ConsolidatedConfig, ContextFile, ContextProjectInfo, ContextProjectType, ContextRule, ContinueConfig, ContinueMcpServer, ContinueModel, EvaluatedIssue, ExecutionPlan, FileChange, FixDecision, FixPlan, FixResult, Framework, GeneratedFix, GroupCategory, GroupExport, GroupInstallResult, GroupRegistry, GroupSearchOptions, HealthReport, InstallationStatus, Issue, KnowledgeBase, KnowledgeEntry, Language, LanguageGroupId, LoadedPlugin, McpServerConfig, McpService, McpServiceExtension, MenuBuilderOptions, MenuItem, MenuResult, MenuSection, NewIssue, OnboardingResult, OutputStyleExtension, PackageManager, PermissionSet, PermissionTemplate, PermissionType, PluginConfig, PluginContext, PluginDiscoveryResult, PluginInfo, PluginLogger, PluginMetadata, PluginStorage, PluginVersionInfo, PredefinedGroupId, ProjectContext, ProjectInfo, ProjectType, ProviderOperationResult, ProviderUpdateData, Regression, ScanResult, ScanStrategy, ScanTarget, ShenChaConfig, SiteTypeGroupId, SkillCategory, SkillExport, SkillInstallResult, SkillRegistry, SkillSearchOptions, SpecialtyGroupId, SubagentGroup, SupportedLang, TestFramework, ToolInstallResult, ToolStatus, UpgradeResult, VerificationResult, VerifyResult, VersionInfo, WorkflowExtension };
2159
+ export { AIDER_CONFIG_FILE, AIDER_DIR, AIDER_ENV_FILE, AI_OUTPUT_LANGUAGES, API_DEFAULT_URL, API_ENV_KEY, CCJK_CLOUD_API_URL, CCJK_CLOUD_PLUGINS_API, CCJK_CLOUD_PLUGINS_CACHE_DIR, CCJK_CLOUD_PLUGINS_CACHE_FILE, CCJK_CLOUD_PLUGINS_DIR, CCJK_CLOUD_PLUGINS_INSTALLED_DIR, CCJK_CONFIG_DIR, CCJK_CONFIG_FILE, CCJK_GROUPS_DIR, CCJK_PLUGINS_DIR, CCJK_SKILLS_DIR, CLAUDE_DIR, CLAUDE_MD_FILE, CLAUDE_VSC_CONFIG_FILE, CLINE_CONFIG_FILE, CLINE_DIR, CLOUD_PLUGINS_CACHE_TTL, CLOUD_PLUGINS_MAX_CACHE_SIZE, CODEX_AGENTS_FILE, CODEX_AUTH_FILE, CODEX_CONFIG_FILE, CODEX_DIR, CODEX_PROMPTS_DIR, CODE_TOOL_ALIASES, CODE_TOOL_BANNERS, CODE_TOOL_INFO, CODE_TOOL_TYPES, COLORS, CONTINUE_CONFIG_FILE, CONTINUE_DIR, CURSOR_CONFIG_FILE, CURSOR_DIR, ClAUDE_CONFIG_FILE, CodexUninstaller, DEFAULT_CODE_TOOL_TYPE, LANG_LABELS, LEGACY_ZCF_CONFIG_DIR, LEGACY_ZCF_CONFIG_FILE, LEGACY_ZCF_CONFIG_FILES, MenuBuilder, PERMISSION_TEMPLATES, SETTINGS_FILE, STATUS, SUPPORTED_LANGS, ZCF_CONFIG_DIR, ZCF_CONFIG_FILE, addAutoApprovePattern, addCompletedOnboarding, addContinueCustomCommand, addContinueMcpServer, addContinueModel, addGroup, addProviderToExisting, addSkill, applyAiLanguageDirective, applyCodexPlatformCommand, applyTemplate, backupCodexAgents, backupCodexComplete, backupCodexConfig, backupCodexFiles, backupCodexPrompts, backupExistingConfig, backupMcpConfig, boxify, buildMcpServerConfig, checkAllVersions, checkCcjkVersion, checkClaudeCodeVersion, checkCodexUpdate, checkPluginVersions, cleanupPermissions, switchToOfficialLogin$1 as codexSwitchToOfficialLogin, commandExists, compareConfigs, configureAiderApi, configureApi, configureCodexApi, configureCodexMcp, configureContinueApi, configureIncrementalManagement, confirm, consolidateConfigs, copyConfigFiles, createBackupDirectory, createBatchSkills, createHomebrewSymlink, deleteProviders, detectAllConfigs, detectBuildTools, detectCICDSystems, detectConfigManagementMode, detectFrameworks, detectInstalledVersion, detectLanguages, detectPackageManager, detectProject, detectProjectContext, detectTestFrameworks, determineProjectType, disableGroup, disablePlugin, discoverPlugins, displayBanner, displayBannerWithInfo, displayConfigScan, displayCurrentStatus, displayHealthReport, displayPermissions, displayVerificationResult, editExistingProvider, enableContinueContextProvider, enableGroup, enablePlugin, ensureAiderDir, ensureApiKeyApproved, ensureClaudeDir, ensureContinueDir, ensureEnvKeyMigration, ensureGroupsDir, ensurePluginsDir, ensureSkillsDir, executeInstallMethod, exportGroups, exportPermissions, exportProjectKnowledge, exportSkills, fixWindowsMcpConfig, formatFileSize, formatToolStatus, generateContextContent, generateSuggestions, getAiOutputLanguageLabel, getAiderModelPresets, getAiderVersion, getAllGroups, getAllSkills, getAllToolsInfo, getAllToolsStatus, getApplicableRules, getAvailableManagementActions, getBackupMessage, getBatchCategories, getBuiltinSkill, getBuiltinSkills, getCodexVersion, getContextFileTypeLabel, getContextFiles, getContextRules, getContinueProviderPresets, getCurrentCodexProvider, getCurrentTemplateId, getDisplayWidth, getEnabledAgents, getEnabledSkillIds, getExistingApiConfig, getExistingModelConfig, getGroup, getRegistry as getGroupRegistry, getInstallationStatus, getInstalledTools, getLoadedPlugins, getMcpConfigPath, getPlatform, getPluginAgents, getPluginInfo, getPluginMcpServices, getPluginOutputStyles, getPluginSkills, getPluginWorkflows, getProjectKnowledge, getProjectSummary, getProjectTypeLabel, getRecommendedRules, getRecommendedTools, getSkill, getRegistry$1 as getSkillRegistry, getToolConfigPath, getToolDir, getToolInfo, getToolStatus, getToolVersion, getToolsByCategory, handleInstallFailure, importGroups, importPermissions, importRecommendedEnv, importRecommendedPermissions, importSkills, init, initializePlugins, installAider, installClaudeCode, installCodex, installCodexCli, installTool, isAiderInstalled, isBuiltinSkill, isClaudeCodeInstalled, isCodeToolType, isCodexInstalled$1 as isCodexCliInstalled, isCodexInstalled, isContinueConfigured, isDirectoryTrusted, isGroupEnabled, isLocalClaudeCodeInstalled, isPermissionAllowed, isToolInstalled, listCodexProviders, listPlugins, loadKnowledgeBase, loadPlugin, manageApiKeyApproval, menuItem, mergeAndCleanPermissions, mergeConfigs, mergeContextContent, mergeMcpServers, mergeSettingsFile, migrateEnvKeyInContent, migrateEnvKeyToTempEnvKey, needsEnvKeyMigration, openSettingsJson, padToDisplayWidth, parseCodexConfig, promptApiConfigurationAction, quickSync, readAiderConfig, readCodexConfig, readContextFile, readContinueConfig, readMcpConfig, readPermissions, readPluginConfig, refreshRegistry as refreshGroupRegistry, refreshRegistry$1 as refreshSkillRegistry, removeApiKeyFromRejected, removeAutoApprovePattern, removeContinueModel, removeGroup, removeLocalClaudeCode, removeRedundantConfigs, removeSkill, renderCodexConfig, renderProgressBar, resetPermissions, resolveCodeToolType, runAider, runCodexFullInit, runCodexSystemPromptSelection, runCodexUninstall, runCodexUpdate, runCodexWorkflowImport, runCodexWorkflowImportWithLanguageSelection, runCodexWorkflowSelection, runConfigWizard, runDoctor, runHealthCheck, runOnboarding, saveKnowledgeBase, searchGroups, searchSkills, sectionDivider, selectInstallMethod, setInstallMethod, setPrimaryApiKey, setSkillEnabled, shouldShowManagementMode, showQuickMenu, showStatus, switchCodexProvider, switchToOfficialLogin, switchToProvider, syncSkillsToContinue, trustDirectory, uninstallCodeTool, unloadPlugin, untrustDirectory, updateCustomModel, updateDefaultModel, upgradeAll, upgradeAllPlugins, upgradeCcjk, upgradeClaudeCode, upgradePlugin, validateProviderData, verifyInstallation, writeAiderConfig, writeAuthFile, writeCodexConfig, writeConsolidatedConfig, writeContextFile, writeContinueConfig, writeMcpConfig, writePermissions, writePluginConfig };
2160
+ export type { AgentDefinition, AgentExtension, AgentTemplate, AiOutputLanguage, AiderConfig, ApiConfig, BatchSkillOptions, BatchSkillTemplate, BoxStyle, BuildTool, CICDSystem, CcjkPlugin, CcjkSkill, CheckResult, ClaudeConfiguration, CodeToolInfo, CodeToolType, CodexConfigData, CodexFullInitOptions, CodexProvider, CodexUninstallItem, CodexUninstallResult, CodexVersionInfo, CommandExtension, ConfigDiff, ConfigLocation, ConfigManagementMode, ConfigSuggestions, ConsolidatedConfig, ContextFile, ContextProjectInfo, ContextProjectType, ContextRule, ContinueConfig, ContinueMcpServer, ContinueModel, Framework, GroupCategory, GroupExport, GroupInstallResult, GroupRegistry, GroupSearchOptions, HealthReport, InstallationStatus, KnowledgeBase, KnowledgeEntry, Language, LanguageGroupId, LoadedPlugin, McpServerConfig, McpService, McpServiceExtension, MenuBuilderOptions, MenuItem, MenuResult, MenuSection, OnboardingResult, OutputStyleExtension, PackageManager, PermissionSet, PermissionTemplate, PermissionType, PluginConfig, PluginContext, PluginDiscoveryResult, PluginInfo, PluginLogger, PluginMetadata, PluginStorage, PluginVersionInfo, PredefinedGroupId, ProjectContext, ProjectInfo, ProjectType, ProviderOperationResult, ProviderUpdateData, SiteTypeGroupId, SkillCategory, SkillExport, SkillInstallResult, SkillRegistry, SkillSearchOptions, SpecialtyGroupId, SubagentGroup, SupportedLang, TestFramework, ToolInstallResult, ToolStatus, UpgradeResult, VerificationResult, VersionInfo, WorkflowExtension };