@cleocode/caamp 1.7.1 → 1.8.1
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.md +0 -0
- package/dist/chunk-CPHF5IM4.js +766 -0
- package/dist/chunk-CPHF5IM4.js.map +1 -0
- package/dist/{chunk-6T3TJQFF.js → chunk-LDTYDQGR.js} +162 -837
- package/dist/chunk-LDTYDQGR.js.map +1 -0
- package/dist/cli.d.ts +0 -0
- package/dist/cli.js +20 -18
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +195 -12
- package/dist/index.js +201 -47
- package/dist/index.js.map +1 -1
- package/dist/injector-TIUEM4X2.js +19 -0
- package/dist/injector-TIUEM4X2.js.map +1 -0
- package/package.json +7 -7
- package/providers/registry.json +0 -0
- package/dist/chunk-6T3TJQFF.js.map +0 -1
package/dist/cli.d.ts
CHANGED
|
File without changes
|
package/dist/cli.js
CHANGED
|
@@ -6,9 +6,6 @@ import {
|
|
|
6
6
|
applyMcpInstallWithPolicy,
|
|
7
7
|
buildCleoProfile,
|
|
8
8
|
buildServerConfig,
|
|
9
|
-
buildSkillSubPathCandidates,
|
|
10
|
-
buildSkillsMap,
|
|
11
|
-
checkAllInjections,
|
|
12
9
|
checkCommandReachability,
|
|
13
10
|
checkSkillUpdate,
|
|
14
11
|
configureProviderGlobalAndProject,
|
|
@@ -20,21 +17,11 @@ import {
|
|
|
20
17
|
extractVersionTag,
|
|
21
18
|
formatNetworkError,
|
|
22
19
|
formatSkillRecommendations,
|
|
23
|
-
generateInjectionContent,
|
|
24
|
-
getAllProviders,
|
|
25
|
-
getCommonHookEvents,
|
|
26
20
|
getInstalledProviders,
|
|
27
|
-
getProvider,
|
|
28
|
-
getProviderCount,
|
|
29
|
-
getProvidersByHookEvent,
|
|
30
|
-
getProvidersByPriority,
|
|
31
|
-
getRegistryVersion,
|
|
32
21
|
getSkill,
|
|
33
22
|
getSkillDir,
|
|
34
23
|
getTrackedMcpServers,
|
|
35
24
|
getTrackedSkills,
|
|
36
|
-
groupByInstructFile,
|
|
37
|
-
injectAll,
|
|
38
25
|
installBatchWithRollback,
|
|
39
26
|
installMcpServerToAll,
|
|
40
27
|
installSkill,
|
|
@@ -50,7 +37,6 @@ import {
|
|
|
50
37
|
normalizeCleoChannel,
|
|
51
38
|
parseEnvAssignments,
|
|
52
39
|
parseSource,
|
|
53
|
-
providerSupports,
|
|
54
40
|
readConfig,
|
|
55
41
|
readLockFile,
|
|
56
42
|
recommendSkills,
|
|
@@ -64,10 +50,7 @@ import {
|
|
|
64
50
|
resolveChannelFromServerName,
|
|
65
51
|
resolveCleoServerName,
|
|
66
52
|
resolveConfigPath,
|
|
67
|
-
resolvePreferredConfigScope,
|
|
68
53
|
resolveProfile,
|
|
69
|
-
resolveProviderConfigPath,
|
|
70
|
-
resolveProviderSkillsDir,
|
|
71
54
|
scanDirectory,
|
|
72
55
|
scanFile,
|
|
73
56
|
selectProvidersByMinimumPriority,
|
|
@@ -78,7 +61,26 @@ import {
|
|
|
78
61
|
tokenizeCriteriaValue,
|
|
79
62
|
updateInstructionsSingleOperation,
|
|
80
63
|
validateSkill
|
|
81
|
-
} from "./chunk-
|
|
64
|
+
} from "./chunk-LDTYDQGR.js";
|
|
65
|
+
import {
|
|
66
|
+
buildSkillSubPathCandidates,
|
|
67
|
+
buildSkillsMap,
|
|
68
|
+
checkAllInjections,
|
|
69
|
+
generateInjectionContent,
|
|
70
|
+
getAllProviders,
|
|
71
|
+
getCommonHookEvents,
|
|
72
|
+
getProvider,
|
|
73
|
+
getProviderCount,
|
|
74
|
+
getProvidersByHookEvent,
|
|
75
|
+
getProvidersByPriority,
|
|
76
|
+
getRegistryVersion,
|
|
77
|
+
groupByInstructFile,
|
|
78
|
+
injectAll,
|
|
79
|
+
providerSupports,
|
|
80
|
+
resolvePreferredConfigScope,
|
|
81
|
+
resolveProviderConfigPath,
|
|
82
|
+
resolveProviderSkillsDir
|
|
83
|
+
} from "./chunk-CPHF5IM4.js";
|
|
82
84
|
|
|
83
85
|
// src/cli.ts
|
|
84
86
|
import { Command } from "commander";
|