uxos 0.0.10 → 0.0.12
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/cli.js +3 -21
- package/package.json +1 -1
package/cli.js
CHANGED
|
@@ -39,24 +39,6 @@ function copyDirectory(src, dest) {
|
|
|
39
39
|
}
|
|
40
40
|
|
|
41
41
|
function main() {
|
|
42
|
-
const command = process.argv[2];
|
|
43
|
-
|
|
44
|
-
if (command !== 'install') {
|
|
45
|
-
console.log(`
|
|
46
|
-
████████████ UXOS ████████████
|
|
47
|
-
|
|
48
|
-
Usage:
|
|
49
|
-
npx uxos install Install UXOS workflow system
|
|
50
|
-
|
|
51
|
-
Description:
|
|
52
|
-
UXOS is a design efficiency assistant that provides guided workflows
|
|
53
|
-
for AI-powered design collaboration.
|
|
54
|
-
|
|
55
|
-
For more information, visit: https://github.com/your-org/uxos
|
|
56
|
-
`);
|
|
57
|
-
process.exit(0);
|
|
58
|
-
}
|
|
59
|
-
|
|
60
42
|
console.log(`
|
|
61
43
|
═══════════════════════════════════════════════════════════
|
|
62
44
|
UXOS INSTALLER
|
|
@@ -68,7 +50,7 @@ Installing UXOS workflow system...
|
|
|
68
50
|
const projectRoot = process.cwd();
|
|
69
51
|
|
|
70
52
|
// Create directories
|
|
71
|
-
const uxosDir = path.join(projectRoot, '
|
|
53
|
+
const uxosDir = path.join(projectRoot, '_uxos');
|
|
72
54
|
const workflowsDir = path.join(uxosDir, 'workflows');
|
|
73
55
|
const configDir = path.join(uxosDir, 'config');
|
|
74
56
|
const templatesDir = path.join(uxosDir, 'templates');
|
|
@@ -118,7 +100,7 @@ Installing UXOS workflow system...
|
|
|
118
100
|
console.log(``);
|
|
119
101
|
console.log(`<activation steps="MANDATORY">`);
|
|
120
102
|
console.log(`<step n="1">STOP - DO NOT TYPE ANYTHING</step>`);
|
|
121
|
-
console.log(`<step n="2">READ workflows/init.md RIGHT NOW</step>`);
|
|
103
|
+
console.log(`<step n="2">READ _uxos/workflows/init.md RIGHT NOW</step>`);
|
|
122
104
|
console.log(`<step n="3">EXECUTE init.md INSTRUCTIONS EXACTLY</step>`);
|
|
123
105
|
console.log(`<step n="4">OUTPUT ONLY WHAT init.md COMMANDS</step>`);
|
|
124
106
|
console.log(`</activation>`);
|
|
@@ -132,7 +114,7 @@ Installing UXOS workflow system...
|
|
|
132
114
|
console.log(`<r>MUST output ONLY what init.md says to output</r>`);
|
|
133
115
|
console.log(`</constraints>`);
|
|
134
116
|
console.log(``);
|
|
135
|
-
console.log(`<target>workflows/init.md</target>`);
|
|
117
|
+
console.log(`<target>_uxos/workflows/init.md</target>`);
|
|
136
118
|
console.log(`</UXOS-BOOTSTRAP>`);
|
|
137
119
|
console.log(``);
|
|
138
120
|
}
|