@agent-scope/cli 1.18.0 → 1.19.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.
- package/dist/cli.js +926 -253
- package/dist/cli.js.map +1 -1
- package/dist/index.cjs +736 -68
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +10 -1
- package/dist/index.d.ts +10 -1
- package/dist/index.js +737 -70
- package/dist/index.js.map +1 -1
- package/package.json +7 -7
package/dist/index.d.cts
CHANGED
|
@@ -116,6 +116,15 @@ declare function formatCiReport(result: CiResult): string;
|
|
|
116
116
|
*/
|
|
117
117
|
declare function createCiCommand(): Command;
|
|
118
118
|
|
|
119
|
+
/**
|
|
120
|
+
* doctor-commands.ts
|
|
121
|
+
*
|
|
122
|
+
* `scope doctor` — health check that validates the current project's Scope
|
|
123
|
+
* setup and reports issues with config, tokens, globalCSS, and manifest staleness.
|
|
124
|
+
*/
|
|
125
|
+
|
|
126
|
+
declare function createDoctorCommand(): Command;
|
|
127
|
+
|
|
119
128
|
/**
|
|
120
129
|
* @agent-scope/cli — `scope init` command implementation
|
|
121
130
|
*
|
|
@@ -533,4 +542,4 @@ declare function resolveTokenFilePath(fileFlag?: string): string;
|
|
|
533
542
|
*/
|
|
534
543
|
declare function createTokensExportCommand(): Command;
|
|
535
544
|
|
|
536
|
-
export { CI_EXIT, type CausalityLink, type CiCheckName, type CiCheckResult, type CiExitCode, type CiOptions, type CiResult, type ComponentHookProfile, type HookHeuristicFlag, type HookProfile, type HooksProfilingResult, type InitOptions, type InitResult, type InteractionProfile, type InteractionStep$1 as InteractionStep, type InteractionTiming, type LayoutShiftData, type ListRow, type ProfileHeuristicFlag, type QueryRow, type ReactScopeConfig, type RenderEvent, type RenderTrigger, type RendersAnalysisResult, type ScopeCLIOptions, createCiCommand, createInitCommand, createInstrumentCommand, createManifestCommand, createProgram, createTokensCommand, createTokensExportCommand, formatCiReport, isTTY, matchGlob, resolveTokenFilePath, runCi, runInit };
|
|
545
|
+
export { CI_EXIT, type CausalityLink, type CiCheckName, type CiCheckResult, type CiExitCode, type CiOptions, type CiResult, type ComponentHookProfile, type HookHeuristicFlag, type HookProfile, type HooksProfilingResult, type InitOptions, type InitResult, type InteractionProfile, type InteractionStep$1 as InteractionStep, type InteractionTiming, type LayoutShiftData, type ListRow, type ProfileHeuristicFlag, type QueryRow, type ReactScopeConfig, type RenderEvent, type RenderTrigger, type RendersAnalysisResult, type ScopeCLIOptions, createCiCommand, createDoctorCommand, createInitCommand, createInstrumentCommand, createManifestCommand, createProgram, createTokensCommand, createTokensExportCommand, formatCiReport, isTTY, matchGlob, resolveTokenFilePath, runCi, runInit };
|
package/dist/index.d.ts
CHANGED
|
@@ -116,6 +116,15 @@ declare function formatCiReport(result: CiResult): string;
|
|
|
116
116
|
*/
|
|
117
117
|
declare function createCiCommand(): Command;
|
|
118
118
|
|
|
119
|
+
/**
|
|
120
|
+
* doctor-commands.ts
|
|
121
|
+
*
|
|
122
|
+
* `scope doctor` — health check that validates the current project's Scope
|
|
123
|
+
* setup and reports issues with config, tokens, globalCSS, and manifest staleness.
|
|
124
|
+
*/
|
|
125
|
+
|
|
126
|
+
declare function createDoctorCommand(): Command;
|
|
127
|
+
|
|
119
128
|
/**
|
|
120
129
|
* @agent-scope/cli — `scope init` command implementation
|
|
121
130
|
*
|
|
@@ -533,4 +542,4 @@ declare function resolveTokenFilePath(fileFlag?: string): string;
|
|
|
533
542
|
*/
|
|
534
543
|
declare function createTokensExportCommand(): Command;
|
|
535
544
|
|
|
536
|
-
export { CI_EXIT, type CausalityLink, type CiCheckName, type CiCheckResult, type CiExitCode, type CiOptions, type CiResult, type ComponentHookProfile, type HookHeuristicFlag, type HookProfile, type HooksProfilingResult, type InitOptions, type InitResult, type InteractionProfile, type InteractionStep$1 as InteractionStep, type InteractionTiming, type LayoutShiftData, type ListRow, type ProfileHeuristicFlag, type QueryRow, type ReactScopeConfig, type RenderEvent, type RenderTrigger, type RendersAnalysisResult, type ScopeCLIOptions, createCiCommand, createInitCommand, createInstrumentCommand, createManifestCommand, createProgram, createTokensCommand, createTokensExportCommand, formatCiReport, isTTY, matchGlob, resolveTokenFilePath, runCi, runInit };
|
|
545
|
+
export { CI_EXIT, type CausalityLink, type CiCheckName, type CiCheckResult, type CiExitCode, type CiOptions, type CiResult, type ComponentHookProfile, type HookHeuristicFlag, type HookProfile, type HooksProfilingResult, type InitOptions, type InitResult, type InteractionProfile, type InteractionStep$1 as InteractionStep, type InteractionTiming, type LayoutShiftData, type ListRow, type ProfileHeuristicFlag, type QueryRow, type ReactScopeConfig, type RenderEvent, type RenderTrigger, type RendersAnalysisResult, type ScopeCLIOptions, createCiCommand, createDoctorCommand, createInitCommand, createInstrumentCommand, createManifestCommand, createProgram, createTokensCommand, createTokensExportCommand, formatCiReport, isTTY, matchGlob, resolveTokenFilePath, runCi, runInit };
|