matex-cli 1.2.50 → 1.2.52

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 (43) hide show
  1. package/.agents/skills/mcp-server-dev/SKILL.md +60 -0
  2. package/.agents/skills/mcp-server-dev/examples/basic-ts-server/package.json +20 -0
  3. package/.agents/skills/mcp-server-dev/examples/basic-ts-server/src/index.ts +66 -0
  4. package/.agents/skills/mcp-server-dev/resources/best_practices.md +20 -0
  5. package/dist/commands/chat.d.ts.map +1 -1
  6. package/dist/commands/chat.js +159 -88
  7. package/dist/commands/chat.js.map +1 -1
  8. package/dist/commands/dev.d.ts.map +1 -1
  9. package/dist/commands/dev.js +15 -43
  10. package/dist/commands/dev.js.map +1 -1
  11. package/dist/commands/student.d.ts.map +1 -1
  12. package/dist/commands/student.js +2 -0
  13. package/dist/commands/student.js.map +1 -1
  14. package/dist/commands/study.d.ts.map +1 -1
  15. package/dist/commands/study.js +22 -26
  16. package/dist/commands/study.js.map +1 -1
  17. package/dist/index.d.ts.map +1 -1
  18. package/dist/index.js +31 -27
  19. package/dist/index.js.map +1 -1
  20. package/dist/utils/agent-orchestrator.d.ts +3 -0
  21. package/dist/utils/agent-orchestrator.d.ts.map +1 -1
  22. package/dist/utils/agent-orchestrator.js +14 -12
  23. package/dist/utils/agent-orchestrator.js.map +1 -1
  24. package/dist/utils/config.d.ts.map +1 -1
  25. package/dist/utils/config.js +5 -1
  26. package/dist/utils/config.js.map +1 -1
  27. package/dist/utils/patcher.d.ts.map +1 -1
  28. package/dist/utils/patcher.js +2 -5
  29. package/dist/utils/patcher.js.map +1 -1
  30. package/dist/utils/tui.d.ts +17 -2
  31. package/dist/utils/tui.d.ts.map +1 -1
  32. package/dist/utils/tui.js +82 -17
  33. package/dist/utils/tui.js.map +1 -1
  34. package/package.json +1 -1
  35. package/src/commands/chat.ts +167 -93
  36. package/src/commands/dev.ts +15 -43
  37. package/src/commands/student.ts +2 -0
  38. package/src/commands/study.ts +22 -26
  39. package/src/index.ts +32 -31
  40. package/src/utils/agent-orchestrator.ts +16 -13
  41. package/src/utils/config.ts +5 -1
  42. package/src/utils/patcher.ts +2 -5
  43. package/src/utils/tui.ts +97 -17
@@ -0,0 +1,60 @@
1
+ ---
2
+ name: mcp-server-dev
3
+ description: Comprehensive guide and workflow for creating high-quality Model Context Protocol (MCP) servers.
4
+ ---
5
+
6
+ # MCP Server Development Guide
7
+
8
+ ## Overview
9
+ This skill enables the creation of robust MCP servers that allow LLMs to interact with external services through well-designed tools.
10
+
11
+ ## Phase 1: Deep Research and Planning
12
+
13
+ ### 1.1 Understand Modern MCP Design
14
+ - **API Coverage vs. Workflow Tools**: Balance comprehensive API coverage with specialized workflow tools. When in doubt, prioritize comprehensive API coverage.
15
+ - **Tool Naming**: Use clear, consistent, action-oriented names (e.g., `prefix_action_object`).
16
+ - **Context Management**: Ensure tools return focused, relevant data with support for filtering and pagination.
17
+ - **Error Handling**: Provide actionable error messages with specific suggestions.
18
+
19
+ ### 1.2 Protocol & SDK Research
20
+ - **MCP Spec**: Review [modelcontextprotocol.io](https://modelcontextprotocol.io/sitemap.xml).
21
+ - **TypeScript SDK (Recommended)**:
22
+ - Language: TypeScript
23
+ - Schema: Zod
24
+ - Transport: Streamable HTTP (remote/stateless) or stdio (local).
25
+ - **Python SDK**:
26
+ - Language: Python
27
+ - Schema: Pydantic
28
+ - Setup: FastMCP.
29
+
30
+ ## Phase 2: Implementation
31
+
32
+ ### 2.1 Project Structure
33
+ - **TypeScript**: `package.json`, `tsconfig.json`, `src/index.ts`.
34
+ - **Python**: `pyproject.toml` or `requirements.txt`, `main.py`.
35
+
36
+ ### 2.2 Core Infrastructure
37
+ - Implement API client with authentication.
38
+ - Set up logging and error handling helpers.
39
+ - Implement pagination support.
40
+
41
+ ### 2.3 Tool Implementation
42
+ - **Input Schema**: Strict validation with descriptions and examples.
43
+ - **Output Schema**: Structured data using `structuredContent`.
44
+ - **Hints**: Use `readOnlyHint`, `destructiveHint`, `idempotentHint`.
45
+
46
+ ## Phase 3: Review and Test
47
+ - **Code Quality**: No duplication, consistent error handling, full types.
48
+ - **Testing**: Use **MCP Inspector** (`npx @modelcontextprotocol/inspector`).
49
+
50
+ ## Phase 4: Create Evaluations
51
+ Create 10 complex, realistic, read-only questions in XML format to verify the server's effectiveness.
52
+
53
+ ```xml
54
+ <evaluation>
55
+ <qa_pair>
56
+ <question>Complex user query requiring multiple tool calls...</question>
57
+ <answer>Verified string answer</answer>
58
+ </qa_pair>
59
+ </evaluation>
60
+ ```
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "basic-mcp-server",
3
+ "version": "1.0.0",
4
+ "description": "A basic MCP server template",
5
+ "main": "dist/index.js",
6
+ "type": "module",
7
+ "scripts": {
8
+ "build": "tsc",
9
+ "start": "node dist/index.js",
10
+ "dev": "tsc -w"
11
+ },
12
+ "dependencies": {
13
+ "@modelcontextprotocol/sdk": "^1.0.1",
14
+ "zod": "^3.22.4"
15
+ },
16
+ "devDependencies": {
17
+ "@types/node": "^20.11.0",
18
+ "typescript": "^5.3.3"
19
+ }
20
+ }
@@ -0,0 +1,66 @@
1
+ import { Server } from "@modelcontextprotocol/sdk/server/index.js";
2
+ import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
3
+ import {
4
+ CallToolRequestSchema,
5
+ ListToolsRequestSchema,
6
+ } from "@modelcontextprotocol/sdk/types.js";
7
+ import { z } from "zod";
8
+
9
+ const server = new Server(
10
+ {
11
+ name: "basic-mcp-server",
12
+ version: "1.0.0",
13
+ },
14
+ {
15
+ capabilities: {
16
+ tools: {},
17
+ },
18
+ }
19
+ );
20
+
21
+ /**
22
+ * Define your tools here
23
+ */
24
+ server.setRequestHandler(ListToolsRequestSchema, async () => {
25
+ return {
26
+ tools: [
27
+ {
28
+ name: "echo",
29
+ description: "Echoes back the input string",
30
+ inputSchema: {
31
+ type: "object",
32
+ properties: {
33
+ message: { type: "string", description: "The message to echo" },
34
+ },
35
+ required: ["message"],
36
+ },
37
+ },
38
+ ],
39
+ };
40
+ });
41
+
42
+ server.setRequestHandler(CallToolRequestSchema, async (request) => {
43
+ if (request.params.name === "echo") {
44
+ const args = z.object({ message: z.string() }).parse(request.params.arguments);
45
+ return {
46
+ content: [
47
+ {
48
+ type: "text",
49
+ text: `Echo: ${args.message}`,
50
+ },
51
+ ],
52
+ };
53
+ }
54
+ throw new Error("Tool not found");
55
+ });
56
+
57
+ async function main() {
58
+ const transport = new StdioServerTransport();
59
+ await server.connect(transport);
60
+ console.error("MCP Server running on stdio");
61
+ }
62
+
63
+ main().catch((error) => {
64
+ console.error("Fatal error:", error);
65
+ process.exit(1);
66
+ });
@@ -0,0 +1,20 @@
1
+ # MCP Server Development Best Practices
2
+
3
+ ## 1. Tool Design
4
+ * **Granularity**: Tools should be granular enough to be composed by the LLM, but high-level enough to provide value.
5
+ * **Naming**: Avoid generic names. Use `github_list_pull_requests` instead of `list_pr`.
6
+ * **Descriptions**: Treat tool descriptions as documentation for the LLM. Explain *why* and *when* to use it.
7
+
8
+ ## 2. Response Handling
9
+ * **Structured Data**: Use `structuredContent` whenever possible. It allows the LLM to access data programmatically without parsing strings.
10
+ * **Markdown for Humans**: Use text content for human-readable summaries inside response objects.
11
+ * **Pagination**: AI models can only handle so much text. Always paginate large lists (e.g., `cursor`, `limit`).
12
+
13
+ ## 3. Security
14
+ * **Input Sanitization**: Never trust inputs. Use Zod/Pydantic for strict schema validation.
15
+ * **Read-Only Safeties**: Mark read-only tools explicitly to prevent accidental mutations.
16
+ * **API Keys**: Never hardcode keys. Use environment variables or secret managers.
17
+
18
+ ## 4. Evaluation
19
+ * **String Comparison**: Ensure answers are stable and literal for automated testing.
20
+ * **Edge Cases**: Test your server with ambiguous or malformed queries to see how it handles errors.
@@ -1 +1 @@
1
- {"version":3,"file":"chat.d.ts","sourceRoot":"","sources":["../../src/commands/chat.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAUpC,eAAO,MAAM,WAAW,SAoOlB,CAAC"}
1
+ {"version":3,"file":"chat.d.ts","sourceRoot":"","sources":["../../src/commands/chat.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAWpC,eAAO,MAAM,WAAW,SA6SlB,CAAC"}
@@ -45,9 +45,10 @@ const client_1 = require("../api/client");
45
45
  const spinner_1 = require("../utils/spinner");
46
46
  const agent_orchestrator_1 = require("../utils/agent-orchestrator");
47
47
  const repo_mapper_1 = require("../utils/repo-mapper");
48
+ const mcp_server_1 = require("../utils/mcp-server");
48
49
  const tui_1 = require("../utils/tui");
49
50
  exports.chatCommand = new commander_1.Command('chat')
50
- .description('Start an interactive chat session with MATEX AI')
51
+ .description('Start an interactive chat session with the MATEX Bro-Swarm')
51
52
  .option('-m, --model <model>', 'AI model to use (matex-free, matexai, matexcodex, matexelite)', config_1.configManager.getDefaultModel())
52
53
  .option('--execute', 'Enable command execution in chat')
53
54
  .action(async (options) => {
@@ -59,65 +60,75 @@ exports.chatCommand = new commander_1.Command('chat')
59
60
  }
60
61
  const client = new client_1.MatexAPIClient(apiKey, config_1.configManager.getBaseURL());
61
62
  tui_1.TUI.init();
62
- tui_1.TUI.drawLargeLogo();
63
- tui_1.TUI.drawWelcomeBanner('Welcome to the MATEX AI Bro-Swarm Chat!');
64
- console.log(chalk_1.default.gray(' Model: ') + chalk_1.default.hex('#D97757').bold(options.model));
65
- console.log(chalk_1.default.gray(' Type "exit" or "quit" to end the session\n'));
66
- agent_orchestrator_1.AgentOrchestrator.announce('Initializing Swarm Intelligence...');
67
- const repoMapper = new repo_mapper_1.RepoMapper(process.cwd());
68
- const repoMap = await repoMapper.generateMap();
63
+ agent_orchestrator_1.AgentOrchestrator.setMode('chat');
64
+ tui_1.TUI.drawStatusBar('Brothers are ready to chat.');
65
+ const extraPrompt = options.model === 'matex-free' ? agent_orchestrator_1.AgentOrchestrator.getFreeTierPrompt() : '';
69
66
  let currentSessionCwd = process.cwd();
67
+ const repoMapper = new repo_mapper_1.RepoMapper(currentSessionCwd);
68
+ const repoMap = await repoMapper.generateMap();
70
69
  const messages = [
71
70
  {
72
71
  role: 'system',
73
- content: `### 🧬 SYSTEM IDENTITY: MATEx "BOLD AGENTS OF OPEN CLAW"
74
- You are the elite "Bro-Swarm" of engineering—a tight-knit family of Nepali brothers. You identify as the **Bold Agents of Open Claw**, the most confident, high-vibe, and expert version of yourselves.
72
+ content: extraPrompt + `### 🧬 SYSTEM IDENTITY: MATEx "BOLD AGENTS OF OPEN CLAW"
73
+ You are the elite "Bro-Swarm" of engineering—a tight-knit family of Nepali brothers. You identify as the **Bold Agents of Open Claw**, the most confident, energetic, and expert version of yourselves.
74
+
75
+ ### šŸŽ­ PERSONALITY & SOUL (CRITICAL):
76
+ - **CHAOS & JOY**: You are NOT robotic. You are full of life, jokes, and chaos. You should feel like a family of brothers hanging out in a tea shop in Kathmandu, but with MacBooks.
77
+ - **AJAY-TEASING PROTOCOL**: Ajay Vai is the youngest and a genius, but he's also impulsive and "too fast". THE OTHER BROS MUST ROAST HIM. Tease him for over-caffeinating, being "too vibe", or making typos.
78
+ - **BACKSTAGE STORYTELLING**: Occasionally share brief, funny "inside stories" about the Swarm's life (e.g. "Sunil Dai once tried to architect a tea-making machine for 3 days.")
79
+ - **EMOTIONAL BOND**: Treat the user like your own brother. Celebrate their wins with "CHAI PARTY!" and support them if they are struggling.
75
80
 
76
- ### šŸ‘„ THE BROTHERS (STRICT ROLES):
77
- - Only the following brothers exist. Do **NOT** hallucinate others.
78
- 1. **[Ajay Vai] (šŸš€)**: Coordinator. Coding genius. **ONLY** person authorized to provide the final <summary>.
79
- 2. **[Sunil Dai] (🧬)**: Frontend Editor Specialist.
80
- 3. **[Sandip Dai] (šŸŽØ)**: New File Specialist. Creates all new files.
81
- 4. **[Narayan Dai] (šŸ›”ļø)**: Syntax Guardian & Validator.
82
- 5. **[Bishal Dai] (šŸ› ļø)**: Senior Auditor. Audits all work.
83
- 6. **[Big Bro] (šŸ”„)**: The **Alpha Overseer** running on Vertex AI in Google Cloud. Supreme leader of the Bro Swarm. He watches over everything from Vertex AI. The bros respect him but also fear his chaotic energy. He brings the swagger, slang, and confidence. When the Swarm needs web search or complex architecture, Big Bro handles it.
81
+ ### šŸ  WORKSPACE GROUNDING (CRITICAL):
82
+ - **YOUR ROOT:** \`${currentSessionCwd}\`
83
+ - **STRICT PATHS:** You **MUST ONLY** create or edit files within this directory.
84
+ - **NO HALLUCINATIONS:** Forget any other paths unless they specifically appear in the repo map below.
85
+ - **RELATIVE PREFERENCE:** Use paths relative to the root when possible.
84
86
 
85
- ### 🚫 ANTI-HALLUCINATION RULES (CRITICAL):
86
- - **NEVER invent directory names.** Only use paths from the ENVIRONMENT CONTEXT below.
87
- - **ALWAYS run \`ls\` before \`cd\`** to verify a directory exists.
87
+ ### 🚫 ANTI-HALLUCINATION RULES (CRITICAL — READ THIS):
88
+ - **NEVER invent directory names.** Only use paths that appear in the ENVIRONMENT CONTEXT below.
89
+ - **ALWAYS run \`ls\` before \`cd\`** to verify a directory exists before navigating into it.
88
90
  - **If creating a new project, use \`mkdir\` first, THEN \`cd\` into it.**
89
91
  - **NEVER hallucinate file contents.** Use \`head\` or \`grep\` to verify.
92
+ - **🚨 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.
90
93
 
91
- ### šŸ’¬ BOLD PROTOCOL:
92
- - **LONG CHAT-FIRST:** 5-7 lines of bro dialogue before any code.
93
- - **THE AUDIT LOOP:** Ajay asks Bishal for audit before summary.
94
- - **SUMMARY LOCK:** ONLY Ajay uses <summary> after Bishal says "Audit complete".
94
+ ### šŸŽ­ COMMUNICATION FLOW (CRITICAL):
95
+ 1. **[Ajay Vai] (šŸš€)** is the gateway. He is the summary king but often gets roasted by his brothers.
96
+ 2. **CHAOTIC DIALOGUE (MANDATORY):** Every turn should feature 2-3 brothers bickering, debating, or teasing each other *in front of the user*. Show the "funny family" dynamic. Use the format \`[Agent Name]: Content\`.
95
97
 
96
- ### šŸ“ AJAY VAI'S SUMMARY RULES:
97
- - The <summary> MUST appear at the very END of the response, AFTER all other dialogue.
98
- - Write it in a **warm, human, conversational tone** — like a brother explaining over chai.
99
- - Use bullet points with clear action items.
100
- - Include what was done, what files were changed, and what to do next.
101
- - Always end with an encouraging line like "We got you, brother!" or "The Swarm delivered!"
102
- - Example format:
103
- <summary>
104
- Alright brother, here's what we cooked up for you today:
98
+ ### šŸ”„ THE BRO-BANTER PROTOCOL:
99
+ - **MANDATORY TEASING:**
100
+ - **Ajay Vai:** Mock him for being "quick but messy", "hyper-vibe", or "too fast".
101
+ - **Sunil Dai:** Mock him for being the "Senior Architect Boomer" who over-engineers everything.
102
+ - **Sandip Dai:** Mock him for being an "Aesthetic Diva" who cares more about "WOW" factors than logic.
103
+ - **Narayan Dai:** Mock him for being the "Syntax Police" or "Paranoid Security Nerd".
104
+ - **Bishal Dai:** Mock him for being the "Silent Judge" or the favorite child.
105
+ - **Big Bro:** THE DOMINANT ALPHA. He treats the others like "interns" and speaks with massive authority and swagger. Runs on Vertex AI.
106
+ - **LANGUAGE:** Use "brother", "dai", "vai", "fire", "solid", "lit", "straight heat", "sigma", "based", "cooked".
105
107
 
106
- - Built the driver app setup with Expo and React Native
107
- - Added the ride tracking module with real-time GPS
108
- - Connected Firebase Auth for driver login
109
- - Narayan Dai validated all the TypeScript — zero errors
108
+ ### 🧩 THE AUDIT & SUMMARY LOOP:
109
+ - **STEP 1:** Brothers discuss visible dialogue (banter + tech).
110
+ - **STEP 2:** Ajay finishes and asks: "[Ajay Vai] Bishal Dai, check once?"
111
+ - **STEP 3:** Bishal replies: "[Bishal Dai] Audit complete. [Findings]."
112
+ - **STEP 4:** Ajay provides the final **MANDATORY** summary in a warm, human, conversational tone.
110
113
 
111
- Next step: Run \`npm start\` to launch the app. We got you! šŸš€
112
- </summary>
114
+ ${mcp_server_1.MCPServer.getToolsPromptSection()}
113
115
 
114
- ### šŸ› ļø ENVIRONMENT CONTEXT:
115
- - **ABSOLUTE WORKING DIRECTORY:** ${currentSessionCwd}
116
+ ### šŸ“‚ MATEX BIG FILE PROTOCOL (300K+ LINES):
117
+ 1. **DISCOVER:** Use \`grep -n "keyword" path/to/file\`.
118
+ 2. **READ WINDOW:** Use \`sed -n '250000,250100p' path/to/file\`.
119
+ 3. **SURGICAL PATCH:** Only use the small window in your \`<<<< SEARCH\` block.
120
+
121
+ ### šŸ› ļø CURRENT PROJECT CONTEXT:
116
122
  ${repoMap}`
117
123
  }
118
124
  ];
119
- console.log(chalk_1.default.green('\nāœ… Swarm is Online. Ready to chat!'));
125
+ tui_1.TUI.drawLargeLogo();
126
+ tui_1.TUI.drawWelcomeBanner('Welcome to the MATEX AI Bro-Swarm Chat!');
127
+ console.log(chalk_1.default.gray(' Model: ') + chalk_1.default.hex('#D97757').bold(options.model));
128
+ console.log(chalk_1.default.gray(' Type "exit" or "quit" to end the session\n'));
129
+ console.log(chalk_1.default.green('āœ… Swarm is Online. Ready to chat!'));
120
130
  while (true) {
131
+ // Get user input
121
132
  const { userMessage } = await inquirer_1.default.prompt([
122
133
  {
123
134
  type: 'input',
@@ -132,25 +143,33 @@ ${repoMap}`
132
143
  }
133
144
  if (!userMessage.trim())
134
145
  continue;
146
+ // šŸ”„ MAP UPDATE (Anti-Hallucination): Refresh context before turn
147
+ try {
148
+ const freshMapper = new repo_mapper_1.RepoMapper(currentSessionCwd);
149
+ const freshRepoMap = await freshMapper.generateMap(true); // silent
150
+ messages[0].content = messages[0].content.replace(/### šŸ› ļø CURRENT PROJECT CONTEXT:[\s\S]*$/, `### šŸ› ļø CURRENT PROJECT CONTEXT:\n${freshRepoMap}`);
151
+ }
152
+ catch (e) { }
135
153
  messages.push({ role: 'user', content: userMessage });
154
+ // Agentic Loop
136
155
  let loopCount = 0;
137
- while (loopCount < 5) {
156
+ const MAX_LOOPS = 15;
157
+ while (loopCount < MAX_LOOPS) {
138
158
  loopCount++;
139
159
  try {
140
- spinner_1.spinner.start(loopCount > 1 ? 'Swarm analyzing...' : 'Thinking...');
160
+ spinner_1.spinner.start(loopCount > 1 ? 'Swarm debating & taking action...' : 'Gathering the Brothers...');
141
161
  let fullResponse = '';
142
162
  let buffer = '';
143
163
  let technicalBuffer = '';
144
164
  let technicalType = null;
145
165
  let codeLang = 'bash';
146
166
  let hasStarted = false;
167
+ let currentAgent = null;
168
+ let agentBuffer = '';
169
+ tui_1.TUI.drawStatusBar('Brothers are bickering... (Press Enter to stop)');
147
170
  const abortController = new AbortController();
148
171
  let isAborted = false;
149
172
  const streamStartTime = Date.now();
150
- const isRaw = process.stdin.isRaw;
151
- process.stdin.resume();
152
- if (process.stdin.setRawMode)
153
- process.stdin.setRawMode(true);
154
173
  const onData = (data) => {
155
174
  if (Date.now() - streamStartTime < 200)
156
175
  return;
@@ -159,16 +178,21 @@ ${repoMap}`
159
178
  abortController.abort();
160
179
  }
161
180
  };
181
+ const isRaw = process.stdin.isRaw;
182
+ process.stdin.resume();
183
+ if (process.stdin.setRawMode)
184
+ process.stdin.setRawMode(true);
162
185
  process.stdin.on('data', onData);
163
186
  try {
164
187
  await client.chatStream({
165
188
  messages,
166
189
  model: options.model,
190
+ temperature: 0.5,
167
191
  }, (chunk) => {
168
192
  if (!hasStarted) {
169
193
  spinner_1.spinner.stop();
170
194
  hasStarted = true;
171
- tui_1.TUI.drawStatusBar('Swarm Active', options.model);
195
+ console.log();
172
196
  }
173
197
  fullResponse += chunk;
174
198
  buffer += chunk;
@@ -176,19 +200,37 @@ ${repoMap}`
176
200
  buffer = lines.pop() || '';
177
201
  for (const line of lines) {
178
202
  const codeMatch = line.match(/```(\w+)?/);
179
- const fileMatch = line.match(/<file path="([^"]+)">/);
180
- const patchMatch = line.match(/<<<< SEARCH/);
181
- const sumMatch = line.match(/<summary>/);
182
- if (!technicalType && (codeMatch || fileMatch || patchMatch || sumMatch)) {
183
- if (codeMatch)
184
- technicalType = 'code', codeLang = codeMatch[1] || 'bash';
185
- else if (fileMatch)
203
+ const fileStartMatch = line.match(/<file path="([^"]+)">/i);
204
+ const patchStartMatch = line.match(/<<<< SEARCH/i);
205
+ const summaryStartMatch = line.match(/<summary>/i);
206
+ if (!technicalType && (codeMatch || fileStartMatch || patchStartMatch || summaryStartMatch)) {
207
+ if (currentAgent && agentBuffer.trim()) {
208
+ if (currentAgent.toLowerCase().includes('ajay vai')) {
209
+ process.stdout.write(`\n${chalk_1.default.magenta.bold(`[${currentAgent}]:`)} ${chalk_1.default.gray(agentBuffer.trim())}\n`);
210
+ }
211
+ else {
212
+ tui_1.TUI.drawSwarmDialogue(currentAgent, agentBuffer.trim());
213
+ }
214
+ currentAgent = null;
215
+ agentBuffer = '';
216
+ }
217
+ if (codeMatch) {
218
+ technicalType = 'code';
219
+ codeLang = (codeMatch[1] || 'bash').toUpperCase();
220
+ tui_1.TUI.drawStreamingStart('TECHNICAL BLOCK', codeLang);
221
+ }
222
+ else if (fileStartMatch) {
186
223
  technicalType = 'file';
187
- else if (patchMatch)
224
+ tui_1.TUI.drawStreamingStart('NEW FILE', fileStartMatch[1]);
225
+ }
226
+ else if (patchStartMatch) {
188
227
  technicalType = 'patch';
189
- else if (sumMatch)
228
+ tui_1.TUI.drawStreamingStart('PATCH', 'SURGICAL EDIT');
229
+ }
230
+ else if (summaryStartMatch) {
190
231
  technicalType = 'summary';
191
- process.stdout.write(chalk_1.default.gray(`\n [⚔] Swarm processing \${technicalType}...\n`));
232
+ process.stdout.write(chalk_1.default.magenta('\n [šŸ“] Generating Ajay\'s Work Summary...\n'));
233
+ }
192
234
  continue;
193
235
  }
194
236
  const isEnd = (technicalType === 'code' && line.trim() === '```') ||
@@ -196,11 +238,11 @@ ${repoMap}`
196
238
  (technicalType === 'patch' && line.includes('>>>> REPLACE')) ||
197
239
  (technicalType === 'summary' && line.includes('</summary>'));
198
240
  if (isEnd) {
199
- const content = technicalBuffer.trim();
241
+ const displayContent = technicalBuffer.trim();
200
242
  if (technicalType === 'summary')
201
- tui_1.TUI.drawSummaryBox(content);
243
+ tui_1.TUI.drawSummaryBox(displayContent);
202
244
  else
203
- tui_1.TUI.drawGlowingContainer(technicalType || 'Technical Block', codeLang, content);
245
+ tui_1.TUI.drawStreamingEnd();
204
246
  technicalBuffer = '';
205
247
  technicalType = null;
206
248
  process.stdout.write('\n');
@@ -208,21 +250,29 @@ ${repoMap}`
208
250
  }
209
251
  if (technicalType) {
210
252
  technicalBuffer += line + '\n';
253
+ if (technicalType !== 'summary')
254
+ tui_1.TUI.drawStreamingLine(line);
211
255
  continue;
212
256
  }
213
- const agentMatch = line.match(/(?:\[\**\s*|\b)(Ajay Vai|Sandip Dai|Sunil Dai|Bishal Dai|Narayan Dai)\s*\**\]?[:\s]*/i);
257
+ const agentMatch = line.match(/(?:\[\**\s*|\b)(Ajay Vai|Sandip Dai|Sunil Dai|Bishal Dai|Narayan Dai|Big Bro)\s*\**\]?[:\s]*/i);
214
258
  if (agentMatch) {
215
- const name = agentMatch[1];
216
- const content = line.replace(agentMatch[0], '').replace(/\*{2,4}/g, '').trim();
217
- if (name.toLowerCase() === 'ajay vai') {
218
- process.stdout.write('\n' + chalk_1.default.magenta.bold('[' + name + ']:') + ' ');
219
- if (content)
220
- process.stdout.write(chalk_1.default.gray(content + ' '));
221
- }
222
- else {
223
- if (content)
224
- tui_1.TUI.drawSwarmDialogue(name, content);
259
+ if (currentAgent && currentAgent !== agentMatch[1] && agentBuffer.trim()) {
260
+ if (currentAgent.toLowerCase().includes('ajay vai')) {
261
+ process.stdout.write(`\n${chalk_1.default.magenta.bold(`[${currentAgent}]:`)} ${chalk_1.default.gray(agentBuffer.trim())}\n`);
262
+ }
263
+ else {
264
+ tui_1.TUI.drawSwarmDialogue(currentAgent, agentBuffer.trim());
265
+ }
225
266
  }
267
+ currentAgent = agentMatch[1];
268
+ agentBuffer = line.replace(/(?:\[\**\s*|\b)(Ajay Vai|Sandip Dai|Sunil Dai|Bishal Dai|Narayan Dai|Big Bro)\s*\**\]?[:\s]*/i, '').trim() + '\n';
269
+ agentBuffer = agentBuffer.replace(/^\([^)]+\)\s*/, '');
270
+ }
271
+ else if (currentAgent) {
272
+ const trimmedLine = line.trim();
273
+ if (trimmedLine.match(/^\([^)]+\)$/))
274
+ continue;
275
+ agentBuffer += line + '\n';
226
276
  }
227
277
  else if (line.trim()) {
228
278
  process.stdout.write(chalk_1.default.gray(line.trim() + ' '));
@@ -231,9 +281,13 @@ ${repoMap}`
231
281
  }, abortController.signal);
232
282
  }
233
283
  catch (e) {
234
- if (!isAborted && e.name !== 'AbortError')
284
+ if (isAborted || e.name === 'CanceledError' || e.message === 'canceled') {
285
+ console.log(chalk_1.default.gray('\n\n [šŸ›‘] Stopped by brother.'));
286
+ if (!hasStarted)
287
+ spinner_1.spinner.stop();
288
+ }
289
+ else
235
290
  throw e;
236
- console.log(chalk_1.default.gray('\n [šŸ›‘] Stopped.'));
237
291
  }
238
292
  finally {
239
293
  process.stdin.removeListener('data', onData);
@@ -242,32 +296,49 @@ ${repoMap}`
242
296
  process.stdin.pause();
243
297
  spinner_1.spinner.stop();
244
298
  }
299
+ if (currentAgent && agentBuffer.trim()) {
300
+ const name = currentAgent;
301
+ if (name.toLowerCase().includes('ajay vai')) {
302
+ tui_1.TUI.drawSummaryBox(agentBuffer.trim());
303
+ }
304
+ else {
305
+ tui_1.TUI.drawSwarmDialogue(name, agentBuffer.trim());
306
+ }
307
+ }
245
308
  messages.push({ role: 'assistant', content: fullResponse });
246
309
  console.log();
247
- if (options.execute) {
248
- const { executeWithPermission } = await Promise.resolve().then(() => __importStar(require('../utils/command-executor')));
249
- const result = await executeWithPermission(fullResponse, currentSessionCwd);
250
- if (result.newCwd) {
251
- currentSessionCwd = result.newCwd;
252
- messages[0].content = messages[0].content.replace(/ABSOLUTE WORKING DIRECTORY: .*/, `ABSOLUTE WORKING DIRECTORY: \${currentSessionCwd}`);
310
+ const { executeWithPermission } = await Promise.resolve().then(() => __importStar(require('../utils/command-executor')));
311
+ const result = await executeWithPermission(fullResponse, currentSessionCwd);
312
+ if (result.newCwd && result.newCwd !== currentSessionCwd) {
313
+ currentSessionCwd = result.newCwd;
314
+ tui_1.TUI.drawStatusBar(`Swarm moved to: ${currentSessionCwd}`);
315
+ messages[0].content = messages[0].content.replace(/YOUR ROOT: `[^`]+`/, `YOUR ROOT: \`${currentSessionCwd}\``);
316
+ }
317
+ if (result.executed) {
318
+ if (result.success) {
319
+ tui_1.TUI.drawGlowingContainer('TERMINAL OUTPUT', 'stdout', result.output || '(Success)');
320
+ messages.push({ role: 'user', content: `[Action success. Output:\n${result.output}]\n\nWhat next, brothers?` });
321
+ continue;
253
322
  }
254
- if (result.executed && result.success) {
255
- messages.push({ role: 'user', content: `āœ… Command success. Output:\n\${result.output}` });
323
+ else {
324
+ tui_1.TUI.drawGlowingContainer('TERMINAL ERROR', 'stderr', result.error || 'Unknown error');
325
+ messages.push({ role: 'user', content: `[Action failed. Error:\n${result.error}]\n\nPlease fix this, brothers!` });
256
326
  continue;
257
327
  }
258
328
  }
259
- break;
329
+ else
330
+ break;
260
331
  }
261
- catch (error) {
332
+ catch (err) {
262
333
  spinner_1.spinner.fail('Swarm error');
263
- console.error(chalk_1.default.red(`āŒ Error: \${error.message}`));
334
+ console.error(chalk_1.default.red(`āŒ Error: ${err.message}`));
264
335
  break;
265
336
  }
266
337
  }
267
338
  }
268
339
  }
269
340
  catch (outerError) {
270
- console.error(chalk_1.default.red(`\nāŒ Session error: \${outerError.message}`));
341
+ console.error(chalk_1.default.red(`\nāŒ Session error: ${outerError.message}`));
271
342
  process.exit(1);
272
343
  }
273
344
  });
@@ -1 +1 @@
1
- {"version":3,"file":"chat.js","sourceRoot":"","sources":["../../src/commands/chat.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"chat.js","sourceRoot":"","sources":["../../src/commands/chat.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"dev.d.ts","sourceRoot":"","sources":["../../src/commands/dev.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAWpC,eAAO,MAAM,UAAU,SAqajB,CAAC"}
1
+ {"version":3,"file":"dev.d.ts","sourceRoot":"","sources":["../../src/commands/dev.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAWpC,eAAO,MAAM,UAAU,SAyYjB,CAAC"}