universal-dev-standards 3.5.0-beta.14 → 3.5.0-beta.15

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.0-beta.14",
3
+ "version": "3.5.0-beta.15",
4
4
  "description": "CLI tool for adopting Universal Development Standards",
5
5
  "keywords": [
6
6
  "documentation",
@@ -1,5 +1,6 @@
1
1
  import chalk from 'chalk';
2
2
  import ora from 'ora';
3
+ import { basename, join } from 'path';
3
4
  import {
4
5
  getStandardsByLevel,
5
6
  getRepositoryInfo,
@@ -629,10 +630,7 @@ export async function initCommand(options) {
629
630
  }
630
631
 
631
632
  // Build installed standards list for compliance instructions (used by all AI tools)
632
- const installedStandardsList = results.standards.map(s => {
633
- const { basename } = require('path');
634
- return basename(s);
635
- });
633
+ const installedStandardsList = results.standards.map(s => basename(s));
636
634
 
637
635
  // Determine common language setting
638
636
  let commonLanguage = 'en';
@@ -774,7 +772,6 @@ export async function initCommand(options) {
774
772
  }
775
773
 
776
774
  // Compute file hashes for integrity checking
777
- const { join, basename } = await import('path');
778
775
  const fileHashes = {};
779
776
  const now = new Date().toISOString();
780
777
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
- "version": "3.5.0-beta.14",
3
+ "version": "3.5.0-beta.15",
4
4
  "lastUpdated": "2026-01-14",
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.0-beta.14"
51
+ "version": "3.5.0-beta.15"
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.0-beta.14",
58
+ "version": "3.5.0-beta.15",
59
59
  "note": "Skills are now included in the main repository under skills/"
60
60
  }
61
61
  },