wopee-mcp 1.26.0 → 1.26.2
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.
|
@@ -132,7 +132,7 @@ export const GenerateGeneralUserStories = `
|
|
|
132
132
|
`;
|
|
133
133
|
export const GenerateUserStoriesWithTestCases = `
|
|
134
134
|
mutation GenerateUserStoriesWithTestCases($input: GenerateAIDataInput!) {
|
|
135
|
-
|
|
135
|
+
generateUserStoriesWithTestCases(input: $input)
|
|
136
136
|
}
|
|
137
137
|
`;
|
|
138
138
|
export const GenerateTestCases = `
|
|
@@ -5,7 +5,7 @@ export const wopeeUpdateArtifact = {
|
|
|
5
5
|
name: ToolName.WOPEE_UPDATE_ARTIFACT,
|
|
6
6
|
config: {
|
|
7
7
|
title: "Update test artifacts",
|
|
8
|
-
description: "
|
|
8
|
+
description: "Create or overwrite a test artifact in a suite with caller-supplied content. The full content is replaced, not patched. Use this to upload your own APP_CONTEXT (e.g. built from JIRA / Confluence), user stories, project context, or Playwright code, or to fix / refine an artifact previously authored by wopee_generate_artifact. Works on any suite, including freshly-created blank suites with no prior generation — the artifact does not need to exist beforehand. Use wopee_generate_artifact instead when you want the Wopee.io AI engine to author the content from scratch. On success, returns confirmation. On failure (e.g. invalid suite UUID, storage misconfiguration), returns an error message. Idempotent: calling with the same content multiple times produces the same result.",
|
|
9
9
|
inputSchema: UpdateArtifactHandlerInputSchema.shape,
|
|
10
10
|
},
|
|
11
11
|
handler: async (input) => await updateArtifact(input),
|
package/package.json
CHANGED