cntx-ui 2.0.4 → 2.0.6
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/bin/cntx-ui.js +1 -1
- package/lib/mcp-server.js +1 -1
- package/package.json +1 -1
- package/server.js +9 -5
package/bin/cntx-ui.js
CHANGED
package/lib/mcp-server.js
CHANGED
package/package.json
CHANGED
package/server.js
CHANGED
|
@@ -1771,11 +1771,15 @@ export function initConfig(cwd = process.cwd()) {
|
|
|
1771
1771
|
console.error('❌ Error creating cursor rules:', error);
|
|
1772
1772
|
}
|
|
1773
1773
|
|
|
1774
|
-
console.log('✅ cntx-ui initialized');
|
|
1775
|
-
console.log(
|
|
1776
|
-
console.log(
|
|
1777
|
-
console.log(
|
|
1778
|
-
console.log(
|
|
1774
|
+
console.log('✅ cntx-ui initialized successfully!');
|
|
1775
|
+
console.log('');
|
|
1776
|
+
console.log('🚀 Next step: Start the web interface');
|
|
1777
|
+
console.log(' Run: cntx-ui watch');
|
|
1778
|
+
console.log('');
|
|
1779
|
+
console.log('📱 Then visit: http://localhost:3333');
|
|
1780
|
+
console.log(' Follow the setup guide to create your first bundles');
|
|
1781
|
+
console.log('');
|
|
1782
|
+
console.log('💡 The web interface handles everything - no manual file editing needed!');
|
|
1779
1783
|
}
|
|
1780
1784
|
|
|
1781
1785
|
export function getStatus(cwd = process.cwd()) {
|