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 +1 -1
- package/src/commands/check.js +8 -1
- package/src/commands/update.js +3 -3
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'));
|
package/src/commands/update.js
CHANGED
|
@@ -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 {
|