qaa-agent 1.6.0 → 1.6.1
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/install.cjs +9 -1
- package/package.json +1 -1
package/bin/install.cjs
CHANGED
|
@@ -143,6 +143,14 @@ async function main() {
|
|
|
143
143
|
copyFile(path.join(ROOT, 'CLAUDE.md'), path.join(qaaDir, 'CLAUDE.md'));
|
|
144
144
|
ok('Installed QA standards (CLAUDE.md)');
|
|
145
145
|
|
|
146
|
+
// Install .mcp.json (Playwright MCP server config)
|
|
147
|
+
const mcpSrc = path.join(ROOT, '.mcp.json');
|
|
148
|
+
if (fs.existsSync(mcpSrc)) {
|
|
149
|
+
const mcpDest = path.join(qaaDir, '.mcp.json');
|
|
150
|
+
copyFile(mcpSrc, mcpDest);
|
|
151
|
+
ok('Installed Playwright MCP server config (.mcp.json)');
|
|
152
|
+
}
|
|
153
|
+
|
|
146
154
|
// Write version
|
|
147
155
|
fs.writeFileSync(path.join(qaaDir, 'VERSION'), VERSION);
|
|
148
156
|
ok(`Wrote VERSION (${VERSION})`);
|
|
@@ -175,7 +183,7 @@ async function main() {
|
|
|
175
183
|
console.log(' Open Claude Code in any project and run:');
|
|
176
184
|
console.log('');
|
|
177
185
|
console.log(' \x1b[1m/qa-start\x1b[0m Full QA pipeline (multi-agent)');
|
|
178
|
-
console.log(' \x1b[1m/qa-
|
|
186
|
+
console.log(' \x1b[1m/qa-map\x1b[0m Codebase map + analysis');
|
|
179
187
|
console.log(' \x1b[1m/create-test\x1b[0m Tests for a feature');
|
|
180
188
|
console.log(' \x1b[1m/qa-from-ticket\x1b[0m Tests from a Jira/Linear ticket');
|
|
181
189
|
console.log(' \x1b[1m/qa-validate\x1b[0m Validate existing tests');
|
package/package.json
CHANGED