@qa-gentic/stlc-agents 1.0.13 → 1.0.15
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/README.md +1 -2
- package/bin/postinstall.js +4 -1
- package/package.json +1 -1
- package/skills/AGENT-BEHAVIOR.md +15 -22
- package/skills/deduplication-protocol/SKILL.md +51 -3
- package/skills/generate-gherkin/SKILL.md +15 -30
- package/skills/generate-gherkin/references/step-by-step.md +2 -6
- package/skills/generate-playwright-code/SKILL.md +19 -122
- package/skills/generate-playwright-code/references/file-structures.md +128 -0
- package/skills/generate-test-cases/SKILL.md +2 -2
- package/skills/write-helix-files/SKILL.md +12 -3
- package/src/stlc_agents/__pycache__/__init__.cpython-310.pyc +0 -0
- package/src/stlc_agents/agent_gherkin_generator/__pycache__/__init__.cpython-310.pyc +0 -0
- package/src/stlc_agents/agent_gherkin_generator/__pycache__/server.cpython-310.pyc +0 -0
- package/src/stlc_agents/agent_gherkin_generator/server.py +14 -62
- package/src/stlc_agents/agent_gherkin_generator/tools/__pycache__/__init__.cpython-310.pyc +0 -0
- package/src/stlc_agents/agent_gherkin_generator/tools/__pycache__/ado_gherkin.cpython-310.pyc +0 -0
- package/src/stlc_agents/agent_gherkin_generator/tools/ado_gherkin.py +5 -126
- package/src/stlc_agents/agent_helix_writer/__pycache__/__init__.cpython-310.pyc +0 -0
- package/src/stlc_agents/agent_helix_writer/__pycache__/server.cpython-310.pyc +0 -0
- package/src/stlc_agents/agent_helix_writer/tools/__pycache__/__init__.cpython-310.pyc +0 -0
- package/src/stlc_agents/agent_helix_writer/tools/__pycache__/boilerplate.cpython-310.pyc +0 -0
- package/src/stlc_agents/agent_helix_writer/tools/__pycache__/helix_write.cpython-310.pyc +0 -0
- package/src/stlc_agents/agent_jira_manager/__pycache__/__init__.cpython-310.pyc +0 -0
- package/src/stlc_agents/agent_jira_manager/__pycache__/server.cpython-310.pyc +0 -0
- package/src/stlc_agents/agent_jira_manager/server.py +0 -32
- package/src/stlc_agents/agent_jira_manager/tools/__pycache__/__init__.cpython-310.pyc +0 -0
- package/src/stlc_agents/agent_jira_manager/tools/__pycache__/jira_workitem.cpython-310.pyc +0 -0
- package/src/stlc_agents/agent_jira_manager/tools/jira_workitem.py +3 -78
- package/src/stlc_agents/agent_playwright_generator/__pycache__/__init__.cpython-310.pyc +0 -0
- package/src/stlc_agents/agent_playwright_generator/__pycache__/server.cpython-310.pyc +0 -0
- package/src/stlc_agents/agent_playwright_generator/server.py +57 -7
- package/src/stlc_agents/agent_playwright_generator/tools/__pycache__/__init__.cpython-310.pyc +0 -0
- package/src/stlc_agents/agent_playwright_generator/tools/__pycache__/ado_attach.cpython-310.pyc +0 -0
- package/src/stlc_agents/agent_test_case_manager/__pycache__/__init__.cpython-310.pyc +0 -0
- package/src/stlc_agents/agent_test_case_manager/__pycache__/server.cpython-310.pyc +0 -0
- package/src/stlc_agents/agent_test_case_manager/server.py +4 -4
- package/src/stlc_agents/agent_test_case_manager/tools/__pycache__/__init__.cpython-310.pyc +0 -0
- package/src/stlc_agents/agent_test_case_manager/tools/__pycache__/ado_workitem.cpython-310.pyc +0 -0
- package/src/stlc_agents/agent_test_case_manager/tools/ado_workitem.py +3 -5
- package/src/stlc_agents/shared/__pycache__/__init__.cpython-310.pyc +0 -0
- package/src/stlc_agents/shared/__pycache__/auth.cpython-310.pyc +0 -0
- package/src/stlc_agents/shared_jira/__pycache__/__init__.cpython-310.pyc +0 -0
- package/src/stlc_agents/shared_jira/__pycache__/auth.cpython-310.pyc +0 -0
|
Binary file
|
|
@@ -324,10 +324,10 @@ async def call_tool(name: str, arguments: dict) -> list[types.TextContent]:
|
|
|
324
324
|
f"Work item {wi_id} is an Epic. "
|
|
325
325
|
"Manual test cases cannot be created or linked to an Epic. "
|
|
326
326
|
"ADO test cases are always scoped to PBIs, Bugs, or Features — "
|
|
327
|
-
"never to Epics. Please
|
|
328
|
-
"
|
|
329
|
-
"
|
|
330
|
-
"
|
|
327
|
+
"never to Epics. Please look up the child Features and "
|
|
328
|
+
"PBIs/Bugs of this Epic in Azure DevOps, then call "
|
|
329
|
+
"create_and_link_test_cases on each individual "
|
|
330
|
+
"Feature or PBI/Bug ID instead."
|
|
331
331
|
),
|
|
332
332
|
}
|
|
333
333
|
return [types.TextContent(type="text", text=json.dumps(result, indent=2, ensure_ascii=False))]
|
|
Binary file
|
package/src/stlc_agents/agent_test_case_manager/tools/__pycache__/ado_workitem.cpython-310.pyc
ADDED
|
Binary file
|
|
@@ -52,11 +52,9 @@ def fetch_work_item(org_url: str, project: str, work_item_id: int) -> dict:
|
|
|
52
52
|
"message": (
|
|
53
53
|
f"Work item {work_item_id} is an Epic. "
|
|
54
54
|
"Manual test cases cannot be created or linked to an Epic. "
|
|
55
|
-
"Test cases in ADO are always scoped to PBIs, Bugs, or Features — "
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"and PBIs/Bugs, then call create_and_link_test_cases on each individual "
|
|
59
|
-
"Feature or PBI/Bug work item ID, not on the Epic itself."
|
|
55
|
+
"Test cases in ADO are always scoped to PBIs, Bugs, or Features — never to Epics. "
|
|
56
|
+
"Look up the child Features of this Epic in Azure DevOps, then call "
|
|
57
|
+
"create_and_link_test_cases on each individual Feature or PBI/Bug work item ID."
|
|
60
58
|
),
|
|
61
59
|
}
|
|
62
60
|
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|