universal-dev-standards 3.4.0-beta.2 → 3.4.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/package.json +1 -1
- package/src/commands/check.js +8 -1
package/package.json
CHANGED
package/src/commands/check.js
CHANGED
|
@@ -599,7 +599,14 @@ async function migrateToHashBasedTracking(projectPath, manifest) {
|
|
|
599
599
|
function displaySkillsStatus(manifest, projectPath) {
|
|
600
600
|
console.log(chalk.cyan('Skills Status:'));
|
|
601
601
|
if (manifest.skills.installed) {
|
|
602
|
-
|
|
602
|
+
const location = manifest.skills.location || '';
|
|
603
|
+
// Check if skills are installed via Plugin Marketplace
|
|
604
|
+
// Recognized patterns: 'marketplace', or paths containing 'plugins/cache'
|
|
605
|
+
const isMarketplace = location === 'marketplace' ||
|
|
606
|
+
location.includes('plugins/cache') ||
|
|
607
|
+
location.includes('plugins\\cache');
|
|
608
|
+
|
|
609
|
+
if (isMarketplace) {
|
|
603
610
|
console.log(chalk.green(' ✓ Skills installed via Plugin Marketplace'));
|
|
604
611
|
console.log(chalk.gray(' Managed by Claude Code plugin system'));
|
|
605
612
|
console.log(chalk.gray(' To verify: /plugin list'));
|