Skip to main content
VirtoCommerce
GitHub クリエイタープロフィール

VirtoCommerce

6 件の GitHub リポジトリにある 68 件の収集済み skills をリポジトリ単位で表示します。

収集済み skills
68
リポジトリ
6
更新
2026-07-23
リポジトリエクスプローラー

リポジトリと代表的な skills

project-init
ソフトウェア開発者

Initialize / onboard this agentic-QA plugin onto a deployment. Installs deps, then asks the operator only what genuinely shapes the config — the environment NAME, the bug tracker (Jira / Azure Boards), the code host (GitHub / Azure Repos), and an auth preference per axis (PAT recommended, else browser/CLI login). Everything else — whether it is a native-platform or a CLIENT project, the client org, the contribution mode, the fork account — is DERIVED from the token + the filled env + a live module/repo scan. Writes project-profile.json + .env.<env> + .env.local + .mcp.json and verifies access. The whole point is to make /qa-fix route each bug to the RIGHT repo (client custom code vs native platform) and file to the RIGHT tracker. Use when standing the plugin up on a new machine or for a new customer.

2026-07-23
project-init
ソフトウェア開発者

Initialize / onboard this agentic-QA plugin onto a deployment. Installs deps, then asks the operator only what genuinely shapes the config — the environment NAME, the bug tracker (Jira / Azure Boards), the code host (GitHub / Azure Repos), and an auth preference per axis (PAT recommended, else browser/CLI login). Everything else — whether it is a native-platform or a CLIENT project, the client org, the contribution mode, the fork account — is DERIVED from the token + the filled env + a live module/repo scan. Writes project-profile.json + .env.<env> + .env.local + .mcp.json and verifies access. The whole point is to make /qa-fix route each bug to the RIGHT repo (client custom code vs native platform) and file to the RIGHT tracker. Use when standing the plugin up on a new machine or for a new customer.

2026-07-23
qa-deploy-pr
ソフトウェア品質保証アナリスト・テスター

[QA Methodology] Gather ALL fresh CI prerelease artifacts for a change (modules + platform + vc-frontend) and deploy them together to the test env (vc-deploy-dev@<TEST_ENV branch>) in ONE manifest update: resolve a tracker ticket's linked PRs across all repos (or an explicit --module/--platform/--theme/--pr set) → each PR's latest vc3prerelease build → minimal-diff repin of backend/packages.json (AzureBlob/BlobName + PlatformVersion) and theme/artifact.json → dry-run combined diff (default) or a gated deploy PR (direct same-repo when the account has write, else a fork PR) → --verify polls the env-branch pin + /api/platform/modules per target. Never merges (a human merges to deploy); writes route through gh's keyring token; prints the web-edit URL when it can't push. Unblocks /qa-test PR#N and /qa-verify-fix.

2026-07-23
qa-review-bl
ソフトウェア品質保証アナリスト・テスター

[QA Method] Triangulate each BL invariant against docs + live + source code, auto-apply confirmed changes to business-logic.md, and reconcile test-case coverage. Delegates the live axis to qa-testing-expert; runs the triangulation via ba-system-analyzer.

2026-07-22
qa-local-env
ネットワーク・コンピュータシステム管理者

Bring up a local Virto Commerce stack (backend + storefront + DB + ES) via start-local, pinned to the ACTUAL deployed package manifest (vc-deploy-dev @ vcptcore-demo); optionally augment it with the module/PR versions a JIRA task needs. Use when asked to spin up / run / provision a local VC environment, reproduce a deployed env locally, or stand up an env to test a specific ticket.

2026-07-22
qa-defect
ソフトウェア品質保証アナリスト・テスター

[QA Method] Defect management lifecycle: JIRA Bug Workflow, triage, classification, report validation, verification protocol, defect metrics.

2026-07-22
qa-hotfix-check
ソフトウェア品質保証アナリスト・テスター

[QA Methodology] DELIVER an already-released hotfix onto the deployed vcptcore-stable + vcptcore-regression environments (bump the module/Platform version in vc-deploy-dev's backend/packages.json, commit "VCST-XXXX: title"), WAIT for the deploy to land (deploy Action green → /api/platform/modules reports the new version), VERIFY the fix works live, comment on the JIRA task, transition the per-env subtasks (Check on regression/stable) + the parent to Done (live transition discovery, never Cancelled), bump the frozen stable + `latest` bundles (auto-detect + ASK), and self-diagnose the run (OK/DEGRADED/BROKEN per stage). Use when asked to 'доставить хотфикс на стенды / проверить хотфикс на средах / раскатить фикс на stable+regression'. Downstream of /qa-hotfix; delivery-only (never cuts a release). Gated writes, never auto-merges.

2026-07-22
qa-hotfix
ソフトウェア品質保証アナリスト・テスター

[QA Methodology] Release a HOTFIX of an already-merged-and-released fix into the bundles that are currently the latest stable releases (ASK which ones — the set changes over time; e.g. at one point v12 & v14). Resolve the JIRA task → its linked PR → fix commit, verify it is MERGED and SHIPPED, check the fix-shape safety gate (single module, no dependency-version bump), then per bundle create the support/<X.Y> branch if missing (gated) and cherry-pick onto it, triggering the repo's 'Release hotfix' workflow. Use when asked to 'выпустить хотфикс для релиза', backport a fix to a stable bundle, or cut a patch on a support line. Gated writes, never auto-merges, STOPs on a fix-shape risk or a cherry-pick conflict.

2026-07-22
このリポジトリの収集済み skills 49 件中、上位 8 件を表示しています。
review-test-code
ソフトウェア品質保証アナリスト・テスター

Review test files for pattern compliance, code quality, correctness, coverage gaps, and best practices — produces actionable feedback

2026-05-28
write-e2e-test
ソフトウェア品質保証アナリスト・テスター

Scaffold E2E UI test files following project patterns — Playwright assertions, Page Objects, Components, markers, fixtures, Allure decorators, BrowserStorage

2026-05-28
write-graphql-test
ソフトウェア品質保証アナリスト・テスター

Scaffold GraphQL API test files following project patterns — markers, fixtures, Allure decorators, Pydantic assertions, try-finally cleanup

2026-05-28
write-rest-api-test
ソフトウェア品質保証アナリスト・テスター

Scaffold REST API test files and factory fixture conftest files — admin auth, RestClient, factory fixtures with auto-teardown, Allure steps, CRUD patterns

2026-05-28
create-ui-layer
ソフトウェア開発者

Create Page Objects (MainLayout/CheckoutLayout subclasses) and UI Components (Component subclasses) with Playwright locators and data-test-id conventions

2026-04-28
create-graphql-layer
ソフトウェア開発者

Create GraphQL Operations classes (BaseOperations subclass with auto-fragment injection) and Pydantic GqlModel types for response/input types

2026-04-28
migrate-katalon-module
ソフトウェア品質保証アナリスト・テスター

Migrate a Katalon REST API test module from vc-quality-gate-katalon into the refactored Pytest project — end-to-end flow from inventory to CI-verified PR

2026-04-28
plan-implementation
プロジェクト管理専門家

Plan file-by-file implementation for test automation tasks — which files to create/modify, in what order, which patterns and existing code to reuse

2026-04-28
このリポジトリの収集済み skills 10 件中、上位 8 件を表示しています。
vc-sql-queries-admin
ソフトウェア開発者

Author and manage reusable reports in the Virto Commerce SQL Queries module via its REST API. Use this skill when the user wants to CREATE, UPDATE, TEST/PREVIEW, search, or DELETE saved SQL query reports — i.e. report authoring and lifecycle management for an administrator. Triggers include: "create a report", "add a SQL query", "edit the report query", "test this query before saving", "add a parameter to the report", "list all reports", "delete a report". Requires sql-queries:create / :update / :delete / :read permissions. Do NOT use this skill for merely running an existing report to get data — that is vc-sql-queries-business. Do NOT use it to design schema-level changes to the platform database.

2026-06-06
vc-sql-queries-business
ソフトウェア開発者

Run existing reports in the Virto Commerce SQL Queries module via its REST API and return or export the results. Use this skill when the user wants to GET DATA from a report that already exists — i.e. find a report, run it with parameter values, read the rows, and optionally export to CSV/XLSX/PDF/HTML. Triggers include: "run the X report", "what does the orders report show for last month", "export the report to Excel", "give me the numbers from <report>", "which reports can I run". Requires sql-queries:access and sql-queries:read. Do NOT use this skill to create, edit, or delete reports or to author SQL — that is vc-sql-queries-admin. This skill never writes SQL; it only runs reports an admin already saved.

2026-06-06
6 件中 6 件のリポジトリを表示
すべてのリポジトリを表示しました