@ichintansoni/skills-master 0.3.3 → 0.3.4
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/bin.js +11 -1
- package/package.json +1 -1
package/dist/bin.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
import { Command } from "commander";
|
|
5
5
|
|
|
6
6
|
// package.json
|
|
7
|
-
var version = "0.3.
|
|
7
|
+
var version = "0.3.4";
|
|
8
8
|
|
|
9
9
|
// src/schema/projectConfig.ts
|
|
10
10
|
import { z } from "zod";
|
|
@@ -596,6 +596,16 @@ var XSkillsMasterSchema = z4.object({
|
|
|
596
596
|
/** domain-defined version requirements, e.g. { ios: "17", swift: "6.0" }. */
|
|
597
597
|
requires: z4.record(z4.string(), z4.string()).optional(),
|
|
598
598
|
pairs_with: z4.array(SkillNameSchema).default([]),
|
|
599
|
+
/**
|
|
600
|
+
* Upstream libraries this skill tracks, named as the vendor's release feed
|
|
601
|
+
* names them (`Media3`, `Compose Animation`, `Datastore`).
|
|
602
|
+
*
|
|
603
|
+
* Declared rather than inferred: matching skill names against feed titles
|
|
604
|
+
* guesses `Compose UI → choosing-android-testing`, and a staleness signal
|
|
605
|
+
* built on bad matches is worse than none. The crawl uses these to report
|
|
606
|
+
* when a skill's upstream has shipped since its `snapshot_date`.
|
|
607
|
+
*/
|
|
608
|
+
upstream: z4.array(z4.string().min(1)).optional(),
|
|
599
609
|
/** citation URLs to canonical docs — never verbatim content. */
|
|
600
610
|
sources: z4.array(z4.url()).default([]),
|
|
601
611
|
snapshot_date: z4.string().regex(ISO_DATE_RE, "must be an ISO date (YYYY-MM-DD)"),
|
package/package.json
CHANGED