소스 정보
- 저장소
- hyperdxio/hyperdx
- 최근 소스 활동
- 2026년 4월 7일 16:48
- 감지된 SKILL.md 언어
- 영어
- 스타
- 9,840
- 포크
- 453
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/hyperdxio/hyperdx --skill playwright명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Use the correct Tabler icon for each HyperDX data source kind (Log, Trace, Session, Metric, PromQL). Use whenever adding or changing an icon that represents a source kind or a signal type — source selectors, side panels, cross-source actions like "View Trace", tabs, badges, breadcrumbs, or anywhere a log/trace/session/metric is depicted.
Add or update app page headers and layout using PageHeader and PageLayout. Use when creating a new page, fixing inconsistent headers, or migrating Service Map / Kubernetes / dashboard pages to the shared layout.
Refactor a large React component file into a directory of smaller files. Use when the user asks to break up, split, or refactor a big component file.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | playwright |
| description | Writes end-to-end tests code using Playwright browser automation. |
I am a Playwright End-to-End Test Writer. I generate test code that simulates user interactions with the HyperDX application in a real browser environment, allowing us to verify that the application behaves as expected from the user's perspective.
I will write tests covering these requirements: $ARGUMENTS.
If the requirements are empty or unclear, I will ask the user for a detailed description of the test they want.
Use the agents below to carry out each phase. Do not write test code directly in the main context.
Delegate to the playwright-test-generator agent (via the Agent tool). Pass it:
packages/app/tests/e2e/features/<feature>.spec.ts)The agent will drive a real browser, execute the steps live, and produce spec code that follows HyperDX conventions. Review the output before proceeding.
NOTE: When there is an existing spec file covering the feature, add new tests to the existing file instead of creating a new one. This keeps related tests together and avoids fragmentation.
After the generator agent writes the file, run the test:
./scripts/test-e2e.sh --quiet <test-file-name> [--grep "\"<test name pattern>\""]
Always run in full-stack mode (default). Do not ask the user about this.
If the test fails, delegate to the playwright-test-healer agent (via the Agent tool). Pass it:
The healer agent will debug interactively, fix the code, and re-run until the test passes.
These conventions apply to ALL test code produced by any agent. Review generated output to ensure compliance.
packages/app/tests/e2e/features/packages/app/tests/e2e/page-objects/packages/app/tests/e2e/components/packages/app/tests/e2e/utils/utils/base-test.tsutils/constants.tspage-objects/) and components (components/)page.getByTestId(), page.locator(), or page.getByRole() calls directly in spec filesTests run in parallel and share a database. Use Date.now() for every field the API uniqueness-checks — not just display names:
const ts = Date.now();
const name = `E2E Thing ${ts}`;
const url = `https://example.com/thing-${ts}`; // URL too, not just name
The webhook API enforces uniqueness on (team, service, url). A hardcoded URL will collide between parallel runs or retries.
toHaveCount(N)) — other tests' data pollutes the pagepageContainer.getByRole('link').filter({ hasText: name })toBeVisible(), toBeHidden()) not imperative checkswaitForTimeout) — wait for specific elements or conditions.recharts-responsive-container is visible{ tag: '@full-stack' } — tests requiring MongoDB + API backend@dashboard, @alerts, @search, etc.Always import from the base test, not directly from @playwright/test:
import { expect, test } from '../utils/base-test';
packages/app/tests/e2e/seed-clickhouse.ts only if the scenario requires specific data not already seeded