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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "universal-dev-standards",
3
- "version": "3.4.0-beta.2",
3
+ "version": "3.4.0",
4
4
  "description": "CLI tool for adopting Universal Development Standards",
5
5
  "keywords": [
6
6
  "documentation",
@@ -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
- if (manifest.skills.location === 'marketplace') {
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'));