universal-dev-standards 3.4.0-beta.1 → 3.4.0-beta.3

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.1",
3
+ "version": "3.4.0-beta.3",
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'));
@@ -112,7 +112,7 @@ export async function updateCommand(options) {
112
112
 
113
113
  // Update standards
114
114
  for (const std of manifest.standards) {
115
- const result = copyStandard(std, '.standards', projectPath);
115
+ const result = await copyStandard(std, '.standards', projectPath);
116
116
  if (result.success) {
117
117
  results.updated.push(std);
118
118
  } else {
@@ -122,7 +122,7 @@ export async function updateCommand(options) {
122
122
 
123
123
  // Update extensions
124
124
  for (const ext of manifest.extensions) {
125
- const result = copyStandard(ext, '.standards', projectPath);
125
+ const result = await copyStandard(ext, '.standards', projectPath);
126
126
  if (result.success) {
127
127
  results.updated.push(ext);
128
128
  } else {
@@ -142,7 +142,7 @@ export async function updateCommand(options) {
142
142
  }
143
143
 
144
144
  if (mapping) {
145
- const result = copyIntegration(mapping.source, mapping.target, projectPath);
145
+ const result = await copyIntegration(mapping.source, mapping.target, projectPath);
146
146
  if (result.success) {
147
147
  results.updated.push(int);
148
148
  } else {