universal-dev-standards 3.5.1-beta.20 → 3.5.1-beta.21

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.5.1-beta.20",
3
+ "version": "3.5.1-beta.21",
4
4
  "description": "CLI tool for adopting Universal Development Standards",
5
5
  "keywords": [
6
6
  "documentation",
@@ -534,11 +534,11 @@ async function handleSkillsConfiguration(manifest, projectPath, msg, common, spe
534
534
 
535
535
  // Validate skillsLocation if provided
536
536
  const validLocations = ['project', 'user'];
537
- const location = skillsLocation && validLocations.includes(skillsLocation) ? skillsLocation : 'project';
537
+ const level = skillsLocation && validLocations.includes(skillsLocation) ? skillsLocation : 'project';
538
538
 
539
539
  // Install to specified level (defaults to project)
540
- const installations = [{ agent: specificTool, location }];
541
- const spinner = ora(`Installing Skills for ${getAgentDisplayName(specificTool)} (${location} level)...`).start();
540
+ const installations = [{ agent: specificTool, level }];
541
+ const spinner = ora(`Installing Skills for ${getAgentDisplayName(specificTool)} (${level} level)...`).start();
542
542
  const result = await installSkillsToMultipleAgents(installations, null, projectPath);
543
543
  spinner.stop();
544
544
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
- "version": "3.5.1-beta.20",
3
+ "version": "3.5.1-beta.21",
4
4
  "lastUpdated": "2026-01-19",
5
5
  "description": "Standards registry for universal-dev-standards with integrated skills and AI-optimized formats",
6
6
  "formats": {
@@ -48,14 +48,14 @@
48
48
  "standards": {
49
49
  "name": "universal-dev-standards",
50
50
  "url": "https://github.com/AsiaOstrich/universal-dev-standards",
51
- "version": "3.5.1-beta.20"
51
+ "version": "3.5.1-beta.21"
52
52
  },
53
53
  "skills": {
54
54
  "name": "universal-dev-standards",
55
55
  "url": "https://github.com/AsiaOstrich/universal-dev-standards",
56
56
  "localPath": "skills/claude-code",
57
57
  "rawUrl": "https://raw.githubusercontent.com/AsiaOstrich/universal-dev-standards/main/skills/claude-code",
58
- "version": "3.5.1-beta.20",
58
+ "version": "3.5.1-beta.21",
59
59
  "note": "Skills are now included in the main repository under skills/"
60
60
  }
61
61
  },