uxos 1.0.3 โ†’ 1.0.4

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.
Files changed (2) hide show
  1. package/cli.js +2 -8
  2. package/package.json +1 -1
package/cli.js CHANGED
@@ -5,8 +5,6 @@ const path = require('path');
5
5
 
6
6
  const targetDir = process.cwd();
7
7
 
8
- console.log('๐Ÿš€ UXOS ๅผ€ๅง‹ๅฎ‰่ฃ…...\n');
9
-
10
8
  // ๆ‹ท่ดๆ‰€ๆœ‰ๆ–‡ไปถๅˆฐ้กน็›ฎ็›ฎๅฝ•
11
9
  const copyFiles = [
12
10
  ['config/user-template.yaml', 'config/user-template.yaml'],
@@ -28,11 +26,7 @@ copyFiles.forEach(([src, dest]) => {
28
26
 
29
27
  const content = fs.readFileSync(srcPath, 'utf8');
30
28
  fs.writeFileSync(destPath, content, 'utf8');
31
- console.log(`โœ… ๅทฒๅˆ›ๅปบ: ${dest}`);
32
29
  });
33
30
 
34
- console.log('\nโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”');
35
- console.log('๐Ÿค– AI ๅŠฉๆ‰‹๏ผŒ่ฏท่ฏปๅ–ไปฅไธ‹ๆ–‡ไปถ');
36
- console.log('โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”');
37
- console.log('๐Ÿ“„ workflows/init.md');
38
- console.log('โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\n');
31
+ // ็บฏๆ‰ง่กŒๆŒ‡ไปค๏ผŒๆ— ้ขๅค–่ฏดๆ˜Ž
32
+ console.log('\nAI: Read workflows/init.md');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "uxos",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "UXOS - AI assistant workflow initialization tool",
5
5
  "main": "index.js",
6
6
  "bin": {