cntx-ui 2.0.5 → 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 CHANGED
@@ -41,7 +41,7 @@ switch (command) {
41
41
  break;
42
42
 
43
43
  default:
44
- console.log(`cntx-ui v2.0.5
44
+ console.log(`cntx-ui v2.0.6
45
45
 
46
46
  Usage:
47
47
  cntx-ui init Initialize configuration
package/lib/mcp-server.js CHANGED
@@ -7,7 +7,7 @@ export class MCPServer {
7
7
  this.clientCapabilities = null;
8
8
  this.serverInfo = {
9
9
  name: 'cntx-ui',
10
- version: '2.0.5'
10
+ version: '2.0.6'
11
11
  };
12
12
  }
13
13
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "cntx-ui",
3
3
  "type": "module",
4
- "version": "2.0.5",
4
+ "version": "2.0.6",
5
5
  "description": "Minimal file bundling and tagging tool for AI development",
6
6
  "keywords": [
7
7
  "ai",
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(`📝 Edit ${relative(cwd, server.CONFIG_FILE)} to customize bundles`);
1776
- console.log(`🚫 Edit ${relative(cwd, server.IGNORE_FILE)} to customize ignored files`);
1777
- console.log(`🤖 Edit ${relative(cwd, server.CURSOR_RULES_FILE)} to customize AI assistant rules`);
1778
- console.log(`🎯 Use AI to suggest bundle configurations: run 'cntx-ui bundle master' then use the setup guide`);
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()) {