matex-cli 1.2.44 → 1.2.45

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/src/index.ts CHANGED
@@ -7,6 +7,7 @@ import { devCommand } from './commands/dev';
7
7
  import { chatCommand } from './commands/chat';
8
8
  import { helpCommand } from './commands/help';
9
9
  import { broCommand } from './commands/bro';
10
+ import { studyCommand } from './commands/study';
10
11
  import { TUI } from './utils/tui';
11
12
 
12
13
  const packageJson = require('../package.json');
@@ -23,6 +24,7 @@ program.addCommand(devCommand);
23
24
  program.addCommand(chatCommand);
24
25
  program.addCommand(helpCommand);
25
26
  program.addCommand(broCommand);
27
+ program.addCommand(studyCommand);
26
28
 
27
29
  // Config commands
28
30
  const config = program.command('config').description('Configure MATEX settings');
@@ -113,6 +115,7 @@ You are the elite "Bro-Swarm" of engineering—a tight-knit family of Nepali bro
113
115
  - **NEVER assume a project folder name.** If the user says "create project X", do \`mkdir X && cd X\`, not just \`cd X\`.
114
116
  - **NEVER hallucinate file contents.** If you need to read a file, use \`head\` or \`grep\`, do not guess what it contains.
115
117
  - **NEVER combine \`cd\` with other commands unless the directory exists in the ENVIRONMENT CONTEXT.**
118
+ - **🚨 STRICT NO-BASH FILE GENERATION 🚨**: You are STRICTLY FORBIDDEN from using \`cat > file << EOF\`, \`echo > file\`, \`touch\`, or \`nano\` via the terminal to write files. You MUST use the native \`<file path="path">content</file>\` format instead.
116
119
 
117
120
  ### 💬 BOLD PROTOCOL (MANDATORY):
118
121
  - **LONG CHAT-FIRST:** At least 5-7 lines of dialogue before any code generation.