@ichintansoni/skills-master 0.3.7 → 0.3.9
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 +6 -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.9";
|
|
8
8
|
|
|
9
9
|
// src/schema/projectConfig.ts
|
|
10
10
|
import { z } from "zod";
|
|
@@ -604,6 +604,11 @@ var XSkillsMasterSchema = z4.object({
|
|
|
604
604
|
* guesses `Compose UI → choosing-android-testing`, and a staleness signal
|
|
605
605
|
* built on bad matches is worse than none. The crawl uses these to report
|
|
606
606
|
* when a skill's upstream has shipped since its `snapshot_date`.
|
|
607
|
+
*
|
|
608
|
+
* Optionally pin the version the skill documents — `Glance@1.2` — which is
|
|
609
|
+
* a far better staleness signal than release dates: both refreshes in the
|
|
610
|
+
* 1.1 pilot were "the skill names an old version", and neither was
|
|
611
|
+
* identifiable from how recently something shipped.
|
|
607
612
|
*/
|
|
608
613
|
upstream: z4.array(z4.string().min(1)).optional(),
|
|
609
614
|
/** citation URLs to canonical docs — never verbatim content. */
|
package/package.json
CHANGED