@skyramp/mcp 0.0.26 → 0.0.29

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.
@@ -64,9 +64,15 @@ export function getFixErrorsPrompt() {
64
64
  - Ensure all imported modules are actually available in the project
65
65
  - Confirm that import syntax is correct for the target language
66
66
 
67
+ **CRITICAL CONSTRAINTS:**
68
+ - DO NOT CREATE/UPDATE package.json or requirements.txt or pom.xml or build.gradle file
69
+ - NEVER create dependency management files, even when linting errors suggest missing dependencies
70
+ - Focus on fixing code errors within existing files only
71
+
67
72
  **KEY: Variables not defined within function scope MUST be passed as parameters.**
68
73
  **UI KEY: Helper functions that perform UI operations must be self-contained and not leave modals/dialogs open.**
69
74
  **IMPORT KEY: All imports must be either used in the code or properly removed.**
75
+ **DEPENDENCY KEY: DO NOT create package.json, requirements.txt, or any dependency files regardless of linting errors.**
70
76
  `;
71
77
  }
72
78
  export function getModularizationPromptForUI(filePath, language) {
@@ -28,7 +28,7 @@ export class TestGenerationService {
28
28
  }
29
29
  const result = await this.executeGeneration(generateOptions);
30
30
  const testType = this.getTestType();
31
- const shouldModularize = testType === "ui" || testType === "e2e" || testType === "integration";
31
+ const shouldModularize = testType === "ui" || testType === "e2e";
32
32
  const languageSteps = getLanguageSteps({
33
33
  language: params.language || "",
34
34
  testType: testType,
@@ -5,7 +5,7 @@ import { Writable } from "stream";
5
5
  import { logger } from "../utils/logger.js";
6
6
  import { stripVTControlCharacters } from "util";
7
7
  import fs from "fs";
8
- const EXECUTOR_DOCKER_IMAGE = "skyramp/executor:v1.2.16";
8
+ const EXECUTOR_DOCKER_IMAGE = "skyramp/executor:v1.2.21";
9
9
  const DOCKER_PLATFORM = "linux/amd64";
10
10
  export function registerExecuteSkyrampTestTool(server) {
11
11
  server.registerTool("skyramp_execute_test", {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyramp/mcp",
3
- "version": "0.0.26",
3
+ "version": "0.0.29",
4
4
  "main": "build/index.js",
5
5
  "type": "module",
6
6
  "bin": {
@@ -42,7 +42,8 @@
42
42
  },
43
43
  "dependencies": {
44
44
  "@modelcontextprotocol/sdk": "^1.11.4",
45
- "@skyramp/skyramp": "^1.2.19",
45
+ "@skyramp/skyramp": "^1.2.21",
46
+ "@playwright/test": "^1.55.0",
46
47
  "dockerode": "^4.0.6",
47
48
  "zod": "^3.25.3"
48
49
  },
@@ -58,4 +59,4 @@
58
59
  "engines": {
59
60
  "node": ">=18"
60
61
  }
61
- }
62
+ }