소스 정보
- 저장소
- JetBrains/ij-perf-report-aggregator
- 최근 소스 활동
- 2026년 7월 20일 14:59
- 감지된 SKILL.md 언어
- 영어
- 스타
- 24
- 포크
- 18
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/JetBrains/ij-perf-report-aggregator --skill add-dashboard-page명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Evaluate and ship a ClickHouse version update — restore-compat check, dashboard-query benchmark against prod version, evaluation record, prod rollout
Add a new top-level dashboard category with database mapping, tests page, and empty dashboard
SOC 직업 분류 기준
SKILL.md 표시 중
| name | add-dashboard-page |
| description | Add a new page (tab) to an existing dashboard category |
Add a new page to the existing $0 category. Page type: $1. Label: $2.
All changes go in dashboard/new-dashboard/src/routes.ts and optionally a new Vue component.
In the ROUTES enum, add a new entry using the category's ROUTE_PREFIX:
MyCategoryNewPage = `${ROUTE_PREFIX.MyCategory}/newPage`,
Find the existing Product const for the category and add a tab(url, label) entry to its tabs array:
tab(ROUTES.MyCategoryNewPage, "New Page"),
Use existing label constants when applicable: TESTS_LABEL, DASHBOARD_LABEL, STARTUP_LABEL, PRODUCT_METRICS_LABEL, COMPARE_BUILDS_LABEL, COMPARE_BRANCHES_LABEL, COMPARE_MODES_LABEL.
Add a new entry to the category's existing routes array using the route-builder helpers (defined near the top of routes.ts).
For a Tests page (uses the shared PerformanceTests.vue component via perfTests(path, props, pageTitle)):
perfTests(
ROUTES.MyCategoryNewPage,
{ dbName: "<dbName>", table: "<table>", initialMachine: MACHINES.HETZNER, withInstaller: false },
"My Category Performance tests"
),
props is typed as PerformanceTestsProps (dbName, table, initialMachine, and optional withInstaller, unit, releaseConfigurator, branch, withoutAccidents, machineGroupFilter). The satisfies TypedRouteRecord<PerformanceTestsProps> annotation lives inside the helper.
For a Dashboard page (custom Vue component via dashboard(path, component, pageTitle, props?)):
dashboard(ROUTES.MyCategoryNewPage, () => import("./components/myCategory/NewPageDashboard.vue"), "My Category New Page"),
For a Startup dashboard (startupDashboard(path, { table, defaultProject? }, pageTitle)):
startupDashboard(ROUTES.MyCategoryStartup, { table: "<table>", defaultProject: "<project>" }, "My Category Startup dashboard"),
For a Compare Builds page (compareBuilds(path, { dbName, table }, pageTitle?)):
compareBuilds(ROUTES.MyCategoryCompare, { dbName: "<dbName>", table: "<table>" }),
For a Compare Branches page (compareBranches(path, { dbName, table, metricsNames? }, pageTitle?)):
compareBranches(ROUTES.MyCategoryCompareBranches, { dbName: "<dbName>", table: "<table>" }),
For a Compare Modes page (compareModes(path, { dbName, table }, pageTitle?)):
compareModes(ROUTES.MyCategoryCompareModes, { dbName: "<dbName>", table: "<table>" }),
The pageTitle argument of the three compare helpers defaults to the standard label (Compare Builds / Compare Branches / Compare Modes), so pass it only to override.
Only needed for custom dashboard pages (not for Tests/Compare/Startup pages, which use shared components).
Create dashboard/new-dashboard/src/components/<category>/NewPageDashboard.vue:
<template>
<DashboardPage
db-name="<dbName>"
table="<table>"
persistent-id="<category>_<page>_dashboard"
initial-machine="linux-blade-hetzner"
:with-installer="false"
/>
</template>
<script setup lang="ts">
import DashboardPage from "../common/DashboardPage.vue"
</script>
KotlinNotebooksTests/kotlinNotebooks/testsTEST_ROUTE, DEV_TEST_ROUTE, DASHBOARD_ROUTE, STARTUP_ROUTE, PRODUCT_METRICS_ROUTE, COMPARE_ROUTE, COMPARE_BRANCHES_ROUTE, COMPARE_MODES_ROUTE) when the page type matchestab(url, label); build routes with the perfTests / dashboard / startupDashboard / compareBuilds / compareBranches / compareModes helpersMACHINES.HETZNER / MACHINES.AWS_LINUX instead of raw stringssatisfies TypedRouteRecord<...> for special cases the helpers don't cover (e.g. the PerformanceUnitTests.vue component, or a :subproject? path param)