ccjk 12.3.5 → 13.3.3

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 (37) hide show
  1. package/dist/chunks/api-cli.mjs +1 -1
  2. package/dist/chunks/api.mjs +2 -2
  3. package/dist/chunks/auto-fix.mjs +148 -0
  4. package/dist/chunks/auto-upgrade.mjs +150 -0
  5. package/dist/chunks/ccjk-agents.mjs +1 -2
  6. package/dist/chunks/ccjk-all.mjs +5 -6
  7. package/dist/chunks/ccjk-hooks.mjs +4 -5
  8. package/dist/chunks/ccjk-mcp.mjs +6 -7
  9. package/dist/chunks/ccjk-setup.mjs +1 -2
  10. package/dist/chunks/ccjk-skills.mjs +5 -6
  11. package/dist/chunks/ccr.mjs +1 -2
  12. package/dist/chunks/commands2.mjs +11 -3
  13. package/dist/chunks/index14.mjs +6 -5
  14. package/dist/chunks/index2.mjs +2 -2
  15. package/dist/chunks/installer2.mjs +74 -150
  16. package/dist/chunks/intent-engine.mjs +142 -0
  17. package/dist/chunks/menu-hierarchical.mjs +1 -2
  18. package/dist/chunks/menu.mjs +15 -0
  19. package/dist/chunks/package.mjs +1 -1
  20. package/dist/chunks/smart-guide.mjs +8 -8
  21. package/dist/chunks/upgrade.mjs +34 -0
  22. package/dist/cli.mjs +39 -12
  23. package/dist/i18n/locales/en/agentBrowser.json +1 -0
  24. package/dist/i18n/locales/en/configuration.json +4 -4
  25. package/dist/i18n/locales/zh-CN/agentBrowser.json +1 -0
  26. package/dist/i18n/locales/zh-CN/configuration.json +4 -4
  27. package/dist/index.d.mts +211 -125
  28. package/dist/index.d.ts +211 -125
  29. package/dist/index.mjs +6 -3
  30. package/dist/shared/{ccjk.CtXhbEqb.mjs → ccjk.CqdbaXqU.mjs} +1 -1
  31. package/dist/shared/{ccjk.DfXjf8EC.mjs → ccjk.Cwa_FiTX.mjs} +1 -1
  32. package/dist/shared/{ccjk.hrRv8G6j.mjs → ccjk.DHXfsrwn.mjs} +1502 -3
  33. package/dist/shared/{ccjk.CL4Yat0G.mjs → ccjk.DopKzo3z.mjs} +3 -1
  34. package/dist/templates/claude-code/common/settings.json +0 -1
  35. package/package.json +1 -1
  36. package/templates/claude-code/common/settings.json +0 -1
  37. package/dist/shared/ccjk.UIvifqNE.mjs +0 -1486
@@ -23,6 +23,7 @@
23
23
  "installingBrowser": "正在安装 Chromium 浏览器...",
24
24
  "browserInstallSuccess": "Chromium 浏览器安装成功!",
25
25
  "browserInstallFailed": "安装 Chromium 浏览器失败",
26
+ "browserAutoInstall": "浏览器将在首次使用时自动安装",
26
27
  "alreadyInstalled": "agent-browser 已安装 (v{{version}})",
27
28
  "notInstalled": "agent-browser 未安装",
28
29
  "browserNotInstalled": "Chromium 浏览器未安装",
@@ -15,10 +15,10 @@
15
15
  "currentModel": "当前模型",
16
16
  "defaultModelOption": "默认 - 让 Claude Code 自动选择",
17
17
  "defaultStyle": "默认风格",
18
- "enterHaikuModel": "请输入默认 Haiku 模型名称",
19
- "enterSonnetModel": "请输入默认 Sonnet 模型名称",
20
- "enterOpusModel": "请输入默认 Opus 模型名称",
21
- "enterPrimaryModel": "请输入主要使用的模型名称",
18
+ "enterHaikuModel": "[可选] Haiku 模型(留空跳过)",
19
+ "enterSonnetModel": "[可选] Sonnet 模型(留空跳过)",
20
+ "enterOpusModel": "[可选] Opus 模型(留空跳过)",
21
+ "enterPrimaryModel": "[可选] 主模型(留空=自适应,填写=锁定)",
22
22
  "envImportSuccess": "环境变量已导入",
23
23
  "envImportFailed": "环境变量导入失败",
24
24
  "existingConfig": "检测到已有配置文件,如何处理?",
package/dist/index.d.mts CHANGED
@@ -2717,6 +2717,215 @@ declare function assertDefined<T>(value: T | null | undefined, message?: string)
2717
2717
  */
2718
2718
  declare function assert(condition: boolean, message?: string): asserts condition;
2719
2719
 
2720
+ /**
2721
+ * Type definitions for the project analysis engine
2722
+ */
2723
+ interface ProjectAnalysis {
2724
+ /** Project root directory */
2725
+ rootPath: string;
2726
+ /** Detected project type (primary language/framework) */
2727
+ projectType: string;
2728
+ /** All detected languages with confidence scores */
2729
+ languages: LanguageDetection[];
2730
+ /** Detected frameworks and libraries */
2731
+ frameworks: FrameworkDetectionResult[];
2732
+ /** Package manager used */
2733
+ packageManager?: PackageManager;
2734
+ /** Build system detected */
2735
+ buildSystem?: BuildSystem;
2736
+ /** Relative paths to important configuration files */
2737
+ configFiles: string[];
2738
+ /** Relative paths to important directories */
2739
+ importantDirs: string[];
2740
+ /** Dependency analysis results */
2741
+ dependencies?: DependencyAnalysis;
2742
+ /** Analysis metadata */
2743
+ metadata: AnalysisMetadata;
2744
+ }
2745
+ interface LanguageDetection {
2746
+ /** Language name (typescript, python, go, rust, etc.) */
2747
+ language: string;
2748
+ /** Confidence score (0-1) */
2749
+ confidence: number;
2750
+ /** Estimated number of files */
2751
+ fileCount: number;
2752
+ /** Primary indication reasons */
2753
+ indicators: string[];
2754
+ }
2755
+ interface FrameworkDetectionResult {
2756
+ /** Framework name */
2757
+ name: string;
2758
+ /** Framework category (frontend, backend, mobile, desktop, etc.) */
2759
+ category: string;
2760
+ /** Detected version if available */
2761
+ version?: string;
2762
+ /** Confidence score (0-1) */
2763
+ confidence: number;
2764
+ /** Detection evidence */
2765
+ evidence: string[];
2766
+ }
2767
+ type PackageManager = 'npm' | 'yarn' | 'pnpm' | 'bun' | 'pip' | 'poetry' | 'pipenv' | 'conda' | 'go' | 'cargo' | 'mod' | 'gradle' | 'maven' | 'unknown';
2768
+ type BuildSystem = 'webpack' | 'vite' | 'rollup' | 'esbuild' | 'tsc' | 'babel' | 'swc' | 'next' | 'nuxt' | 'svelte' | 'make' | 'cmake' | 'bazel' | 'unknown';
2769
+ interface DependencyAnalysis {
2770
+ /** Direct dependencies */
2771
+ direct: DependencyNode[];
2772
+ /** All transitive dependencies */
2773
+ all: DependencyNode[];
2774
+ /** Dependency graph (key = dependency name, value = array of dependents) */
2775
+ graph: Map<string, DependencyNode[]>;
2776
+ /** Installation plan with optimal order */
2777
+ installationPlan: InstallationPlan;
2778
+ /** Detected conflicts */
2779
+ conflicts: DependencyConflict[];
2780
+ /** Circular dependencies detected */
2781
+ circularDeps: string[][];
2782
+ }
2783
+ interface DependencyNode {
2784
+ /** Package/dependency name */
2785
+ name: string;
2786
+ /** Version requirement */
2787
+ version: string;
2788
+ /** Type of dependency */
2789
+ type: DependencyType;
2790
+ /** Whether this is a dev dependency */
2791
+ isDev: boolean;
2792
+ /** Whether this is a peer dependency */
2793
+ isPeer: boolean;
2794
+ /** Whether this is an optional dependency */
2795
+ isOptional: boolean;
2796
+ /** Dependencies of this dependency */
2797
+ dependencies?: DependencyNode[];
2798
+ }
2799
+ type DependencyType = 'runtime' | 'dev' | 'peer' | 'optional' | 'bundled';
2800
+ interface InstallationPlan {
2801
+ /** Ordered list of dependencies to install */
2802
+ order: DependencyNode[];
2803
+ /** Total number of dependencies */
2804
+ total: number;
2805
+ /** Number that can be installed in parallel */
2806
+ parallelizable: number;
2807
+ /** Installation commands for each package manager */
2808
+ commands: InstallationCommands;
2809
+ }
2810
+ interface InstallationCommands {
2811
+ /** Command to install all dependencies */
2812
+ installAll: string;
2813
+ /** Command to install a specific package */
2814
+ installPackage: (name: string, version?: string) => string;
2815
+ /** Command to install dev dependencies */
2816
+ installDev: string;
2817
+ /** Command to add a new dependency */
2818
+ add: (name: string, isDev?: boolean) => string;
2819
+ }
2820
+ interface DependencyConflict {
2821
+ /** Package name with conflict */
2822
+ package: string;
2823
+ /** Conflicting version requirements */
2824
+ versions: string[];
2825
+ /** Packages requiring these versions */
2826
+ requiredBy: string[];
2827
+ /** Severity level */
2828
+ severity: 'error' | 'warning' | 'info';
2829
+ }
2830
+ interface AnalysisMetadata {
2831
+ /** Analysis timestamp */
2832
+ timestamp: Date;
2833
+ /** Analysis duration in milliseconds */
2834
+ duration: number;
2835
+ /** Number of files scanned */
2836
+ filesScanned: number;
2837
+ /** Analysis confidence (0-1) */
2838
+ confidence: number;
2839
+ /** Analysis version */
2840
+ version: string;
2841
+ }
2842
+ interface DetectorConfig {
2843
+ /** Minimum confidence threshold for language detection */
2844
+ minConfidence: number;
2845
+ /** Whether to include node_modules in analysis */
2846
+ includeNodeModules: boolean;
2847
+ /** Whether to analyze transitive dependencies */
2848
+ analyzeTransitiveDeps: boolean;
2849
+ /** Maximum number of files to scan */
2850
+ maxFilesToScan: number;
2851
+ /** Custom file patterns to include */
2852
+ includePatterns: string[];
2853
+ /** File patterns to exclude */
2854
+ excludePatterns: string[];
2855
+ }
2856
+
2857
+ /**
2858
+ * Dependency resolver and analyzer
2859
+ * Builds dependency graphs and generates installation plans
2860
+ *
2861
+ * ## Known Limitations
2862
+ *
2863
+ * ### Transitive Dependencies
2864
+ * Currently, transitive dependency analysis is NOT fully implemented.
2865
+ * The `all` field in DependencyAnalysis will only contain direct dependencies,
2866
+ * even when `analyzeTransitiveDeps` is enabled in DetectorConfig.
2867
+ *
2868
+ * To properly resolve transitive dependencies, lockfile parsing would be needed:
2869
+ * - package-lock.json (npm)
2870
+ * - yarn.lock (yarn)
2871
+ * - pnpm-lock.yaml (pnpm)
2872
+ * - bun.lockb (bun)
2873
+ *
2874
+ * This limitation affects:
2875
+ * - Dependency graph completeness
2876
+ * - Conflict detection accuracy
2877
+ * - Cloud recommendation quality for complex projects
2878
+ *
2879
+ * @see https://github.com/ccjk/ccjk/issues/XXX for tracking
2880
+ */
2881
+
2882
+ /**
2883
+ * Analyze project dependencies
2884
+ */
2885
+ declare function analyzeDependencies(analysis: ProjectAnalysis, config: DetectorConfig): Promise<DependencyAnalysis>;
2886
+
2887
+ /**
2888
+ * Main project detector using heuristics and file analysis
2889
+ */
2890
+
2891
+ /**
2892
+ * Main project detection function
2893
+ */
2894
+ declare function detectProject(projectPath: string, config: DetectorConfig): Promise<ProjectAnalysis>;
2895
+
2896
+ /**
2897
+ * Project analysis engine for CCJK
2898
+ * Provides intelligent project detection and analysis capabilities
2899
+ */
2900
+
2901
+ /**
2902
+ * ProjectAnalyzer class for analyzing projects
2903
+ */
2904
+ declare class ProjectAnalyzer {
2905
+ private config;
2906
+ constructor(config?: Partial<DetectorConfig>);
2907
+ /**
2908
+ * Analyze a project directory
2909
+ */
2910
+ analyze(projectPath: string): Promise<ProjectAnalysis>;
2911
+ /**
2912
+ * Get project type only
2913
+ */
2914
+ getProjectType(projectPath: string): Promise<string>;
2915
+ }
2916
+ /**
2917
+ * Analyze a project directory
2918
+ */
2919
+ declare function analyzeProject(projectPath: string, config?: Partial<DetectorConfig>): Promise<ProjectAnalysis>;
2920
+ /**
2921
+ * Quick project type detection
2922
+ */
2923
+ declare function detectProjectType(projectPath: string): Promise<string>;
2924
+ /**
2925
+ * Batch analyze multiple projects
2926
+ */
2927
+ declare function batchAnalyze(projectPaths: string[], config?: Partial<DetectorConfig>): Promise<ProjectAnalysis[]>;
2928
+
2720
2929
  /**
2721
2930
  * Cloud Client DTO (Data Transfer Objects)
2722
2931
  *
@@ -3439,129 +3648,6 @@ declare class CachedCloudClient {
3439
3648
  getClient(): CloudClient;
3440
3649
  }
3441
3650
 
3442
- /**
3443
- * Type definitions for the project analysis engine
3444
- */
3445
- interface ProjectAnalysis {
3446
- /** Project root directory */
3447
- rootPath: string;
3448
- /** Detected project type (primary language/framework) */
3449
- projectType: string;
3450
- /** All detected languages with confidence scores */
3451
- languages: LanguageDetection[];
3452
- /** Detected frameworks and libraries */
3453
- frameworks: FrameworkDetectionResult[];
3454
- /** Package manager used */
3455
- packageManager?: PackageManager;
3456
- /** Build system detected */
3457
- buildSystem?: BuildSystem;
3458
- /** Relative paths to important configuration files */
3459
- configFiles: string[];
3460
- /** Relative paths to important directories */
3461
- importantDirs: string[];
3462
- /** Dependency analysis results */
3463
- dependencies?: DependencyAnalysis;
3464
- /** Analysis metadata */
3465
- metadata: AnalysisMetadata;
3466
- }
3467
- interface LanguageDetection {
3468
- /** Language name (typescript, python, go, rust, etc.) */
3469
- language: string;
3470
- /** Confidence score (0-1) */
3471
- confidence: number;
3472
- /** Estimated number of files */
3473
- fileCount: number;
3474
- /** Primary indication reasons */
3475
- indicators: string[];
3476
- }
3477
- interface FrameworkDetectionResult {
3478
- /** Framework name */
3479
- name: string;
3480
- /** Framework category (frontend, backend, mobile, desktop, etc.) */
3481
- category: string;
3482
- /** Detected version if available */
3483
- version?: string;
3484
- /** Confidence score (0-1) */
3485
- confidence: number;
3486
- /** Detection evidence */
3487
- evidence: string[];
3488
- }
3489
- type PackageManager = 'npm' | 'yarn' | 'pnpm' | 'bun' | 'pip' | 'poetry' | 'pipenv' | 'conda' | 'go' | 'cargo' | 'mod' | 'gradle' | 'maven' | 'unknown';
3490
- type BuildSystem = 'webpack' | 'vite' | 'rollup' | 'esbuild' | 'tsc' | 'babel' | 'swc' | 'next' | 'nuxt' | 'svelte' | 'make' | 'cmake' | 'bazel' | 'unknown';
3491
- interface DependencyAnalysis {
3492
- /** Direct dependencies */
3493
- direct: DependencyNode[];
3494
- /** All transitive dependencies */
3495
- all: DependencyNode[];
3496
- /** Dependency graph (key = dependency name, value = array of dependents) */
3497
- graph: Map<string, DependencyNode[]>;
3498
- /** Installation plan with optimal order */
3499
- installationPlan: InstallationPlan;
3500
- /** Detected conflicts */
3501
- conflicts: DependencyConflict[];
3502
- /** Circular dependencies detected */
3503
- circularDeps: string[][];
3504
- }
3505
- interface DependencyNode {
3506
- /** Package/dependency name */
3507
- name: string;
3508
- /** Version requirement */
3509
- version: string;
3510
- /** Type of dependency */
3511
- type: DependencyType;
3512
- /** Whether this is a dev dependency */
3513
- isDev: boolean;
3514
- /** Whether this is a peer dependency */
3515
- isPeer: boolean;
3516
- /** Whether this is an optional dependency */
3517
- isOptional: boolean;
3518
- /** Dependencies of this dependency */
3519
- dependencies?: DependencyNode[];
3520
- }
3521
- type DependencyType = 'runtime' | 'dev' | 'peer' | 'optional' | 'bundled';
3522
- interface InstallationPlan {
3523
- /** Ordered list of dependencies to install */
3524
- order: DependencyNode[];
3525
- /** Total number of dependencies */
3526
- total: number;
3527
- /** Number that can be installed in parallel */
3528
- parallelizable: number;
3529
- /** Installation commands for each package manager */
3530
- commands: InstallationCommands;
3531
- }
3532
- interface InstallationCommands {
3533
- /** Command to install all dependencies */
3534
- installAll: string;
3535
- /** Command to install a specific package */
3536
- installPackage: (name: string, version?: string) => string;
3537
- /** Command to install dev dependencies */
3538
- installDev: string;
3539
- /** Command to add a new dependency */
3540
- add: (name: string, isDev?: boolean) => string;
3541
- }
3542
- interface DependencyConflict {
3543
- /** Package name with conflict */
3544
- package: string;
3545
- /** Conflicting version requirements */
3546
- versions: string[];
3547
- /** Packages requiring these versions */
3548
- requiredBy: string[];
3549
- /** Severity level */
3550
- severity: 'error' | 'warning' | 'info';
3551
- }
3552
- interface AnalysisMetadata {
3553
- /** Analysis timestamp */
3554
- timestamp: Date;
3555
- /** Analysis duration in milliseconds */
3556
- duration: number;
3557
- /** Number of files scanned */
3558
- filesScanned: number;
3559
- /** Analysis confidence (0-1) */
3560
- confidence: number;
3561
- /** Analysis version */
3562
- version: string;
3563
- }
3564
-
3565
3651
  type HookType = 'pre-commit' | 'post-commit' | 'pre-push' | 'post-push' | 'pre-test' | 'post-test' | 'pre-build' | 'post-build' | 'pre-install' | 'post-install' | 'pre-start' | 'post-start' | 'custom';
3566
3652
  type HookCategory = 'pre-commit' | 'post-test' | 'lifecycle' | 'custom';
3567
3653
  interface HookTrigger {
@@ -5311,5 +5397,5 @@ declare class FallbackCloudClient {
5311
5397
  */
5312
5398
  declare function createCompleteCloudClient(config?: Partial<CloudClientConfig>): FallbackCloudClient;
5313
5399
 
5314
- export { AiderTool, BaseCodeTool, BaseError, CachedCloudClient, ClaudeCodeTool, ClineTool, CloudCache, CloudClient, CloudClientError, CloudError, CloudErrorCode, CloudErrorFactory, CodexTool, ConfigManager, ConfigValidator, ConfigurationError, ContinueTool, CursorTool, FallbackCloudClient, InternalError, Logger, Mutex, NotFoundError, RatingsApiError, RatingsApiErrorCode, RetryableCloudClient, Semaphore, TelemetryReporter, TemplatesClient, TimeoutError, ToolFactory, ToolRegistry, UnauthorizedError, ValidationError, index$6 as array, assert, assertDefined, index$5 as async, batchProcessFiles, camelCase, canInstallMore, capitalize, chunk, index$4 as command, commandExists$1 as commandExists, config, convertBatchTemplateResponse, convertConfig, convertParameterDefault, convertProjectAnalysisResponse, convertRecommendation, convertTemplate, convertTemplateParameter, copyFile, countLines, createCloudClient, createCompleteCloudClient, createConfigManager, createLogger, createRating, createTemplatesClient, createTool, createValidator, debounce, deepClone, deepMerge, deleteDir, deleteFile, difference, ensureDir, index$3 as error, executeCommand, executeCommandStream, exists, extractDisplayName, extractString, flatten, flatten$1 as flattenArray, formatError, formatErrorForLogging, index$2 as fs, generateCompactWelcome, generateRecommendations, generateWelcome, get, getArchitecture, getCacheDir, getCapabilitiesByType, getCapability, getCloudMcpRecommendations, getCloudRecommendations, getCloudRecommendedHooks, getCloudSkillRecommendations, getCommandPath, getCommandVersion, getCommunityHooks, getConfigDir, getDataDir, getDisabledSkills, getEnabledSkills, getErrorMessage, getFileInfo, getFileSize, getHomeDir, getPlatform, getPlatformInfo, getQuotaUsagePercentage, getRecommendations, getRegistry, getRetryDelay, getSkillRatings, getTelemetry, getTempDir, getTemplatesClient, getUserQuota, getUserSkills, handleCloudError, has, i18nHelpers, initializeTelemetry, installSkill, intersection, isArray, isAuthError, isBoolean, isDefined, isDirectory, isDuplicateRatingError, isEmail, isFile, isLargeFile, isLinux, isMacOS, isNumber, isObject, isRateLimitError, isRecommendationConfig, isRetryableError, isRetryableErrorCode, isSkillInstalled, isSkillNotFoundError, isString, isTelemetryEventData, isTemplateParameterValue, isURL, isUnauthorizedError, isUnix, isWindows, kebabCase, listDirs, listFiles, logger, logger$2 as loggerUtils, moveFile, normalizeRecommendation, normalizeRecommendations, index$1 as object, omit, parallelLimit, partition, pascalCase, pick, platform, processLargeFile, processLineByLine, ratingsApi, readFile, readJSON, retry, retryUtils, scanCapabilities, sequence, set, shuffle, skillsMarketplaceApi, sleep, slugify, snakeCase, sortByLastUsed, sortByUsage, stopTelemetry, streamJSON, streamWriteJSON, index as string, submitHookAnalytics, telemetryUtils, template, throttle, timeout, trackEvent, truncate, tryCatch, tryCatchAsync, unflatten, uninstallSkill, union, unique, updateSkill, userSkillsApi, validateBatchTemplateRequest, validateProjectAnalysisRequest, validateUsageReport, validation, validators, waitFor, withRetry, wrapError, writeFile, writeJSON };
5315
- export type { AgentConfig, AnalysisCompletedData, AuthRequestOptions, BatchTelemetryData, BatchTemplateRequest, BatchTemplateResponse$1 as BatchTemplateResponse, CacheEntry, Capability, CapabilityScanResult, CapabilityStatus, CapabilityType, ChunkProcessorOptions, CloudErrorMetadata, CreateRatingData, CreateRatingResponse, ErrorOccurredData, ExecutionResult, FileInfo, GetSkillRatingsParams, GetSkillRatingsResponse, HealthCheckResponse, HookConfig, IChatTool, ICodeGenTool, ICodeTool, IFileEditTool, InstallStatus, McpServerConfig, MetricType, MultilingualString, ProjectAnalysisRequest, ProjectAnalysisResponse, RatingSortOption, RawBatchTemplateResponse, RawProjectAnalysisResponse, RawRecommendation, RawTemplate, Recommendation, RecommendationAcceptedData, RecommendationConfig, RecommendationShownData, SkillConfig, StreamProcessorOptions, TelemetryEventData, TemplateDownloadData, TemplateParameter, TemplateParameterValue, TemplateResponse, TemplateType$1 as TemplateType, ToolCapabilities, ToolConfig, ToolMetadata, UsageReport, UsageReportResponse, WelcomeOptions, WorkflowConfig };
5400
+ export { AiderTool, BaseCodeTool, BaseError, CachedCloudClient, ClaudeCodeTool, ClineTool, CloudCache, CloudClient, CloudClientError, CloudError, CloudErrorCode, CloudErrorFactory, CodexTool, ConfigManager, ConfigValidator, ConfigurationError, ContinueTool, CursorTool, FallbackCloudClient, InternalError, Logger, Mutex, NotFoundError, ProjectAnalyzer, RatingsApiError, RatingsApiErrorCode, RetryableCloudClient, Semaphore, TelemetryReporter, TemplatesClient, TimeoutError, ToolFactory, ToolRegistry, UnauthorizedError, ValidationError, analyzeDependencies, analyzeProject, index$6 as array, assert, assertDefined, index$5 as async, batchAnalyze, batchProcessFiles, camelCase, canInstallMore, capitalize, chunk, index$4 as command, commandExists$1 as commandExists, config, convertBatchTemplateResponse, convertConfig, convertParameterDefault, convertProjectAnalysisResponse, convertRecommendation, convertTemplate, convertTemplateParameter, copyFile, countLines, createCloudClient, createCompleteCloudClient, createConfigManager, createLogger, createRating, createTemplatesClient, createTool, createValidator, debounce, deepClone, deepMerge, deleteDir, deleteFile, detectProject, detectProjectType, difference, ensureDir, index$3 as error, executeCommand, executeCommandStream, exists, extractDisplayName, extractString, flatten, flatten$1 as flattenArray, formatError, formatErrorForLogging, index$2 as fs, generateCompactWelcome, generateRecommendations, generateWelcome, get, getArchitecture, getCacheDir, getCapabilitiesByType, getCapability, getCloudMcpRecommendations, getCloudRecommendations, getCloudRecommendedHooks, getCloudSkillRecommendations, getCommandPath, getCommandVersion, getCommunityHooks, getConfigDir, getDataDir, getDisabledSkills, getEnabledSkills, getErrorMessage, getFileInfo, getFileSize, getHomeDir, getPlatform, getPlatformInfo, getQuotaUsagePercentage, getRecommendations, getRegistry, getRetryDelay, getSkillRatings, getTelemetry, getTempDir, getTemplatesClient, getUserQuota, getUserSkills, handleCloudError, has, i18nHelpers, initializeTelemetry, installSkill, intersection, isArray, isAuthError, isBoolean, isDefined, isDirectory, isDuplicateRatingError, isEmail, isFile, isLargeFile, isLinux, isMacOS, isNumber, isObject, isRateLimitError, isRecommendationConfig, isRetryableError, isRetryableErrorCode, isSkillInstalled, isSkillNotFoundError, isString, isTelemetryEventData, isTemplateParameterValue, isURL, isUnauthorizedError, isUnix, isWindows, kebabCase, listDirs, listFiles, logger, logger$2 as loggerUtils, moveFile, normalizeRecommendation, normalizeRecommendations, index$1 as object, omit, parallelLimit, partition, pascalCase, pick, platform, processLargeFile, processLineByLine, ratingsApi, readFile, readJSON, retry, retryUtils, scanCapabilities, sequence, set, shuffle, skillsMarketplaceApi, sleep, slugify, snakeCase, sortByLastUsed, sortByUsage, stopTelemetry, streamJSON, streamWriteJSON, index as string, submitHookAnalytics, telemetryUtils, template, throttle, timeout, trackEvent, truncate, tryCatch, tryCatchAsync, unflatten, uninstallSkill, union, unique, updateSkill, userSkillsApi, validateBatchTemplateRequest, validateProjectAnalysisRequest, validateUsageReport, validation, validators, waitFor, withRetry, wrapError, writeFile, writeJSON };
5401
+ export type { AgentConfig, AnalysisCompletedData, AnalysisMetadata, AuthRequestOptions, BatchTelemetryData, BatchTemplateRequest, BatchTemplateResponse$1 as BatchTemplateResponse, BuildSystem, CacheEntry, Capability, CapabilityScanResult, CapabilityStatus, CapabilityType, ChunkProcessorOptions, CloudErrorMetadata, CreateRatingData, CreateRatingResponse, DependencyAnalysis, DependencyConflict, DependencyNode, DependencyType, DetectorConfig, ErrorOccurredData, ExecutionResult, FileInfo, FrameworkDetectionResult, GetSkillRatingsParams, GetSkillRatingsResponse, HealthCheckResponse, HookConfig, IChatTool, ICodeGenTool, ICodeTool, IFileEditTool, InstallStatus, InstallationCommands, InstallationPlan, LanguageDetection, McpServerConfig, MetricType, MultilingualString, PackageManager, ProjectAnalysis, ProjectAnalysisRequest, ProjectAnalysisResponse, RatingSortOption, RawBatchTemplateResponse, RawProjectAnalysisResponse, RawRecommendation, RawTemplate, Recommendation, RecommendationAcceptedData, RecommendationConfig, RecommendationShownData, SkillConfig, StreamProcessorOptions, TelemetryEventData, TemplateDownloadData, TemplateParameter, TemplateParameterValue, TemplateResponse, TemplateType$1 as TemplateType, ToolCapabilities, ToolConfig, ToolMetadata, UsageReport, UsageReportResponse, WelcomeOptions, WorkflowConfig };