@nebutra/next-unicorn-skill 1.0.1 → 1.0.2
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/CHANGELOG.md +15 -0
- package/README.md +9 -3
- package/SKILL.md +30 -11
- package/dist/index.d.ts +39 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +8 -1
- package/dist/index.js.map +1 -1
- package/dist/schemas/output.schema.d.ts +178 -58
- package/dist/schemas/output.schema.d.ts.map +1 -1
- package/dist/schemas/output.schema.js +11 -0
- package/dist/schemas/output.schema.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,21 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.0.2] - 2026-02-09
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- **Ecosystem-level recommendations** — `LibraryRecommendation` now supports `rationale`, `ecosystem` (companion packages with roles), and `stackContext` fields, enabling AI agents to produce unicorn-grade solution stacks instead of single-library suggestions
|
|
13
|
+
- New `EcosystemPackage` type for companion packages (library + version + role)
|
|
14
|
+
- Output schema `RecommendedChange.recommendedLibrary` extended with `rationale`, `ecosystem`, and `stackContext` optional fields
|
|
15
|
+
- SKILL.md Step 3 rewritten to guide AI agents toward ecosystem-level thinking: "not just 'a library that does this', but the specific combination of tools that the best engineering teams ship with"
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
|
|
19
|
+
- `LibraryRecommendation` interface extended (backward-compatible — new fields are optional)
|
|
20
|
+
- SKILL.md example now shows full ecosystem recommendation (@lingui/core + @lingui/macro + @lingui/cli + Crowdin TMS)
|
|
21
|
+
- Version bumped to 1.0.2
|
|
22
|
+
|
|
8
23
|
## [1.0.1] - 2026-02-09
|
|
9
24
|
|
|
10
25
|
### Changed
|
package/README.md
CHANGED
|
@@ -63,14 +63,20 @@ npm install @nebutra/next-unicorn-skill
|
|
|
63
63
|
import { analyze, scanCodebase } from '@nebutra/next-unicorn-skill';
|
|
64
64
|
import type { Recommender } from '@nebutra/next-unicorn-skill';
|
|
65
65
|
|
|
66
|
-
// The recommender function: AI agent decides
|
|
66
|
+
// The recommender function: AI agent decides the full ecosystem for each detection
|
|
67
67
|
const recommender: Recommender = (detection) => {
|
|
68
68
|
// AI agent uses its knowledge + project context to recommend
|
|
69
69
|
// Return null to skip a detection (false positive, intentional custom code)
|
|
70
70
|
return {
|
|
71
|
-
library: '
|
|
72
|
-
version: '^
|
|
71
|
+
library: '@lingui/core', // primary library
|
|
72
|
+
version: '^4.0.0', // verified via Context7
|
|
73
73
|
license: 'MIT',
|
|
74
|
+
rationale: 'Compile-time extraction with near-zero runtime overhead',
|
|
75
|
+
ecosystem: [ // companion packages
|
|
76
|
+
{ library: '@lingui/macro', version: '^4.0.0', role: 'Zero-runtime tagged templates' },
|
|
77
|
+
{ library: '@lingui/cli', version: '^4.0.0', role: 'CI/CD message extraction' },
|
|
78
|
+
],
|
|
79
|
+
stackContext: 'Integrate with Crowdin TMS for professional translation workflows',
|
|
74
80
|
};
|
|
75
81
|
};
|
|
76
82
|
|
package/SKILL.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: analyze-and-recommend-third-party-optimizations
|
|
3
3
|
description: Scans any codebase and identifies where hand-rolled implementations should be replaced by battle-tested third-party libraries, producing structured migration plans with Context7-verified recommendations
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
author: TsekaLuk
|
|
6
6
|
tags:
|
|
7
7
|
- code-analysis
|
|
@@ -53,17 +53,30 @@ Run `scanCodebase(input)` to walk the file tree and match against regex patterns
|
|
|
53
53
|
|
|
54
54
|
Detections contain **no library suggestions** — only what was detected and where.
|
|
55
55
|
|
|
56
|
-
### Step 3: Recommend
|
|
56
|
+
### Step 3: Recommend Solutions (AI Agent)
|
|
57
57
|
|
|
58
|
-
For each detection, recommend the best
|
|
58
|
+
For each detection, recommend a **unicorn-grade solution** — not just "a library that does this", but the specific combination of tools that the best engineering teams ship with, configured the way they configure it.
|
|
59
59
|
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
60
|
+
**Recommendation approach:**
|
|
61
|
+
|
|
62
|
+
1. **Project context** — framework, runtime, existing deps determine the primary library (Next.js App Router → next-intl; Vite SPA → @lingui/core; Edge → jose, not jsonwebtoken)
|
|
63
|
+
2. **Full ecosystem** — include companion packages that complete the solution (e.g., @lingui/macro for zero-runtime tagged templates + @lingui/cli for CI extraction + Crowdin TMS for professional translation workflows)
|
|
64
|
+
3. **Stack integration** — explain how this fits the broader architecture (e.g., "combine react-hook-form + @hookform/resolvers + zod for schema-validated forms that share types with server validation")
|
|
65
|
+
4. **Context7 verification** — call `resolve-library-id` + `query-docs` to confirm the library exists and get latest version/docs
|
|
63
66
|
|
|
64
67
|
Return a `LibraryRecommendation` per detection:
|
|
65
68
|
```typescript
|
|
66
|
-
{
|
|
69
|
+
{
|
|
70
|
+
library: '@lingui/core',
|
|
71
|
+
version: '^4.0.0',
|
|
72
|
+
license: 'MIT',
|
|
73
|
+
rationale: 'Compile-time message extraction with near-zero runtime overhead',
|
|
74
|
+
ecosystem: [
|
|
75
|
+
{ library: '@lingui/macro', version: '^4.0.0', role: 'Zero-runtime tagged template macros' },
|
|
76
|
+
{ library: '@lingui/cli', version: '^4.0.0', role: 'CI/CD message extraction pipeline' },
|
|
77
|
+
],
|
|
78
|
+
stackContext: 'Integrate with Crowdin TMS for professional translation workflows; use @lingui/vite-plugin for Vite or @lingui/swc-plugin for Next.js SWC compiler',
|
|
79
|
+
}
|
|
67
80
|
```
|
|
68
81
|
|
|
69
82
|
Return `null` to skip a detection (intentional custom code, false positive, etc.).
|
|
@@ -105,17 +118,23 @@ import type { Recommender } from './src/index.js';
|
|
|
105
118
|
// Step 1: Scan standalone (for AI agent inspection)
|
|
106
119
|
const scanResult = await scanCodebase(validatedInput);
|
|
107
120
|
|
|
108
|
-
// Step 2: Full pipeline with recommender
|
|
121
|
+
// Step 2: Full pipeline with ecosystem-level recommender
|
|
109
122
|
const recommender: Recommender = (detection) => ({
|
|
110
|
-
library: '
|
|
111
|
-
version: '^
|
|
123
|
+
library: '@lingui/core',
|
|
124
|
+
version: '^4.0.0',
|
|
112
125
|
license: 'MIT',
|
|
126
|
+
rationale: 'Compile-time extraction with near-zero runtime overhead',
|
|
127
|
+
ecosystem: [
|
|
128
|
+
{ library: '@lingui/macro', version: '^4.0.0', role: 'Zero-runtime tagged templates' },
|
|
129
|
+
{ library: '@lingui/cli', version: '^4.0.0', role: 'CI message extraction' },
|
|
130
|
+
],
|
|
131
|
+
stackContext: 'Integrate with Crowdin TMS; use @lingui/swc-plugin for Next.js',
|
|
113
132
|
});
|
|
114
133
|
|
|
115
134
|
const result = await analyze({
|
|
116
135
|
input: inputJson,
|
|
117
136
|
context7Client: myContext7Client,
|
|
118
|
-
recommender, // AI agent provides
|
|
137
|
+
recommender, // AI agent provides ecosystem-level recommendations
|
|
119
138
|
});
|
|
120
139
|
```
|
|
121
140
|
|
package/dist/index.d.ts
CHANGED
|
@@ -18,18 +18,54 @@ import type { VulnerabilityClient } from './security/osv-client.js';
|
|
|
18
18
|
import type { RegistryClient } from './updater/registry-client.js';
|
|
19
19
|
import type { PlatformClient } from './pr-creator/platform-client.js';
|
|
20
20
|
import type { GitOperations } from './pr-creator/git-operations.js';
|
|
21
|
-
export declare const VERSION = "1.0.
|
|
21
|
+
export declare const VERSION = "1.0.2";
|
|
22
|
+
/**
|
|
23
|
+
* A companion package that forms part of the full recommended solution.
|
|
24
|
+
*/
|
|
25
|
+
export interface EcosystemPackage {
|
|
26
|
+
/** Package name (e.g., "@lingui/macro") */
|
|
27
|
+
library: string;
|
|
28
|
+
/** Version constraint */
|
|
29
|
+
version: string;
|
|
30
|
+
/** Role in the ecosystem (e.g., "compile-time extraction", "TMS integration") */
|
|
31
|
+
role: string;
|
|
32
|
+
}
|
|
22
33
|
/**
|
|
23
34
|
* A library recommendation provided by the AI agent (or caller).
|
|
35
|
+
*
|
|
24
36
|
* The scanner detects WHAT is hand-rolled; the recommender decides WHAT to use.
|
|
37
|
+
* Recommendations should target unicorn-grade solutions: not just "a library
|
|
38
|
+
* that does this", but the specific combination of tools that the best
|
|
39
|
+
* engineering teams use, configured the way they configure it.
|
|
40
|
+
*
|
|
41
|
+
* A recommendation can be a single library OR a full ecosystem stack.
|
|
25
42
|
*/
|
|
26
43
|
export interface LibraryRecommendation {
|
|
27
|
-
/**
|
|
44
|
+
/** Primary library name (e.g., "@lingui/core") */
|
|
28
45
|
library: string;
|
|
29
|
-
/** Version constraint (e.g., "^
|
|
46
|
+
/** Version constraint (e.g., "^4.0.0") */
|
|
30
47
|
version: string;
|
|
31
48
|
/** SPDX license identifier (e.g., "MIT") */
|
|
32
49
|
license: string;
|
|
50
|
+
/**
|
|
51
|
+
* WHY this specific library/stack is the right choice for this project.
|
|
52
|
+
* Should reference project context (framework, runtime, scale).
|
|
53
|
+
* Example: "Lingui uses compile-time extraction with near-zero runtime
|
|
54
|
+
* overhead; integrates with Crowdin TMS for professional translation workflows"
|
|
55
|
+
*/
|
|
56
|
+
rationale?: string;
|
|
57
|
+
/**
|
|
58
|
+
* Companion packages that form the full unicorn-grade solution.
|
|
59
|
+
* Example: @lingui/macro (zero-runtime tagged templates),
|
|
60
|
+
* @lingui/cli (CI extraction), crowdin (TMS integration)
|
|
61
|
+
*/
|
|
62
|
+
ecosystem?: EcosystemPackage[];
|
|
63
|
+
/**
|
|
64
|
+
* How this recommendation connects to the broader architectural stack.
|
|
65
|
+
* Example: "Combine with next-intl routing for App Router i18n,
|
|
66
|
+
* or use standalone with Vite plugin for SPA"
|
|
67
|
+
*/
|
|
68
|
+
stackContext?: string;
|
|
33
69
|
}
|
|
34
70
|
/**
|
|
35
71
|
* Function that provides library recommendations for detections.
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAIH,OAAO,EACL,YAAY,EAIb,MAAM,4BAA4B,CAAC;AACpC,OAAO,EAAgB,KAAK,SAAS,EAAE,KAAK,UAAU,EAAE,MAAM,uBAAuB,CAAC;AACtF,OAAO,EAEL,KAAK,cAAc,EACpB,MAAM,wBAAwB,CAAC;AAIhC,OAAO,EAGL,KAAK,eAAe,EACrB,MAAM,8BAA8B,CAAC;AAEtC,OAAO,EAEL,KAAK,sBAAsB,EAE5B,MAAM,sCAAsC,CAAC;AAG9C,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAEpE,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,8BAA8B,CAAC;AAOnE,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,iCAAiC,CAAC;AACtE,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,gCAAgC,CAAC;AAMpE,eAAO,MAAM,OAAO,UAAU,CAAC;AAM/B
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAIH,OAAO,EACL,YAAY,EAIb,MAAM,4BAA4B,CAAC;AACpC,OAAO,EAAgB,KAAK,SAAS,EAAE,KAAK,UAAU,EAAE,MAAM,uBAAuB,CAAC;AACtF,OAAO,EAEL,KAAK,cAAc,EACpB,MAAM,wBAAwB,CAAC;AAIhC,OAAO,EAGL,KAAK,eAAe,EACrB,MAAM,8BAA8B,CAAC;AAEtC,OAAO,EAEL,KAAK,sBAAsB,EAE5B,MAAM,sCAAsC,CAAC;AAG9C,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAEpE,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,8BAA8B,CAAC;AAOnE,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,iCAAiC,CAAC;AACtE,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,gCAAgC,CAAC;AAMpE,eAAO,MAAM,OAAO,UAAU,CAAC;AAM/B;;GAEG;AACH,MAAM,WAAW,gBAAgB;IAC/B,2CAA2C;IAC3C,OAAO,EAAE,MAAM,CAAC;IAChB,yBAAyB;IACzB,OAAO,EAAE,MAAM,CAAC;IAChB,iFAAiF;IACjF,IAAI,EAAE,MAAM,CAAC;CACd;AAED;;;;;;;;;GASG;AACH,MAAM,WAAW,qBAAqB;IACpC,kDAAkD;IAClD,OAAO,EAAE,MAAM,CAAC;IAChB,0CAA0C;IAC1C,OAAO,EAAE,MAAM,CAAC;IAChB,4CAA4C;IAC5C,OAAO,EAAE,MAAM,CAAC;IAChB;;;;;OAKG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;;;OAIG;IACH,SAAS,CAAC,EAAE,gBAAgB,EAAE,CAAC;IAC/B;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AAED;;;;;;GAMG;AACH,MAAM,MAAM,WAAW,GAAG,CAAC,SAAS,EAAE,SAAS,KAAK,qBAAqB,GAAG,IAAI,CAAC;AAEjF,MAAM,WAAW,cAAc;IAC7B,oDAAoD;IACpD,KAAK,EAAE,OAAO,CAAC;IACf,6EAA6E;IAC7E,cAAc,EAAE,cAAc,CAAC;IAC/B;;;;OAIG;IACH,WAAW,EAAE,WAAW,CAAC;IACzB,6DAA6D;IAC7D,UAAU,CAAC,EAAE,mBAAmB,CAAC;IACjC,kEAAkE;IAClE,cAAc,CAAC,EAAE,cAAc,CAAC;IAChC,gDAAgD;IAChD,cAAc,CAAC,EAAE,cAAc,CAAC;IAChC,gDAAgD;IAChD,MAAM,CAAC,EAAE,aAAa,CAAC;IACvB,0FAA0F;IAC1F,sBAAsB,CAAC,EAAE,sBAAsB,CAAC;CACjD;AAED,MAAM,MAAM,aAAa,GACrB;IACE,OAAO,EAAE,IAAI,CAAC;IACd,MAAM,EAAE,YAAY,CAAC;IACrB,8EAA8E;IAC9E,UAAU,EAAE,UAAU,CAAC;IACvB,IAAI,EAAE,MAAM,CAAC;IACb,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,eAAe,EAAE,CAAC;CAC/B,GACD;IACE,OAAO,EAAE,KAAK,CAAC;IACf,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,OAAO,CAAC;CAClB,CAAC;AAMN,YAAY,EAAE,cAAc,EAAE,kBAAkB,EAAE,MAAM,wBAAwB,CAAC;AACjF,YAAY,EAAE,eAAe,EAAE,MAAM,8BAA8B,CAAC;AACpE,YAAY,EAAE,WAAW,EAAE,MAAM,2BAA2B,CAAC;AAC7D,YAAY,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAC;AAC/D,YAAY,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,uBAAuB,CAAC;AACnE,YAAY,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AACpE,YAAY,EAAE,cAAc,EAAE,MAAM,8BAA8B,CAAC;AACnE,YAAY,EAAE,cAAc,EAAE,MAAM,iCAAiC,CAAC;AACtE,YAAY,EAAE,aAAa,EAAE,MAAM,gCAAgC,CAAC;AACpE,YAAY,EAAE,sBAAsB,EAAE,MAAM,sCAAsC,CAAC;AACnF,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AACrD,OAAO,EAAE,iBAAiB,EAAE,MAAM,+BAA+B,CAAC;AAMlE;;;;;;;;;;;;;;;;;;;GAmBG;AACH,wBAAsB,OAAO,CAAC,OAAO,EAAE,cAAc,GAAG,OAAO,CAAC,aAAa,CAAC,CAyU7E"}
|
package/dist/index.js
CHANGED
|
@@ -29,7 +29,7 @@ import { executePRPlans } from './pr-creator/pr-executor.js';
|
|
|
29
29
|
// ---------------------------------------------------------------------------
|
|
30
30
|
// Version
|
|
31
31
|
// ---------------------------------------------------------------------------
|
|
32
|
-
export const VERSION = '1.0.
|
|
32
|
+
export const VERSION = '1.0.2';
|
|
33
33
|
export { scanCodebase } from './analyzer/scanner.js';
|
|
34
34
|
export { getPatternCatalog } from './analyzer/pattern-catalog.js';
|
|
35
35
|
// ---------------------------------------------------------------------------
|
|
@@ -126,6 +126,13 @@ export async function analyze(options) {
|
|
|
126
126
|
version: rec.version,
|
|
127
127
|
license: rec.license,
|
|
128
128
|
documentationUrl: verification.documentationUrl,
|
|
129
|
+
rationale: rec.rationale,
|
|
130
|
+
ecosystem: rec.ecosystem?.map((e) => ({
|
|
131
|
+
library: e.library,
|
|
132
|
+
version: e.version,
|
|
133
|
+
role: e.role,
|
|
134
|
+
})),
|
|
135
|
+
stackContext: rec.stackContext,
|
|
129
136
|
},
|
|
130
137
|
domain: detection.domain,
|
|
131
138
|
impactScores: scoringOutput.scores,
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;AAC/B,OAAO,EAAE,WAAW,EAAE,MAAM,2BAA2B,CAAC;AAOxD,OAAO,EAAE,YAAY,EAAmC,MAAM,uBAAuB,CAAC;AACtF,OAAO,EACL,wBAAwB,GAEzB,MAAM,wBAAwB,CAAC;AAChC,OAAO,EAAE,kBAAkB,EAAE,MAAM,2BAA2B,CAAC;AAC/D,OAAO,EAAE,kBAAkB,EAAE,MAAM,gCAAgC,CAAC;AACpE,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AAC9D,OAAO,EACL,eAAe,EACf,yBAAyB,GAE1B,MAAM,8BAA8B,CAAC;AACtC,OAAO,EAAE,eAAe,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AACrE,OAAO,EACL,qBAAqB,GAGtB,MAAM,sCAAsC,CAAC;AAI9C,OAAO,EAAE,mBAAmB,EAAE,MAAM,qCAAqC,CAAC;AAE1E,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAC/D,OAAO,EAAE,eAAe,EAAE,MAAM,iCAAiC,CAAC;AAClE,OAAO,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAC;AACzD,OAAO,EAAE,eAAe,EAAE,MAAM,kCAAkC,CAAC;AACnE,OAAO,EAAE,OAAO,EAAE,MAAM,6BAA6B,CAAC;AACtD,OAAO,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAC;AAI7D,8EAA8E;AAC9E,UAAU;AACV,8EAA8E;AAE9E,MAAM,CAAC,MAAM,OAAO,GAAG,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;AAC/B,OAAO,EAAE,WAAW,EAAE,MAAM,2BAA2B,CAAC;AAOxD,OAAO,EAAE,YAAY,EAAmC,MAAM,uBAAuB,CAAC;AACtF,OAAO,EACL,wBAAwB,GAEzB,MAAM,wBAAwB,CAAC;AAChC,OAAO,EAAE,kBAAkB,EAAE,MAAM,2BAA2B,CAAC;AAC/D,OAAO,EAAE,kBAAkB,EAAE,MAAM,gCAAgC,CAAC;AACpE,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AAC9D,OAAO,EACL,eAAe,EACf,yBAAyB,GAE1B,MAAM,8BAA8B,CAAC;AACtC,OAAO,EAAE,eAAe,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AACrE,OAAO,EACL,qBAAqB,GAGtB,MAAM,sCAAsC,CAAC;AAI9C,OAAO,EAAE,mBAAmB,EAAE,MAAM,qCAAqC,CAAC;AAE1E,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAC;AAC/D,OAAO,EAAE,eAAe,EAAE,MAAM,iCAAiC,CAAC;AAClE,OAAO,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAC;AACzD,OAAO,EAAE,eAAe,EAAE,MAAM,kCAAkC,CAAC;AACnE,OAAO,EAAE,OAAO,EAAE,MAAM,6BAA6B,CAAC;AACtD,OAAO,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAC;AAI7D,8EAA8E;AAC9E,UAAU;AACV,8EAA8E;AAE9E,MAAM,CAAC,MAAM,OAAO,GAAG,OAAO,CAAC;AAsH/B,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AACrD,OAAO,EAAE,iBAAiB,EAAE,MAAM,+BAA+B,CAAC;AAElE,8EAA8E;AAC9E,8BAA8B;AAC9B,8EAA8E;AAE9E;;;;;;;;;;;;;;;;;;;GAmBG;AACH,MAAM,CAAC,KAAK,UAAU,OAAO,CAAC,OAAuB;IACnD,MAAM,EAAE,KAAK,EAAE,cAAc,EAAE,WAAW,EAAE,GAAG,OAAO,CAAC;IAEvD,4EAA4E;IAC5E,yBAAyB;IACzB,4EAA4E;IAC5E,IAAI,cAA2B,CAAC;IAChC,IAAI,CAAC;QACH,cAAc,GAAG,WAAW,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;IAC5C,CAAC;IAAC,OAAO,GAAG,EAAE,CAAC;QACb,IAAI,GAAG,YAAY,QAAQ,EAAE,CAAC;YAC5B,OAAO;gBACL,OAAO,EAAE,KAAK;gBACd,KAAK,EAAE,4BAA4B,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE;gBAChF,MAAM,EAAE,GAAG,CAAC,MAAM;aACnB,CAAC;QACJ,CAAC;QACD,OAAO;YACL,OAAO,EAAE,KAAK;YACd,KAAK,EAAE,4BAA4B,MAAM,CAAC,GAAG,CAAC,EAAE;SACjD,CAAC;IACJ,CAAC;IAED,4EAA4E;IAC5E,wBAAwB;IACxB,4EAA4E;IAC5E,MAAM,UAAU,GAAG,MAAM,YAAY,CAAC,cAAc,CAAC,CAAC;IAEtD,4EAA4E;IAC5E,6DAA6D;IAC7D,4EAA4E;IAC5E,MAAM,WAAW,GAAG,UAAU,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,SAAS,EAAE,EAAE,CAAC,WAAW,CAAC,SAAS,CAAC,CAAC,CAAC;IAErF,4EAA4E;IAC5E,+CAA+C;IAC/C,4EAA4E;IAC5E,MAAM,iBAAiB,GAAG,UAAU,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,SAAS,EAAE,CAAC,EAAE,EAAE;QACnE,MAAM,GAAG,GAAG,WAAW,CAAC,CAAC,CAAC,CAAC;QAC3B,OAAO,GAAG;YACR,CAAC,CAAC,EAAE,WAAW,EAAE,GAAG,CAAC,OAAO,EAAE,OAAO,EAAE,SAAS,CAAC,eAAe,EAAE;YAClE,CAAC,CAAC,IAAI,CAAC;IACX,CAAC,CAAC,CAAC;IACH,MAAM,eAAe,GAAG,MAAM,wBAAwB,CACpD,cAAc,EACd,iBAAiB,CAClB,CAAC;IAEF,4EAA4E;IAC5E,uEAAuE;IACvE,4EAA4E;IAC5E,MAAM,eAAe,GAAwB,EAAE,CAAC;IAEhD,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,UAAU,CAAC,UAAU,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE,CAAC;QACtD,MAAM,SAAS,GAAG,UAAU,CAAC,UAAU,CAAC,CAAC,CAAE,CAAC;QAC5C,MAAM,GAAG,GAAG,WAAW,CAAC,CAAC,CAAC,CAAC;QAC3B,IAAI,CAAC,GAAG;YAAE,SAAS,CAAC,0CAA0C;QAE9D,MAAM,YAAY,GAAG,eAAe,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI;YAC7C,MAAM,EAAE,aAAsB;YAC9B,IAAI,EAAE,kCAAkC;SACzC,CAAC;QAEF,MAAM,aAAa,GAAG,kBAAkB,CAAC;YACvC,SAAS;YACT,YAAY;YACZ,OAAO,EAAE,cAAc,CAAC,aAAa;YACrC,kBAAkB,EAAE,cAAc,CAAC,kBAAkB;SACtD,CAAC,CAAC;QAEH,eAAe,CAAC,IAAI,CAAC;YACnB,qBAAqB,EAAE;gBACrB,QAAQ,EAAE,SAAS,CAAC,QAAQ;gBAC5B,SAAS,EAAE,SAAS,CAAC,SAAS;gBAC9B,eAAe,EAAE,SAAS,CAAC,eAAe;gBAC1C,eAAe,EAAE,SAAS,CAAC,eAAe;aAC3C;YACD,kBAAkB,EAAE;gBAClB,IAAI,EAAE,GAAG,CAAC,OAAO;gBACjB,OAAO,EAAE,GAAG,CAAC,OAAO;gBACpB,OAAO,EAAE,GAAG,CAAC,OAAO;gBACpB,gBAAgB,EAAE,YAAY,CAAC,gBAAgB;gBAC/C,SAAS,EAAE,GAAG,CAAC,SAAS;gBACxB,SAAS,EAAE,GAAG,CAAC,SAAS,EAAE,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;oBACpC,OAAO,EAAE,CAAC,CAAC,OAAO;oBAClB,OAAO,EAAE,CAAC,CAAC,OAAO;oBAClB,IAAI,EAAE,CAAC,CAAC,IAAI;iBACb,CAAC,CAAC;gBACH,YAAY,EAAE,GAAG,CAAC,YAAY;aAC/B;YACD,MAAM,EAAE,SAAS,CAAC,MAAM;YACxB,YAAY,EAAE,aAAa,CAAC,MAAM;YAClC,aAAa,EAAE,aAAa,CAAC,aAAa;YAC1C,eAAe,EAAE,aAAa,CAAC,eAAe;YAC9C,kBAAkB,EAAE,YAAY,CAAC,MAAM;YACvC,gBAAgB,EAAE,YAAY,CAAC,IAAI;SACpC,CAAC,CAAC;IACL,CAAC;IAED,4EAA4E;IAC5E,8CAA8C;IAC9C,4EAA4E;IAC5E,MAAM,eAAe,GAAG,yBAAyB,CAC/C,eAAe,EACf,cAAc,CAAC,eAAe,CAAC,gBAAgB,CAChD,CAAC;IAEF,4EAA4E;IAC5E,qCAAqC;IACrC,4EAA4E;IAC5E,IAAI,YAAY,GAA4B,EAAE,CAAC;IAC/C,IAAI,0BAA0B,GAAwB,eAAe,CAAC;IAEtE,IAAI,CAAC;QACH,MAAM,QAAQ,GAA2B,OAAO,CAAC,sBAAsB,IAAI;YACzE,OAAO,EAAE,KAAK,IAAI,EAAE,CAAC,CAAC,EAAE,CAAC;SAC1B,CAAC;QACF,MAAM,eAAe,GAAG,MAAM,qBAAqB,CACjD,eAAe,EACf,cAAc,CAAC,eAAe,CAAC,gBAAgB,EAC/C,QAAQ,CACT,CAAC;QACF,YAAY,GAAG,eAAe,CAAC,QAAQ,CAAC;QACxC,0BAA0B,GAAG,eAAe,CAAC,eAAe,CAAC;IAC/D,CAAC;IAAC,MAAM,CAAC;QACP,8EAA8E;QAC9E,YAAY,GAAG,EAAE,CAAC;QAClB,0BAA0B,GAAG,eAAe,CAAC;IAC/C,CAAC;IAED,4EAA4E;IAC5E,wDAAwD;IACxD,4EAA4E;IAC5E,IAAI,mBAA2C,CAAC;IAChD,IAAI,OAAO,CAAC,UAAU,EAAE,CAAC;QACvB,MAAM,gBAAgB,GAAG,sBAAsB,CAC7C,cAAc,CAAC,eAAe,CAAC,eAAe,CAC/C,CAAC;QACF,MAAM,UAAU,GAAG,MAAM,mBAAmB,CAC1C;YACE,gBAAgB,EAAE,cAAc,CAAC,eAAe,CAAC,gBAAgB;YACjE,kBAAkB,EAAE,0BAA0B;YAC9C,MAAM,EAAE,MAAM;YACd,gBAAgB;SACjB,EACD,OAAO,CAAC,UAAU,CACnB,CAAC;QACF,mBAAmB,GAAG;YACpB,QAAQ,EAAE,UAAU,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;gBACxC,MAAM,EAAE,CAAC,CAAC,MAAM;gBAChB,WAAW,EAAE,CAAC,CAAC,WAAW;gBAC1B,gBAAgB,EAAE,CAAC,CAAC,gBAAgB;gBACpC,SAAS,EAAE,CAAC,CAAC,SAAS;gBACtB,eAAe,EAAE,CAAC,CAAC,aAAa,CAAC,EAAE;gBACnC,OAAO,EAAE,CAAC,CAAC,aAAa,CAAC,OAAO;gBAChC,QAAQ,EAAE,CAAC,CAAC,aAAa,CAAC,QAAQ;gBAClC,SAAS,EAAE,CAAC,CAAC,aAAa,CAAC,SAAS;gBACpC,OAAO,EAAE,CAAC,CAAC,aAAa,CAAC,OAAO;gBAChC,YAAY,EAAE,CAAC,CAAC,YAAY;gBAC5B,mBAAmB,EAAE,CAAC,CAAC,mBAAmB;aAC3C,CAAC,CAAC;YACH,OAAO,EAAE,UAAU,CAAC,OAAO;YAC3B,kBAAkB,EAAE,UAAU,CAAC,kBAAkB;SAClD,CAAC;IACJ,CAAC;IAED,4EAA4E;IAC5E,kCAAkC;IAClC,4EAA4E;IAC5E,MAAM,EAAE,eAAe,EAAE,uBAAuB,EAAE,UAAU,EAAE,GAAG,eAAe,CAC9E,0BAA0B,EAC1B,cAAc,CAAC,WAAW,CAAC,gBAAgB,CAC5C,CAAC;IAEF,4EAA4E;IAC5E,+BAA+B;IAC/B,4EAA4E;IAC5E,MAAM,aAAa,GAAG,kBAAkB,CAAC,uBAAuB,CAAC,CAAC;IAElE,4EAA4E;IAC5E,gCAAgC;IAChC,4EAA4E;IAC5E,MAAM,aAAa,GAAG,mBAAmB,CAAC,UAAU,EAAE,cAAc,CAAC,eAAe,CAAC,CAAC;IAEtF,4EAA4E;IAC5E,kEAAkE;IAClE,4EAA4E;IAC5E,IAAI,UAAkC,CAAC;IACvC,IACE,cAAc,CAAC,YAAY,EAAE,OAAO;QACpC,OAAO,CAAC,cAAc,EACtB,CAAC;QACD,MAAM,MAAM,GAAG,cAAc,CAAC,YAAY,CAAC;QAC3C,MAAM,gBAAgB,GAAG,sBAAsB,CAC7C,cAAc,CAAC,eAAe,CAAC,eAAe,CAC/C,CAAC;QAEF,IAAI,CAAC;YACH,+CAA+C;YAC/C,MAAM,OAAO,GAAG,MAAM,CAAC,OAAO,CAAC,cAAc,CAAC,eAAe,CAAC,gBAAgB,CAAC,CAAC,GAAG,CACjF,CAAC,CAAC,IAAI,EAAE,OAAO,CAAC,EAAE,EAAE,CAAC,CAAC;gBACpB,SAAS,EAAE,gBAAgB;gBAC3B,WAAW,EAAE,IAAI;gBACjB,cAAc,EAAE,OAAO;aACxB,CAAC,CACH,CAAC;YAEF,MAAM,cAAc,GAAG,MAAM,OAAO,CAAC,cAAc,CAAC,mBAAmB,CAAC,OAAO,CAAC,CAAC;YAEjF,sBAAsB;YACtB,MAAM,UAAU,GAAG,iBAAiB,CAAC,cAAc,EAAE;gBACnD,eAAe,EAAE,MAAM,CAAC,eAAe;gBACvC,gBAAgB,EAAE,MAAM,CAAC,gBAAgB;gBACzC,UAAU,EAAE,MAAM,CAAC,UAAU;gBAC7B,UAAU,EAAE,MAAM,CAAC,UAAU;gBAC7B,oBAAoB,EAAE,MAAM,CAAC,oBAAoB;gBACjD,MAAM,EAAE,MAAM,CAAC,MAAM;aACtB,EAAE,gBAAgB,CAAC,CAAC;YAErB,iCAAiC;YACjC,MAAM,UAAU,GAAG,MAAM,OAAO,CAAC,GAAG,CAClC,UAAU,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CACnB,eAAe,CACb,cAAc,EACd,CAAC,CAAC,WAAW,EACb,CAAC,CAAC,cAAc,EAChB,CAAC,CAAC,aAAa,CAChB,CACF,CACF,CAAC;YAEF,oBAAoB;YACpB,MAAM,MAAM,GAAG,UAAU,CAAC,GAAG,CAAC,CAAC,SAAS,EAAE,KAAK,EAAE,EAAE,CACjD,WAAW,CAAC;gBACV,SAAS;gBACT,SAAS,EAAE,UAAU,CAAC,KAAK,CAAE;aAC9B,CAAC,CACH,CAAC;YAEF,oBAAoB;YACpB,UAAU,GAAG,eAAe,CAAC,UAAU,EAAE,MAAM,EAAE,UAAU,CAAC,CAAC;QAC/D,CAAC;QAAC,MAAM,CAAC;YACP,mDAAmD;YACnD,UAAU,GAAG,SAAS,CAAC;QACzB,CAAC;IACH,CAAC;IAED,4EAA4E;IAC5E,iCAAiC;IACjC,4EAA4E;IAE5E,uDAAuD;IACvD,MAAM,kBAAkB,GAAG,aAAa,CAAC,iBAAiB,CAAC,MAAM,CAAC,CAAC,KAAK,EAAE,IAAI,EAAE,EAAE;QAChF,IAAI,IAAI,CAAC,SAAS,EAAE,CAAC;YACnB,OAAO,KAAK,GAAG,CAAC,IAAI,CAAC,SAAS,CAAC,GAAG,GAAG,IAAI,CAAC,SAAS,CAAC,KAAK,GAAG,CAAC,CAAC,CAAC;QACjE,CAAC;QACD,OAAO,KAAK,CAAC;IACf,CAAC,EAAE,CAAC,CAAC,CAAC;IAEN,sDAAsD;IACtD,MAAM,aAAa,GAAG;QACpB,GAAG,IAAI,GAAG,CAAC,aAAa,CAAC,iBAAiB,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;KACzE,CAAC;IAEF,MAAM,MAAM,GAAiB;QAC3B,kBAAkB,EAAE,uBAAuB;QAC3C,aAAa;QACb,kBAAkB;QAClB,OAAO,EAAE,aAAa,CAAC,KAAK;QAC5B,aAAa,EAAE;YACb,MAAM,EAAE,aAAa,CAAC,MAAM;YAC5B,iBAAiB,EAAE,aAAa,CAAC,iBAAiB;YAClD,sBAAsB,EAAE,YAAY;SACrC;QACD,4BAA4B;QAC5B,mBAAmB;QACnB,UAAU;KACX,CAAC;IAEF,4EAA4E;IAC5E,iDAAiD;IACjD,4EAA4E;IAC5E,IACE,cAAc,CAAC,QAAQ,EAAE,OAAO;QAChC,OAAO,CAAC,cAAc;QACtB,OAAO,CAAC,MAAM,EACd,CAAC;QACD,MAAM,QAAQ,GAAG,cAAc,CAAC,QAAQ,CAAC;QAEzC,MAAM,OAAO,GAAG,OAAO,CAAC;YACtB,MAAM;YACN,MAAM,EAAE;gBACN,OAAO,EAAE,QAAQ,CAAC,OAAO;gBACzB,UAAU,EAAE,QAAQ,CAAC,UAAU;gBAC/B,YAAY,EAAE,QAAQ,CAAC,YAAY;gBACnC,mBAAmB,EAAE,QAAQ,CAAC,mBAAmB;gBACjD,kBAAkB,EAAE,QAAQ,CAAC,kBAAkB;gBAC/C,MAAM,EAAE,QAAQ,CAAC,MAAM;gBACvB,SAAS,EAAE,QAAQ,CAAC,SAAS;gBAC7B,KAAK,EAAE,QAAQ,CAAC,KAAK;gBACrB,YAAY,EAAE,QAAQ,CAAC,YAAY;aACpC;SACF,CAAC,CAAC;QAEH,MAAM,SAAS,GAAG,MAAM,cAAc,CAAC;YACrC,KAAK,EAAE,OAAO;YACd,cAAc,EAAE,OAAO,CAAC,cAAc;YACtC,MAAM,EAAE,OAAO,CAAC,MAAM;YACtB,MAAM,EAAE,QAAQ,CAAC,MAAM;YACvB,SAAS,EAAE,QAAQ,CAAC,SAAS;YAC7B,KAAK,EAAE,QAAQ,CAAC,KAAK;SACtB,CAAC,CAAC;QAEH,MAAM,CAAC,YAAY,GAAG,SAAS,CAAC;IAClC,CAAC;IAED,4EAA4E;IAC5E,gCAAgC;IAChC,4EAA4E;IAC5E,MAAM,IAAI,GAAG,eAAe,CAAC,MAAM,CAAC,CAAC;IACrC,MAAM,UAAU,GAAG,WAAW,CAAC,MAAM,CAAC,CAAC;IAEvC,OAAO;QACL,OAAO,EAAE,IAAI;QACb,MAAM;QACN,UAAU;QACV,IAAI;QACJ,UAAU;QACV,UAAU;KACX,CAAC;AACJ,CAAC;AAED,8EAA8E;AAC9E,UAAU;AACV,8EAA8E;AAE9E;;GAEG;AACH,SAAS,sBAAsB,CAAC,eAAyB;IACvD,MAAM,YAAY,GAA2B;QAC3C,GAAG,EAAE,KAAK;QACV,IAAI,EAAE,KAAK;QACX,IAAI,EAAE,KAAK;QACX,GAAG,EAAE,KAAK;QACV,GAAG,EAAE,MAAM;QACX,KAAK,EAAE,WAAW;QAClB,EAAE,EAAE,IAAI;KACT,CAAC;IAEF,KAAK,MAAM,EAAE,IAAI,eAAe,EAAE,CAAC;QACjC,MAAM,GAAG,GAAG,YAAY,CAAC,EAAE,CAAC,CAAC;QAC7B,IAAI,GAAG;YAAE,OAAO,GAAG,CAAC;IACtB,CAAC;IAED,OAAO,KAAK,CAAC;AACf,CAAC"}
|
|
@@ -49,6 +49,20 @@ export declare const AdapterStrategy: z.ZodObject<{
|
|
|
49
49
|
description: string;
|
|
50
50
|
}>;
|
|
51
51
|
export type AdapterStrategy = z.infer<typeof AdapterStrategy>;
|
|
52
|
+
export declare const EcosystemPackage: z.ZodObject<{
|
|
53
|
+
library: z.ZodString;
|
|
54
|
+
version: z.ZodString;
|
|
55
|
+
role: z.ZodString;
|
|
56
|
+
}, "strip", z.ZodTypeAny, {
|
|
57
|
+
library: string;
|
|
58
|
+
version: string;
|
|
59
|
+
role: string;
|
|
60
|
+
}, {
|
|
61
|
+
library: string;
|
|
62
|
+
version: string;
|
|
63
|
+
role: string;
|
|
64
|
+
}>;
|
|
65
|
+
export type EcosystemPackage = z.infer<typeof EcosystemPackage>;
|
|
52
66
|
export declare const RecommendedChange: z.ZodObject<{
|
|
53
67
|
currentImplementation: z.ZodObject<{
|
|
54
68
|
filePath: z.ZodString;
|
|
@@ -86,16 +100,48 @@ export declare const RecommendedChange: z.ZodObject<{
|
|
|
86
100
|
version: z.ZodString;
|
|
87
101
|
license: z.ZodString;
|
|
88
102
|
documentationUrl: z.ZodOptional<z.ZodString>;
|
|
103
|
+
/** WHY this specific library/stack is the right choice */
|
|
104
|
+
rationale: z.ZodOptional<z.ZodString>;
|
|
105
|
+
/** Companion packages forming the full ecosystem solution */
|
|
106
|
+
ecosystem: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
107
|
+
library: z.ZodString;
|
|
108
|
+
version: z.ZodString;
|
|
109
|
+
role: z.ZodString;
|
|
110
|
+
}, "strip", z.ZodTypeAny, {
|
|
111
|
+
library: string;
|
|
112
|
+
version: string;
|
|
113
|
+
role: string;
|
|
114
|
+
}, {
|
|
115
|
+
library: string;
|
|
116
|
+
version: string;
|
|
117
|
+
role: string;
|
|
118
|
+
}>, "many">>;
|
|
119
|
+
/** How this connects to the broader architectural stack */
|
|
120
|
+
stackContext: z.ZodOptional<z.ZodString>;
|
|
89
121
|
}, "strip", z.ZodTypeAny, {
|
|
90
|
-
name: string;
|
|
91
122
|
version: string;
|
|
123
|
+
name: string;
|
|
92
124
|
license: string;
|
|
93
125
|
documentationUrl?: string | undefined;
|
|
126
|
+
rationale?: string | undefined;
|
|
127
|
+
ecosystem?: {
|
|
128
|
+
library: string;
|
|
129
|
+
version: string;
|
|
130
|
+
role: string;
|
|
131
|
+
}[] | undefined;
|
|
132
|
+
stackContext?: string | undefined;
|
|
94
133
|
}, {
|
|
95
|
-
name: string;
|
|
96
134
|
version: string;
|
|
135
|
+
name: string;
|
|
97
136
|
license: string;
|
|
98
137
|
documentationUrl?: string | undefined;
|
|
138
|
+
rationale?: string | undefined;
|
|
139
|
+
ecosystem?: {
|
|
140
|
+
library: string;
|
|
141
|
+
version: string;
|
|
142
|
+
role: string;
|
|
143
|
+
}[] | undefined;
|
|
144
|
+
stackContext?: string | undefined;
|
|
99
145
|
}>;
|
|
100
146
|
domain: z.ZodString;
|
|
101
147
|
impactScores: z.ZodObject<{
|
|
@@ -157,10 +203,17 @@ export declare const RecommendedChange: z.ZodObject<{
|
|
|
157
203
|
confidenceScore: number;
|
|
158
204
|
};
|
|
159
205
|
recommendedLibrary: {
|
|
160
|
-
name: string;
|
|
161
206
|
version: string;
|
|
207
|
+
name: string;
|
|
162
208
|
license: string;
|
|
163
209
|
documentationUrl?: string | undefined;
|
|
210
|
+
rationale?: string | undefined;
|
|
211
|
+
ecosystem?: {
|
|
212
|
+
library: string;
|
|
213
|
+
version: string;
|
|
214
|
+
role: string;
|
|
215
|
+
}[] | undefined;
|
|
216
|
+
stackContext?: string | undefined;
|
|
164
217
|
};
|
|
165
218
|
domain: string;
|
|
166
219
|
impactScores: {
|
|
@@ -194,10 +247,17 @@ export declare const RecommendedChange: z.ZodObject<{
|
|
|
194
247
|
confidenceScore: number;
|
|
195
248
|
};
|
|
196
249
|
recommendedLibrary: {
|
|
197
|
-
name: string;
|
|
198
250
|
version: string;
|
|
251
|
+
name: string;
|
|
199
252
|
license: string;
|
|
200
253
|
documentationUrl?: string | undefined;
|
|
254
|
+
rationale?: string | undefined;
|
|
255
|
+
ecosystem?: {
|
|
256
|
+
library: string;
|
|
257
|
+
version: string;
|
|
258
|
+
role: string;
|
|
259
|
+
}[] | undefined;
|
|
260
|
+
stackContext?: string | undefined;
|
|
201
261
|
};
|
|
202
262
|
domain: string;
|
|
203
263
|
impactScores: {
|
|
@@ -230,15 +290,15 @@ export declare const UxAuditItem: z.ZodObject<{
|
|
|
230
290
|
rationale: z.ZodString;
|
|
231
291
|
}, "strip", z.ZodTypeAny, {
|
|
232
292
|
status: "present" | "partial" | "missing";
|
|
293
|
+
rationale: string;
|
|
233
294
|
category: "accessibility" | "error-states" | "empty-states" | "loading-states" | "form-validation" | "performance-feel" | "copy-consistency" | "design-system-alignment";
|
|
234
295
|
filePaths: string[];
|
|
235
|
-
rationale: string;
|
|
236
296
|
recommendedLibrary?: string | undefined;
|
|
237
297
|
}, {
|
|
238
298
|
status: "present" | "partial" | "missing";
|
|
299
|
+
rationale: string;
|
|
239
300
|
category: "accessibility" | "error-states" | "empty-states" | "loading-states" | "form-validation" | "performance-feel" | "copy-consistency" | "design-system-alignment";
|
|
240
301
|
filePaths: string[];
|
|
241
|
-
rationale: string;
|
|
242
302
|
recommendedLibrary?: string | undefined;
|
|
243
303
|
}>;
|
|
244
304
|
export type UxAuditItem = z.infer<typeof UxAuditItem>;
|
|
@@ -348,11 +408,11 @@ export declare const VulnFindingSchema: z.ZodObject<{
|
|
|
348
408
|
fixAvailable: z.ZodNullable<z.ZodString>;
|
|
349
409
|
recommendationIndex: z.ZodOptional<z.ZodNumber>;
|
|
350
410
|
}, "strip", z.ZodTypeAny, {
|
|
411
|
+
ecosystem: string;
|
|
351
412
|
installedVersion: string;
|
|
352
413
|
severity: "unknown" | "low" | "medium" | "high" | "critical";
|
|
353
414
|
source: "current" | "recommended";
|
|
354
415
|
packageName: string;
|
|
355
|
-
ecosystem: string;
|
|
356
416
|
vulnerabilityId: string;
|
|
357
417
|
aliases: string[];
|
|
358
418
|
cvssScore: number | null;
|
|
@@ -360,11 +420,11 @@ export declare const VulnFindingSchema: z.ZodObject<{
|
|
|
360
420
|
fixAvailable: string | null;
|
|
361
421
|
recommendationIndex?: number | undefined;
|
|
362
422
|
}, {
|
|
423
|
+
ecosystem: string;
|
|
363
424
|
installedVersion: string;
|
|
364
425
|
severity: "unknown" | "low" | "medium" | "high" | "critical";
|
|
365
426
|
source: "current" | "recommended";
|
|
366
427
|
packageName: string;
|
|
367
|
-
ecosystem: string;
|
|
368
428
|
vulnerabilityId: string;
|
|
369
429
|
cvssScore: number | null;
|
|
370
430
|
summary: string;
|
|
@@ -419,11 +479,11 @@ export declare const VulnReportSchema: z.ZodObject<{
|
|
|
419
479
|
fixAvailable: z.ZodNullable<z.ZodString>;
|
|
420
480
|
recommendationIndex: z.ZodOptional<z.ZodNumber>;
|
|
421
481
|
}, "strip", z.ZodTypeAny, {
|
|
482
|
+
ecosystem: string;
|
|
422
483
|
installedVersion: string;
|
|
423
484
|
severity: "unknown" | "low" | "medium" | "high" | "critical";
|
|
424
485
|
source: "current" | "recommended";
|
|
425
486
|
packageName: string;
|
|
426
|
-
ecosystem: string;
|
|
427
487
|
vulnerabilityId: string;
|
|
428
488
|
aliases: string[];
|
|
429
489
|
cvssScore: number | null;
|
|
@@ -431,11 +491,11 @@ export declare const VulnReportSchema: z.ZodObject<{
|
|
|
431
491
|
fixAvailable: string | null;
|
|
432
492
|
recommendationIndex?: number | undefined;
|
|
433
493
|
}, {
|
|
494
|
+
ecosystem: string;
|
|
434
495
|
installedVersion: string;
|
|
435
496
|
severity: "unknown" | "low" | "medium" | "high" | "critical";
|
|
436
497
|
source: "current" | "recommended";
|
|
437
498
|
packageName: string;
|
|
438
|
-
ecosystem: string;
|
|
439
499
|
vulnerabilityId: string;
|
|
440
500
|
cvssScore: number | null;
|
|
441
501
|
summary: string;
|
|
@@ -488,11 +548,11 @@ export declare const VulnReportSchema: z.ZodObject<{
|
|
|
488
548
|
unfixable: number;
|
|
489
549
|
};
|
|
490
550
|
findings: {
|
|
551
|
+
ecosystem: string;
|
|
491
552
|
installedVersion: string;
|
|
492
553
|
severity: "unknown" | "low" | "medium" | "high" | "critical";
|
|
493
554
|
source: "current" | "recommended";
|
|
494
555
|
packageName: string;
|
|
495
|
-
ecosystem: string;
|
|
496
556
|
vulnerabilityId: string;
|
|
497
557
|
aliases: string[];
|
|
498
558
|
cvssScore: number | null;
|
|
@@ -514,11 +574,11 @@ export declare const VulnReportSchema: z.ZodObject<{
|
|
|
514
574
|
unfixable: number;
|
|
515
575
|
};
|
|
516
576
|
findings: {
|
|
577
|
+
ecosystem: string;
|
|
517
578
|
installedVersion: string;
|
|
518
579
|
severity: "unknown" | "low" | "medium" | "high" | "critical";
|
|
519
580
|
source: "current" | "recommended";
|
|
520
581
|
packageName: string;
|
|
521
|
-
ecosystem: string;
|
|
522
582
|
vulnerabilityId: string;
|
|
523
583
|
cvssScore: number | null;
|
|
524
584
|
summary: string;
|
|
@@ -577,6 +637,7 @@ export declare const UpdateItemSchema: z.ZodObject<{
|
|
|
577
637
|
vulnFixCount: z.ZodNumber;
|
|
578
638
|
groupKey: z.ZodOptional<z.ZodString>;
|
|
579
639
|
}, "strip", z.ZodTypeAny, {
|
|
640
|
+
ecosystem: string;
|
|
580
641
|
impactScores: {
|
|
581
642
|
scalability: number;
|
|
582
643
|
performance: number;
|
|
@@ -589,7 +650,6 @@ export declare const UpdateItemSchema: z.ZodObject<{
|
|
|
589
650
|
};
|
|
590
651
|
estimatedEffort: number;
|
|
591
652
|
packageName: string;
|
|
592
|
-
ecosystem: string;
|
|
593
653
|
currentVersion: string;
|
|
594
654
|
targetVersion: string;
|
|
595
655
|
updateType: "patch" | "minor" | "major";
|
|
@@ -600,6 +660,7 @@ export declare const UpdateItemSchema: z.ZodObject<{
|
|
|
600
660
|
breakingChangeSummary?: string | undefined;
|
|
601
661
|
groupKey?: string | undefined;
|
|
602
662
|
}, {
|
|
663
|
+
ecosystem: string;
|
|
603
664
|
impactScores: {
|
|
604
665
|
scalability: number;
|
|
605
666
|
performance: number;
|
|
@@ -612,7 +673,6 @@ export declare const UpdateItemSchema: z.ZodObject<{
|
|
|
612
673
|
};
|
|
613
674
|
estimatedEffort: number;
|
|
614
675
|
packageName: string;
|
|
615
|
-
ecosystem: string;
|
|
616
676
|
currentVersion: string;
|
|
617
677
|
targetVersion: string;
|
|
618
678
|
updateType: "patch" | "minor" | "major";
|
|
@@ -668,6 +728,7 @@ export declare const UpdateGroupSchema: z.ZodObject<{
|
|
|
668
728
|
vulnFixCount: z.ZodNumber;
|
|
669
729
|
groupKey: z.ZodOptional<z.ZodString>;
|
|
670
730
|
}, "strip", z.ZodTypeAny, {
|
|
731
|
+
ecosystem: string;
|
|
671
732
|
impactScores: {
|
|
672
733
|
scalability: number;
|
|
673
734
|
performance: number;
|
|
@@ -680,7 +741,6 @@ export declare const UpdateGroupSchema: z.ZodObject<{
|
|
|
680
741
|
};
|
|
681
742
|
estimatedEffort: number;
|
|
682
743
|
packageName: string;
|
|
683
|
-
ecosystem: string;
|
|
684
744
|
currentVersion: string;
|
|
685
745
|
targetVersion: string;
|
|
686
746
|
updateType: "patch" | "minor" | "major";
|
|
@@ -691,6 +751,7 @@ export declare const UpdateGroupSchema: z.ZodObject<{
|
|
|
691
751
|
breakingChangeSummary?: string | undefined;
|
|
692
752
|
groupKey?: string | undefined;
|
|
693
753
|
}, {
|
|
754
|
+
ecosystem: string;
|
|
694
755
|
impactScores: {
|
|
695
756
|
scalability: number;
|
|
696
757
|
performance: number;
|
|
@@ -703,7 +764,6 @@ export declare const UpdateGroupSchema: z.ZodObject<{
|
|
|
703
764
|
};
|
|
704
765
|
estimatedEffort: number;
|
|
705
766
|
packageName: string;
|
|
706
|
-
ecosystem: string;
|
|
707
767
|
currentVersion: string;
|
|
708
768
|
targetVersion: string;
|
|
709
769
|
updateType: "patch" | "minor" | "major";
|
|
@@ -719,6 +779,7 @@ export declare const UpdateGroupSchema: z.ZodObject<{
|
|
|
719
779
|
urgency: "critical" | "recommended" | "routine" | "urgent";
|
|
720
780
|
groupKey: string;
|
|
721
781
|
items: {
|
|
782
|
+
ecosystem: string;
|
|
722
783
|
impactScores: {
|
|
723
784
|
scalability: number;
|
|
724
785
|
performance: number;
|
|
@@ -731,7 +792,6 @@ export declare const UpdateGroupSchema: z.ZodObject<{
|
|
|
731
792
|
};
|
|
732
793
|
estimatedEffort: number;
|
|
733
794
|
packageName: string;
|
|
734
|
-
ecosystem: string;
|
|
735
795
|
currentVersion: string;
|
|
736
796
|
targetVersion: string;
|
|
737
797
|
updateType: "patch" | "minor" | "major";
|
|
@@ -746,6 +806,7 @@ export declare const UpdateGroupSchema: z.ZodObject<{
|
|
|
746
806
|
urgency: "critical" | "recommended" | "routine" | "urgent";
|
|
747
807
|
groupKey: string;
|
|
748
808
|
items: {
|
|
809
|
+
ecosystem: string;
|
|
749
810
|
impactScores: {
|
|
750
811
|
scalability: number;
|
|
751
812
|
performance: number;
|
|
@@ -758,7 +819,6 @@ export declare const UpdateGroupSchema: z.ZodObject<{
|
|
|
758
819
|
};
|
|
759
820
|
estimatedEffort: number;
|
|
760
821
|
packageName: string;
|
|
761
|
-
ecosystem: string;
|
|
762
822
|
currentVersion: string;
|
|
763
823
|
targetVersion: string;
|
|
764
824
|
updateType: "patch" | "minor" | "major";
|
|
@@ -814,6 +874,7 @@ export declare const UpdatePlanSchema: z.ZodObject<{
|
|
|
814
874
|
vulnFixCount: z.ZodNumber;
|
|
815
875
|
groupKey: z.ZodOptional<z.ZodString>;
|
|
816
876
|
}, "strip", z.ZodTypeAny, {
|
|
877
|
+
ecosystem: string;
|
|
817
878
|
impactScores: {
|
|
818
879
|
scalability: number;
|
|
819
880
|
performance: number;
|
|
@@ -826,7 +887,6 @@ export declare const UpdatePlanSchema: z.ZodObject<{
|
|
|
826
887
|
};
|
|
827
888
|
estimatedEffort: number;
|
|
828
889
|
packageName: string;
|
|
829
|
-
ecosystem: string;
|
|
830
890
|
currentVersion: string;
|
|
831
891
|
targetVersion: string;
|
|
832
892
|
updateType: "patch" | "minor" | "major";
|
|
@@ -837,6 +897,7 @@ export declare const UpdatePlanSchema: z.ZodObject<{
|
|
|
837
897
|
breakingChangeSummary?: string | undefined;
|
|
838
898
|
groupKey?: string | undefined;
|
|
839
899
|
}, {
|
|
900
|
+
ecosystem: string;
|
|
840
901
|
impactScores: {
|
|
841
902
|
scalability: number;
|
|
842
903
|
performance: number;
|
|
@@ -849,7 +910,6 @@ export declare const UpdatePlanSchema: z.ZodObject<{
|
|
|
849
910
|
};
|
|
850
911
|
estimatedEffort: number;
|
|
851
912
|
packageName: string;
|
|
852
|
-
ecosystem: string;
|
|
853
913
|
currentVersion: string;
|
|
854
914
|
targetVersion: string;
|
|
855
915
|
updateType: "patch" | "minor" | "major";
|
|
@@ -904,6 +964,7 @@ export declare const UpdatePlanSchema: z.ZodObject<{
|
|
|
904
964
|
vulnFixCount: z.ZodNumber;
|
|
905
965
|
groupKey: z.ZodOptional<z.ZodString>;
|
|
906
966
|
}, "strip", z.ZodTypeAny, {
|
|
967
|
+
ecosystem: string;
|
|
907
968
|
impactScores: {
|
|
908
969
|
scalability: number;
|
|
909
970
|
performance: number;
|
|
@@ -916,7 +977,6 @@ export declare const UpdatePlanSchema: z.ZodObject<{
|
|
|
916
977
|
};
|
|
917
978
|
estimatedEffort: number;
|
|
918
979
|
packageName: string;
|
|
919
|
-
ecosystem: string;
|
|
920
980
|
currentVersion: string;
|
|
921
981
|
targetVersion: string;
|
|
922
982
|
updateType: "patch" | "minor" | "major";
|
|
@@ -927,6 +987,7 @@ export declare const UpdatePlanSchema: z.ZodObject<{
|
|
|
927
987
|
breakingChangeSummary?: string | undefined;
|
|
928
988
|
groupKey?: string | undefined;
|
|
929
989
|
}, {
|
|
990
|
+
ecosystem: string;
|
|
930
991
|
impactScores: {
|
|
931
992
|
scalability: number;
|
|
932
993
|
performance: number;
|
|
@@ -939,7 +1000,6 @@ export declare const UpdatePlanSchema: z.ZodObject<{
|
|
|
939
1000
|
};
|
|
940
1001
|
estimatedEffort: number;
|
|
941
1002
|
packageName: string;
|
|
942
|
-
ecosystem: string;
|
|
943
1003
|
currentVersion: string;
|
|
944
1004
|
targetVersion: string;
|
|
945
1005
|
updateType: "patch" | "minor" | "major";
|
|
@@ -955,6 +1015,7 @@ export declare const UpdatePlanSchema: z.ZodObject<{
|
|
|
955
1015
|
urgency: "critical" | "recommended" | "routine" | "urgent";
|
|
956
1016
|
groupKey: string;
|
|
957
1017
|
items: {
|
|
1018
|
+
ecosystem: string;
|
|
958
1019
|
impactScores: {
|
|
959
1020
|
scalability: number;
|
|
960
1021
|
performance: number;
|
|
@@ -967,7 +1028,6 @@ export declare const UpdatePlanSchema: z.ZodObject<{
|
|
|
967
1028
|
};
|
|
968
1029
|
estimatedEffort: number;
|
|
969
1030
|
packageName: string;
|
|
970
|
-
ecosystem: string;
|
|
971
1031
|
currentVersion: string;
|
|
972
1032
|
targetVersion: string;
|
|
973
1033
|
updateType: "patch" | "minor" | "major";
|
|
@@ -982,6 +1042,7 @@ export declare const UpdatePlanSchema: z.ZodObject<{
|
|
|
982
1042
|
urgency: "critical" | "recommended" | "routine" | "urgent";
|
|
983
1043
|
groupKey: string;
|
|
984
1044
|
items: {
|
|
1045
|
+
ecosystem: string;
|
|
985
1046
|
impactScores: {
|
|
986
1047
|
scalability: number;
|
|
987
1048
|
performance: number;
|
|
@@ -994,7 +1055,6 @@ export declare const UpdatePlanSchema: z.ZodObject<{
|
|
|
994
1055
|
};
|
|
995
1056
|
estimatedEffort: number;
|
|
996
1057
|
packageName: string;
|
|
997
|
-
ecosystem: string;
|
|
998
1058
|
currentVersion: string;
|
|
999
1059
|
targetVersion: string;
|
|
1000
1060
|
updateType: "patch" | "minor" | "major";
|
|
@@ -1038,6 +1098,7 @@ export declare const UpdatePlanSchema: z.ZodObject<{
|
|
|
1038
1098
|
estimatedTotalEffort: number;
|
|
1039
1099
|
};
|
|
1040
1100
|
updates: {
|
|
1101
|
+
ecosystem: string;
|
|
1041
1102
|
impactScores: {
|
|
1042
1103
|
scalability: number;
|
|
1043
1104
|
performance: number;
|
|
@@ -1050,7 +1111,6 @@ export declare const UpdatePlanSchema: z.ZodObject<{
|
|
|
1050
1111
|
};
|
|
1051
1112
|
estimatedEffort: number;
|
|
1052
1113
|
packageName: string;
|
|
1053
|
-
ecosystem: string;
|
|
1054
1114
|
currentVersion: string;
|
|
1055
1115
|
targetVersion: string;
|
|
1056
1116
|
updateType: "patch" | "minor" | "major";
|
|
@@ -1065,6 +1125,7 @@ export declare const UpdatePlanSchema: z.ZodObject<{
|
|
|
1065
1125
|
urgency: "critical" | "recommended" | "routine" | "urgent";
|
|
1066
1126
|
groupKey: string;
|
|
1067
1127
|
items: {
|
|
1128
|
+
ecosystem: string;
|
|
1068
1129
|
impactScores: {
|
|
1069
1130
|
scalability: number;
|
|
1070
1131
|
performance: number;
|
|
@@ -1077,7 +1138,6 @@ export declare const UpdatePlanSchema: z.ZodObject<{
|
|
|
1077
1138
|
};
|
|
1078
1139
|
estimatedEffort: number;
|
|
1079
1140
|
packageName: string;
|
|
1080
|
-
ecosystem: string;
|
|
1081
1141
|
currentVersion: string;
|
|
1082
1142
|
targetVersion: string;
|
|
1083
1143
|
updateType: "patch" | "minor" | "major";
|
|
@@ -1099,6 +1159,7 @@ export declare const UpdatePlanSchema: z.ZodObject<{
|
|
|
1099
1159
|
estimatedTotalEffort: number;
|
|
1100
1160
|
};
|
|
1101
1161
|
updates: {
|
|
1162
|
+
ecosystem: string;
|
|
1102
1163
|
impactScores: {
|
|
1103
1164
|
scalability: number;
|
|
1104
1165
|
performance: number;
|
|
@@ -1111,7 +1172,6 @@ export declare const UpdatePlanSchema: z.ZodObject<{
|
|
|
1111
1172
|
};
|
|
1112
1173
|
estimatedEffort: number;
|
|
1113
1174
|
packageName: string;
|
|
1114
|
-
ecosystem: string;
|
|
1115
1175
|
currentVersion: string;
|
|
1116
1176
|
targetVersion: string;
|
|
1117
1177
|
updateType: "patch" | "minor" | "major";
|
|
@@ -1126,6 +1186,7 @@ export declare const UpdatePlanSchema: z.ZodObject<{
|
|
|
1126
1186
|
urgency: "critical" | "recommended" | "routine" | "urgent";
|
|
1127
1187
|
groupKey: string;
|
|
1128
1188
|
items: {
|
|
1189
|
+
ecosystem: string;
|
|
1129
1190
|
impactScores: {
|
|
1130
1191
|
scalability: number;
|
|
1131
1192
|
performance: number;
|
|
@@ -1138,7 +1199,6 @@ export declare const UpdatePlanSchema: z.ZodObject<{
|
|
|
1138
1199
|
};
|
|
1139
1200
|
estimatedEffort: number;
|
|
1140
1201
|
packageName: string;
|
|
1141
|
-
ecosystem: string;
|
|
1142
1202
|
currentVersion: string;
|
|
1143
1203
|
targetVersion: string;
|
|
1144
1204
|
updateType: "patch" | "minor" | "major";
|
|
@@ -1243,16 +1303,48 @@ export declare const OutputSchema: z.ZodObject<{
|
|
|
1243
1303
|
version: z.ZodString;
|
|
1244
1304
|
license: z.ZodString;
|
|
1245
1305
|
documentationUrl: z.ZodOptional<z.ZodString>;
|
|
1306
|
+
/** WHY this specific library/stack is the right choice */
|
|
1307
|
+
rationale: z.ZodOptional<z.ZodString>;
|
|
1308
|
+
/** Companion packages forming the full ecosystem solution */
|
|
1309
|
+
ecosystem: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1310
|
+
library: z.ZodString;
|
|
1311
|
+
version: z.ZodString;
|
|
1312
|
+
role: z.ZodString;
|
|
1313
|
+
}, "strip", z.ZodTypeAny, {
|
|
1314
|
+
library: string;
|
|
1315
|
+
version: string;
|
|
1316
|
+
role: string;
|
|
1317
|
+
}, {
|
|
1318
|
+
library: string;
|
|
1319
|
+
version: string;
|
|
1320
|
+
role: string;
|
|
1321
|
+
}>, "many">>;
|
|
1322
|
+
/** How this connects to the broader architectural stack */
|
|
1323
|
+
stackContext: z.ZodOptional<z.ZodString>;
|
|
1246
1324
|
}, "strip", z.ZodTypeAny, {
|
|
1247
|
-
name: string;
|
|
1248
1325
|
version: string;
|
|
1326
|
+
name: string;
|
|
1249
1327
|
license: string;
|
|
1250
1328
|
documentationUrl?: string | undefined;
|
|
1329
|
+
rationale?: string | undefined;
|
|
1330
|
+
ecosystem?: {
|
|
1331
|
+
library: string;
|
|
1332
|
+
version: string;
|
|
1333
|
+
role: string;
|
|
1334
|
+
}[] | undefined;
|
|
1335
|
+
stackContext?: string | undefined;
|
|
1251
1336
|
}, {
|
|
1252
|
-
name: string;
|
|
1253
1337
|
version: string;
|
|
1338
|
+
name: string;
|
|
1254
1339
|
license: string;
|
|
1255
1340
|
documentationUrl?: string | undefined;
|
|
1341
|
+
rationale?: string | undefined;
|
|
1342
|
+
ecosystem?: {
|
|
1343
|
+
library: string;
|
|
1344
|
+
version: string;
|
|
1345
|
+
role: string;
|
|
1346
|
+
}[] | undefined;
|
|
1347
|
+
stackContext?: string | undefined;
|
|
1256
1348
|
}>;
|
|
1257
1349
|
domain: z.ZodString;
|
|
1258
1350
|
impactScores: z.ZodObject<{
|
|
@@ -1314,10 +1406,17 @@ export declare const OutputSchema: z.ZodObject<{
|
|
|
1314
1406
|
confidenceScore: number;
|
|
1315
1407
|
};
|
|
1316
1408
|
recommendedLibrary: {
|
|
1317
|
-
name: string;
|
|
1318
1409
|
version: string;
|
|
1410
|
+
name: string;
|
|
1319
1411
|
license: string;
|
|
1320
1412
|
documentationUrl?: string | undefined;
|
|
1413
|
+
rationale?: string | undefined;
|
|
1414
|
+
ecosystem?: {
|
|
1415
|
+
library: string;
|
|
1416
|
+
version: string;
|
|
1417
|
+
role: string;
|
|
1418
|
+
}[] | undefined;
|
|
1419
|
+
stackContext?: string | undefined;
|
|
1321
1420
|
};
|
|
1322
1421
|
domain: string;
|
|
1323
1422
|
impactScores: {
|
|
@@ -1351,10 +1450,17 @@ export declare const OutputSchema: z.ZodObject<{
|
|
|
1351
1450
|
confidenceScore: number;
|
|
1352
1451
|
};
|
|
1353
1452
|
recommendedLibrary: {
|
|
1354
|
-
name: string;
|
|
1355
1453
|
version: string;
|
|
1454
|
+
name: string;
|
|
1356
1455
|
license: string;
|
|
1357
1456
|
documentationUrl?: string | undefined;
|
|
1457
|
+
rationale?: string | undefined;
|
|
1458
|
+
ecosystem?: {
|
|
1459
|
+
library: string;
|
|
1460
|
+
version: string;
|
|
1461
|
+
role: string;
|
|
1462
|
+
}[] | undefined;
|
|
1463
|
+
stackContext?: string | undefined;
|
|
1358
1464
|
};
|
|
1359
1465
|
domain: string;
|
|
1360
1466
|
impactScores: {
|
|
@@ -1388,15 +1494,15 @@ export declare const OutputSchema: z.ZodObject<{
|
|
|
1388
1494
|
rationale: z.ZodString;
|
|
1389
1495
|
}, "strip", z.ZodTypeAny, {
|
|
1390
1496
|
status: "present" | "partial" | "missing";
|
|
1497
|
+
rationale: string;
|
|
1391
1498
|
category: "accessibility" | "error-states" | "empty-states" | "loading-states" | "form-validation" | "performance-feel" | "copy-consistency" | "design-system-alignment";
|
|
1392
1499
|
filePaths: string[];
|
|
1393
|
-
rationale: string;
|
|
1394
1500
|
recommendedLibrary?: string | undefined;
|
|
1395
1501
|
}, {
|
|
1396
1502
|
status: "present" | "partial" | "missing";
|
|
1503
|
+
rationale: string;
|
|
1397
1504
|
category: "accessibility" | "error-states" | "empty-states" | "loading-states" | "form-validation" | "performance-feel" | "copy-consistency" | "design-system-alignment";
|
|
1398
1505
|
filePaths: string[];
|
|
1399
|
-
rationale: string;
|
|
1400
1506
|
recommendedLibrary?: string | undefined;
|
|
1401
1507
|
}>, "many">;
|
|
1402
1508
|
migrationPlan: z.ZodObject<{
|
|
@@ -1590,11 +1696,11 @@ export declare const OutputSchema: z.ZodObject<{
|
|
|
1590
1696
|
fixAvailable: z.ZodNullable<z.ZodString>;
|
|
1591
1697
|
recommendationIndex: z.ZodOptional<z.ZodNumber>;
|
|
1592
1698
|
}, "strip", z.ZodTypeAny, {
|
|
1699
|
+
ecosystem: string;
|
|
1593
1700
|
installedVersion: string;
|
|
1594
1701
|
severity: "unknown" | "low" | "medium" | "high" | "critical";
|
|
1595
1702
|
source: "current" | "recommended";
|
|
1596
1703
|
packageName: string;
|
|
1597
|
-
ecosystem: string;
|
|
1598
1704
|
vulnerabilityId: string;
|
|
1599
1705
|
aliases: string[];
|
|
1600
1706
|
cvssScore: number | null;
|
|
@@ -1602,11 +1708,11 @@ export declare const OutputSchema: z.ZodObject<{
|
|
|
1602
1708
|
fixAvailable: string | null;
|
|
1603
1709
|
recommendationIndex?: number | undefined;
|
|
1604
1710
|
}, {
|
|
1711
|
+
ecosystem: string;
|
|
1605
1712
|
installedVersion: string;
|
|
1606
1713
|
severity: "unknown" | "low" | "medium" | "high" | "critical";
|
|
1607
1714
|
source: "current" | "recommended";
|
|
1608
1715
|
packageName: string;
|
|
1609
|
-
ecosystem: string;
|
|
1610
1716
|
vulnerabilityId: string;
|
|
1611
1717
|
cvssScore: number | null;
|
|
1612
1718
|
summary: string;
|
|
@@ -1659,11 +1765,11 @@ export declare const OutputSchema: z.ZodObject<{
|
|
|
1659
1765
|
unfixable: number;
|
|
1660
1766
|
};
|
|
1661
1767
|
findings: {
|
|
1768
|
+
ecosystem: string;
|
|
1662
1769
|
installedVersion: string;
|
|
1663
1770
|
severity: "unknown" | "low" | "medium" | "high" | "critical";
|
|
1664
1771
|
source: "current" | "recommended";
|
|
1665
1772
|
packageName: string;
|
|
1666
|
-
ecosystem: string;
|
|
1667
1773
|
vulnerabilityId: string;
|
|
1668
1774
|
aliases: string[];
|
|
1669
1775
|
cvssScore: number | null;
|
|
@@ -1685,11 +1791,11 @@ export declare const OutputSchema: z.ZodObject<{
|
|
|
1685
1791
|
unfixable: number;
|
|
1686
1792
|
};
|
|
1687
1793
|
findings: {
|
|
1794
|
+
ecosystem: string;
|
|
1688
1795
|
installedVersion: string;
|
|
1689
1796
|
severity: "unknown" | "low" | "medium" | "high" | "critical";
|
|
1690
1797
|
source: "current" | "recommended";
|
|
1691
1798
|
packageName: string;
|
|
1692
|
-
ecosystem: string;
|
|
1693
1799
|
vulnerabilityId: string;
|
|
1694
1800
|
cvssScore: number | null;
|
|
1695
1801
|
summary: string;
|
|
@@ -1742,6 +1848,7 @@ export declare const OutputSchema: z.ZodObject<{
|
|
|
1742
1848
|
vulnFixCount: z.ZodNumber;
|
|
1743
1849
|
groupKey: z.ZodOptional<z.ZodString>;
|
|
1744
1850
|
}, "strip", z.ZodTypeAny, {
|
|
1851
|
+
ecosystem: string;
|
|
1745
1852
|
impactScores: {
|
|
1746
1853
|
scalability: number;
|
|
1747
1854
|
performance: number;
|
|
@@ -1754,7 +1861,6 @@ export declare const OutputSchema: z.ZodObject<{
|
|
|
1754
1861
|
};
|
|
1755
1862
|
estimatedEffort: number;
|
|
1756
1863
|
packageName: string;
|
|
1757
|
-
ecosystem: string;
|
|
1758
1864
|
currentVersion: string;
|
|
1759
1865
|
targetVersion: string;
|
|
1760
1866
|
updateType: "patch" | "minor" | "major";
|
|
@@ -1765,6 +1871,7 @@ export declare const OutputSchema: z.ZodObject<{
|
|
|
1765
1871
|
breakingChangeSummary?: string | undefined;
|
|
1766
1872
|
groupKey?: string | undefined;
|
|
1767
1873
|
}, {
|
|
1874
|
+
ecosystem: string;
|
|
1768
1875
|
impactScores: {
|
|
1769
1876
|
scalability: number;
|
|
1770
1877
|
performance: number;
|
|
@@ -1777,7 +1884,6 @@ export declare const OutputSchema: z.ZodObject<{
|
|
|
1777
1884
|
};
|
|
1778
1885
|
estimatedEffort: number;
|
|
1779
1886
|
packageName: string;
|
|
1780
|
-
ecosystem: string;
|
|
1781
1887
|
currentVersion: string;
|
|
1782
1888
|
targetVersion: string;
|
|
1783
1889
|
updateType: "patch" | "minor" | "major";
|
|
@@ -1832,6 +1938,7 @@ export declare const OutputSchema: z.ZodObject<{
|
|
|
1832
1938
|
vulnFixCount: z.ZodNumber;
|
|
1833
1939
|
groupKey: z.ZodOptional<z.ZodString>;
|
|
1834
1940
|
}, "strip", z.ZodTypeAny, {
|
|
1941
|
+
ecosystem: string;
|
|
1835
1942
|
impactScores: {
|
|
1836
1943
|
scalability: number;
|
|
1837
1944
|
performance: number;
|
|
@@ -1844,7 +1951,6 @@ export declare const OutputSchema: z.ZodObject<{
|
|
|
1844
1951
|
};
|
|
1845
1952
|
estimatedEffort: number;
|
|
1846
1953
|
packageName: string;
|
|
1847
|
-
ecosystem: string;
|
|
1848
1954
|
currentVersion: string;
|
|
1849
1955
|
targetVersion: string;
|
|
1850
1956
|
updateType: "patch" | "minor" | "major";
|
|
@@ -1855,6 +1961,7 @@ export declare const OutputSchema: z.ZodObject<{
|
|
|
1855
1961
|
breakingChangeSummary?: string | undefined;
|
|
1856
1962
|
groupKey?: string | undefined;
|
|
1857
1963
|
}, {
|
|
1964
|
+
ecosystem: string;
|
|
1858
1965
|
impactScores: {
|
|
1859
1966
|
scalability: number;
|
|
1860
1967
|
performance: number;
|
|
@@ -1867,7 +1974,6 @@ export declare const OutputSchema: z.ZodObject<{
|
|
|
1867
1974
|
};
|
|
1868
1975
|
estimatedEffort: number;
|
|
1869
1976
|
packageName: string;
|
|
1870
|
-
ecosystem: string;
|
|
1871
1977
|
currentVersion: string;
|
|
1872
1978
|
targetVersion: string;
|
|
1873
1979
|
updateType: "patch" | "minor" | "major";
|
|
@@ -1883,6 +1989,7 @@ export declare const OutputSchema: z.ZodObject<{
|
|
|
1883
1989
|
urgency: "critical" | "recommended" | "routine" | "urgent";
|
|
1884
1990
|
groupKey: string;
|
|
1885
1991
|
items: {
|
|
1992
|
+
ecosystem: string;
|
|
1886
1993
|
impactScores: {
|
|
1887
1994
|
scalability: number;
|
|
1888
1995
|
performance: number;
|
|
@@ -1895,7 +2002,6 @@ export declare const OutputSchema: z.ZodObject<{
|
|
|
1895
2002
|
};
|
|
1896
2003
|
estimatedEffort: number;
|
|
1897
2004
|
packageName: string;
|
|
1898
|
-
ecosystem: string;
|
|
1899
2005
|
currentVersion: string;
|
|
1900
2006
|
targetVersion: string;
|
|
1901
2007
|
updateType: "patch" | "minor" | "major";
|
|
@@ -1910,6 +2016,7 @@ export declare const OutputSchema: z.ZodObject<{
|
|
|
1910
2016
|
urgency: "critical" | "recommended" | "routine" | "urgent";
|
|
1911
2017
|
groupKey: string;
|
|
1912
2018
|
items: {
|
|
2019
|
+
ecosystem: string;
|
|
1913
2020
|
impactScores: {
|
|
1914
2021
|
scalability: number;
|
|
1915
2022
|
performance: number;
|
|
@@ -1922,7 +2029,6 @@ export declare const OutputSchema: z.ZodObject<{
|
|
|
1922
2029
|
};
|
|
1923
2030
|
estimatedEffort: number;
|
|
1924
2031
|
packageName: string;
|
|
1925
|
-
ecosystem: string;
|
|
1926
2032
|
currentVersion: string;
|
|
1927
2033
|
targetVersion: string;
|
|
1928
2034
|
updateType: "patch" | "minor" | "major";
|
|
@@ -1966,6 +2072,7 @@ export declare const OutputSchema: z.ZodObject<{
|
|
|
1966
2072
|
estimatedTotalEffort: number;
|
|
1967
2073
|
};
|
|
1968
2074
|
updates: {
|
|
2075
|
+
ecosystem: string;
|
|
1969
2076
|
impactScores: {
|
|
1970
2077
|
scalability: number;
|
|
1971
2078
|
performance: number;
|
|
@@ -1978,7 +2085,6 @@ export declare const OutputSchema: z.ZodObject<{
|
|
|
1978
2085
|
};
|
|
1979
2086
|
estimatedEffort: number;
|
|
1980
2087
|
packageName: string;
|
|
1981
|
-
ecosystem: string;
|
|
1982
2088
|
currentVersion: string;
|
|
1983
2089
|
targetVersion: string;
|
|
1984
2090
|
updateType: "patch" | "minor" | "major";
|
|
@@ -1993,6 +2099,7 @@ export declare const OutputSchema: z.ZodObject<{
|
|
|
1993
2099
|
urgency: "critical" | "recommended" | "routine" | "urgent";
|
|
1994
2100
|
groupKey: string;
|
|
1995
2101
|
items: {
|
|
2102
|
+
ecosystem: string;
|
|
1996
2103
|
impactScores: {
|
|
1997
2104
|
scalability: number;
|
|
1998
2105
|
performance: number;
|
|
@@ -2005,7 +2112,6 @@ export declare const OutputSchema: z.ZodObject<{
|
|
|
2005
2112
|
};
|
|
2006
2113
|
estimatedEffort: number;
|
|
2007
2114
|
packageName: string;
|
|
2008
|
-
ecosystem: string;
|
|
2009
2115
|
currentVersion: string;
|
|
2010
2116
|
targetVersion: string;
|
|
2011
2117
|
updateType: "patch" | "minor" | "major";
|
|
@@ -2027,6 +2133,7 @@ export declare const OutputSchema: z.ZodObject<{
|
|
|
2027
2133
|
estimatedTotalEffort: number;
|
|
2028
2134
|
};
|
|
2029
2135
|
updates: {
|
|
2136
|
+
ecosystem: string;
|
|
2030
2137
|
impactScores: {
|
|
2031
2138
|
scalability: number;
|
|
2032
2139
|
performance: number;
|
|
@@ -2039,7 +2146,6 @@ export declare const OutputSchema: z.ZodObject<{
|
|
|
2039
2146
|
};
|
|
2040
2147
|
estimatedEffort: number;
|
|
2041
2148
|
packageName: string;
|
|
2042
|
-
ecosystem: string;
|
|
2043
2149
|
currentVersion: string;
|
|
2044
2150
|
targetVersion: string;
|
|
2045
2151
|
updateType: "patch" | "minor" | "major";
|
|
@@ -2054,6 +2160,7 @@ export declare const OutputSchema: z.ZodObject<{
|
|
|
2054
2160
|
urgency: "critical" | "recommended" | "routine" | "urgent";
|
|
2055
2161
|
groupKey: string;
|
|
2056
2162
|
items: {
|
|
2163
|
+
ecosystem: string;
|
|
2057
2164
|
impactScores: {
|
|
2058
2165
|
scalability: number;
|
|
2059
2166
|
performance: number;
|
|
@@ -2066,7 +2173,6 @@ export declare const OutputSchema: z.ZodObject<{
|
|
|
2066
2173
|
};
|
|
2067
2174
|
estimatedEffort: number;
|
|
2068
2175
|
packageName: string;
|
|
2069
|
-
ecosystem: string;
|
|
2070
2176
|
currentVersion: string;
|
|
2071
2177
|
targetVersion: string;
|
|
2072
2178
|
updateType: "patch" | "minor" | "major";
|
|
@@ -2176,10 +2282,17 @@ export declare const OutputSchema: z.ZodObject<{
|
|
|
2176
2282
|
confidenceScore: number;
|
|
2177
2283
|
};
|
|
2178
2284
|
recommendedLibrary: {
|
|
2179
|
-
name: string;
|
|
2180
2285
|
version: string;
|
|
2286
|
+
name: string;
|
|
2181
2287
|
license: string;
|
|
2182
2288
|
documentationUrl?: string | undefined;
|
|
2289
|
+
rationale?: string | undefined;
|
|
2290
|
+
ecosystem?: {
|
|
2291
|
+
library: string;
|
|
2292
|
+
version: string;
|
|
2293
|
+
role: string;
|
|
2294
|
+
}[] | undefined;
|
|
2295
|
+
stackContext?: string | undefined;
|
|
2183
2296
|
};
|
|
2184
2297
|
domain: string;
|
|
2185
2298
|
impactScores: {
|
|
@@ -2207,9 +2320,9 @@ export declare const OutputSchema: z.ZodObject<{
|
|
|
2207
2320
|
linesSavedEstimate: number;
|
|
2208
2321
|
uxAudit: {
|
|
2209
2322
|
status: "present" | "partial" | "missing";
|
|
2323
|
+
rationale: string;
|
|
2210
2324
|
category: "accessibility" | "error-states" | "empty-states" | "loading-states" | "form-validation" | "performance-feel" | "copy-consistency" | "design-system-alignment";
|
|
2211
2325
|
filePaths: string[];
|
|
2212
|
-
rationale: string;
|
|
2213
2326
|
recommendedLibrary?: string | undefined;
|
|
2214
2327
|
}[];
|
|
2215
2328
|
migrationPlan: {
|
|
@@ -2256,11 +2369,11 @@ export declare const OutputSchema: z.ZodObject<{
|
|
|
2256
2369
|
unfixable: number;
|
|
2257
2370
|
};
|
|
2258
2371
|
findings: {
|
|
2372
|
+
ecosystem: string;
|
|
2259
2373
|
installedVersion: string;
|
|
2260
2374
|
severity: "unknown" | "low" | "medium" | "high" | "critical";
|
|
2261
2375
|
source: "current" | "recommended";
|
|
2262
2376
|
packageName: string;
|
|
2263
|
-
ecosystem: string;
|
|
2264
2377
|
vulnerabilityId: string;
|
|
2265
2378
|
aliases: string[];
|
|
2266
2379
|
cvssScore: number | null;
|
|
@@ -2280,6 +2393,7 @@ export declare const OutputSchema: z.ZodObject<{
|
|
|
2280
2393
|
estimatedTotalEffort: number;
|
|
2281
2394
|
};
|
|
2282
2395
|
updates: {
|
|
2396
|
+
ecosystem: string;
|
|
2283
2397
|
impactScores: {
|
|
2284
2398
|
scalability: number;
|
|
2285
2399
|
performance: number;
|
|
@@ -2292,7 +2406,6 @@ export declare const OutputSchema: z.ZodObject<{
|
|
|
2292
2406
|
};
|
|
2293
2407
|
estimatedEffort: number;
|
|
2294
2408
|
packageName: string;
|
|
2295
|
-
ecosystem: string;
|
|
2296
2409
|
currentVersion: string;
|
|
2297
2410
|
targetVersion: string;
|
|
2298
2411
|
updateType: "patch" | "minor" | "major";
|
|
@@ -2307,6 +2420,7 @@ export declare const OutputSchema: z.ZodObject<{
|
|
|
2307
2420
|
urgency: "critical" | "recommended" | "routine" | "urgent";
|
|
2308
2421
|
groupKey: string;
|
|
2309
2422
|
items: {
|
|
2423
|
+
ecosystem: string;
|
|
2310
2424
|
impactScores: {
|
|
2311
2425
|
scalability: number;
|
|
2312
2426
|
performance: number;
|
|
@@ -2319,7 +2433,6 @@ export declare const OutputSchema: z.ZodObject<{
|
|
|
2319
2433
|
};
|
|
2320
2434
|
estimatedEffort: number;
|
|
2321
2435
|
packageName: string;
|
|
2322
|
-
ecosystem: string;
|
|
2323
2436
|
currentVersion: string;
|
|
2324
2437
|
targetVersion: string;
|
|
2325
2438
|
updateType: "patch" | "minor" | "major";
|
|
@@ -2363,10 +2476,17 @@ export declare const OutputSchema: z.ZodObject<{
|
|
|
2363
2476
|
confidenceScore: number;
|
|
2364
2477
|
};
|
|
2365
2478
|
recommendedLibrary: {
|
|
2366
|
-
name: string;
|
|
2367
2479
|
version: string;
|
|
2480
|
+
name: string;
|
|
2368
2481
|
license: string;
|
|
2369
2482
|
documentationUrl?: string | undefined;
|
|
2483
|
+
rationale?: string | undefined;
|
|
2484
|
+
ecosystem?: {
|
|
2485
|
+
library: string;
|
|
2486
|
+
version: string;
|
|
2487
|
+
role: string;
|
|
2488
|
+
}[] | undefined;
|
|
2489
|
+
stackContext?: string | undefined;
|
|
2370
2490
|
};
|
|
2371
2491
|
domain: string;
|
|
2372
2492
|
impactScores: {
|
|
@@ -2394,9 +2514,9 @@ export declare const OutputSchema: z.ZodObject<{
|
|
|
2394
2514
|
linesSavedEstimate: number;
|
|
2395
2515
|
uxAudit: {
|
|
2396
2516
|
status: "present" | "partial" | "missing";
|
|
2517
|
+
rationale: string;
|
|
2397
2518
|
category: "accessibility" | "error-states" | "empty-states" | "loading-states" | "form-validation" | "performance-feel" | "copy-consistency" | "design-system-alignment";
|
|
2398
2519
|
filePaths: string[];
|
|
2399
|
-
rationale: string;
|
|
2400
2520
|
recommendedLibrary?: string | undefined;
|
|
2401
2521
|
}[];
|
|
2402
2522
|
migrationPlan: {
|
|
@@ -2443,11 +2563,11 @@ export declare const OutputSchema: z.ZodObject<{
|
|
|
2443
2563
|
unfixable: number;
|
|
2444
2564
|
};
|
|
2445
2565
|
findings: {
|
|
2566
|
+
ecosystem: string;
|
|
2446
2567
|
installedVersion: string;
|
|
2447
2568
|
severity: "unknown" | "low" | "medium" | "high" | "critical";
|
|
2448
2569
|
source: "current" | "recommended";
|
|
2449
2570
|
packageName: string;
|
|
2450
|
-
ecosystem: string;
|
|
2451
2571
|
vulnerabilityId: string;
|
|
2452
2572
|
cvssScore: number | null;
|
|
2453
2573
|
summary: string;
|
|
@@ -2467,6 +2587,7 @@ export declare const OutputSchema: z.ZodObject<{
|
|
|
2467
2587
|
estimatedTotalEffort: number;
|
|
2468
2588
|
};
|
|
2469
2589
|
updates: {
|
|
2590
|
+
ecosystem: string;
|
|
2470
2591
|
impactScores: {
|
|
2471
2592
|
scalability: number;
|
|
2472
2593
|
performance: number;
|
|
@@ -2479,7 +2600,6 @@ export declare const OutputSchema: z.ZodObject<{
|
|
|
2479
2600
|
};
|
|
2480
2601
|
estimatedEffort: number;
|
|
2481
2602
|
packageName: string;
|
|
2482
|
-
ecosystem: string;
|
|
2483
2603
|
currentVersion: string;
|
|
2484
2604
|
targetVersion: string;
|
|
2485
2605
|
updateType: "patch" | "minor" | "major";
|
|
@@ -2494,6 +2614,7 @@ export declare const OutputSchema: z.ZodObject<{
|
|
|
2494
2614
|
urgency: "critical" | "recommended" | "routine" | "urgent";
|
|
2495
2615
|
groupKey: string;
|
|
2496
2616
|
items: {
|
|
2617
|
+
ecosystem: string;
|
|
2497
2618
|
impactScores: {
|
|
2498
2619
|
scalability: number;
|
|
2499
2620
|
performance: number;
|
|
@@ -2506,7 +2627,6 @@ export declare const OutputSchema: z.ZodObject<{
|
|
|
2506
2627
|
};
|
|
2507
2628
|
estimatedEffort: number;
|
|
2508
2629
|
packageName: string;
|
|
2509
|
-
ecosystem: string;
|
|
2510
2630
|
currentVersion: string;
|
|
2511
2631
|
targetVersion: string;
|
|
2512
2632
|
updateType: "patch" | "minor" | "major";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"output.schema.d.ts","sourceRoot":"","sources":["../../src/schemas/output.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,kBAAkB,sDAAoD,CAAC;AAEpF,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAEpE,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;EASvB,CAAC;AAEH,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,YAAY,CAAC,CAAC;AAExD,eAAO,MAAM,aAAa,sCAAoC,CAAC;AAE/D,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AAE1D,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;EAK1B,CAAC;AAEH,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AAE9D,eAAO,MAAM,iBAAiB
|
|
1
|
+
{"version":3,"file":"output.schema.d.ts","sourceRoot":"","sources":["../../src/schemas/output.schema.ts"],"names":[],"mappings":"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"}
|
|
@@ -17,6 +17,11 @@ export const AdapterStrategy = z.object({
|
|
|
17
17
|
targetLibrary: z.string(),
|
|
18
18
|
description: z.string(),
|
|
19
19
|
});
|
|
20
|
+
export const EcosystemPackage = z.object({
|
|
21
|
+
library: z.string(),
|
|
22
|
+
version: z.string(),
|
|
23
|
+
role: z.string(),
|
|
24
|
+
});
|
|
20
25
|
export const RecommendedChange = z.object({
|
|
21
26
|
currentImplementation: z.object({
|
|
22
27
|
filePath: z.string(),
|
|
@@ -29,6 +34,12 @@ export const RecommendedChange = z.object({
|
|
|
29
34
|
version: z.string(),
|
|
30
35
|
license: z.string(),
|
|
31
36
|
documentationUrl: z.string().optional(),
|
|
37
|
+
/** WHY this specific library/stack is the right choice */
|
|
38
|
+
rationale: z.string().optional(),
|
|
39
|
+
/** Companion packages forming the full ecosystem solution */
|
|
40
|
+
ecosystem: z.array(EcosystemPackage).optional(),
|
|
41
|
+
/** How this connects to the broader architectural stack */
|
|
42
|
+
stackContext: z.string().optional(),
|
|
32
43
|
}),
|
|
33
44
|
domain: z.string(),
|
|
34
45
|
impactScores: ImpactScores,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"output.schema.js","sourceRoot":"","sources":["../../src/schemas/output.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,MAAM,CAAC,MAAM,kBAAkB,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,UAAU,EAAE,YAAY,EAAE,aAAa,CAAC,CAAC,CAAC;AAIpF,MAAM,CAAC,MAAM,YAAY,GAAG,CAAC,CAAC,MAAM,CAAC;IACnC,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC;IAC5C,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC;IAC5C,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC;IACzC,eAAe,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC;IAChD,gBAAgB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC;IACjD,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC;IACnC,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC;IAC9C,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC;CACrC,CAAC,CAAC;AAIH,MAAM,CAAC,MAAM,aAAa,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,EAAE,QAAQ,EAAE,MAAM,CAAC,CAAC,CAAC;AAI/D,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,CAAC,MAAM,CAAC;IACtC,gBAAgB,EAAE,CAAC,CAAC,MAAM,EAAE;IAC5B,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE;IACtB,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE;IACzB,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE;CACxB,CAAC,CAAC;AAIH,MAAM,CAAC,MAAM,iBAAiB,GAAG,CAAC,CAAC,MAAM,CAAC;IACxC,qBAAqB,EAAE,CAAC,CAAC,MAAM,CAAC;QAC9B,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE;QACpB,SAAS,EAAE,CAAC,CAAC,MAAM,CAAC,EAAE,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,EAAE,GAAG,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC;QACvE,eAAe,EAAE,CAAC,CAAC,MAAM,EAAE;QAC3B,eAAe,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;KAC1C,CAAC;IACF,kBAAkB,EAAE,CAAC,CAAC,MAAM,CAAC;QAC3B,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;QAChB,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;QACnB,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;QACnB,gBAAgB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;
|
|
1
|
+
{"version":3,"file":"output.schema.js","sourceRoot":"","sources":["../../src/schemas/output.schema.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nebutra/next-unicorn-skill",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Stop Vibe Coding debt: audit your codebase, replace reinvented wheels with unicorn-grade libraries, scan vulnerabilities, auto-update deps, and auto-create PRs — all verified via Context7 MCP.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|