Skip to main content
Manus에서 모든 스킬 실행
원클릭으로
GitHub 저장소

keystone.guru

keystone.guru에는 RaiderIO에서 수집한 skills 42개가 있으며, 저장소 수준 직업 범위와 사이트 내 skill 상세 페이지를 제공합니다.

수집된 skills
42
Stars
65
업데이트
2026-07-21
Forks
10
직업 범위
직업 카테고리 5개 · 100% 분류됨
저장소 탐색

이 저장소의 skills

babysit-prs
소프트웨어 품질 보증 분석가·테스터

Use when asked to babysit, shepherd, or keep open MRs green. One pass over every open agent MR in RaiderIO/keystone.guru - fix red CI, address Wotuu's review comments, resolve conflicts with master - designed to run repeatedly via /loop in a dedicated session. Never merges, approves, or deploys. Not for reviewing a single PR (use the review skill) or for creating MRs.

2026-07-21
keystoneguru-infra-cdk
소프트웨어 개발자

How to make and VERIFY changes to the keystoneguru-infra CDK app (the sibling RaiderIO/keystoneguru-infra repo that owns AWS: ECS services, queue workers, task sizing). Covers the repo layout, the queue-worker config surface (queue:work flags, --memory, LOG_LEVEL, per-worker desiredCount / cpu / memoryLimit), and the reliable `cdk synth` verification recipe plus the traps that silently produce no output. Use when editing ECS task definitions, queue workers, memory/CPU, or any CDK construct here, or when a worker crashes/exits (e.g. queue worker exit code 12). NOT for the app-side build/deploy pipeline (use deployment-pipeline) or the release changelog (create-release).

2026-07-21
combatlog-parse-failure-triage
소프트웨어 개발자

Operational runbook to find, download, and reproduce real Staging/Production combat log parse failures before fixing them — the internal-team API endpoints, how to pull a failure's real Raider.IO log segments, the gzip/docker-cp reproduction recipe, and the safety checklist for shipping a fix. Use when triaging CombatLogParseFailure rows, chasing a "combat log parses are failing" report, or verifying a combatlog-parsing-internals fix against real production data. Pairs with combatlog-parsing-internals (how the parser itself works) and create-github-issue / worktree-docker (how to turn a diagnosis into a shipped MR).

2026-07-21
combatlog-parsing-internals
소프트웨어 개발자

How a single raw WoW combat log line becomes a parsed event object — CombatLogEntry's dispatch logic, the BaseEvent/SpecialEvent/CombatEvent class hierarchy, the CombatLogVersion registry and its getVersionLong() formula, the builder-with-default-fallback pattern every version-gated class uses, and the safe procedure for registering a new WoW client build. Use when a combat log line fails to parse, when a new WoW patch needs its version registered, or when touching CombatLogEntry/CombatLogVersion/SpecialEvent/Prefix/Suffix classes. For what happens AFTER a line becomes an event (NPC/spell mapping extraction, NPC Compendium) use combatlog-data-pipeline instead. For the operational runbook to find/download/reproduce real failing logs from Staging, use combatlog-parse-failure-triage.

2026-07-21
generate-floor-unions
소프트웨어 개발자

Generate FloorUnions and FloorUnionAreas for a dungeon facade (MDT combined view) from the per-floor images and the combined facade image, using OpenCV image registration instead of the manual GIMP overlay workflow. Use when adding facade support to a dungeon or when asked to (re)compute floor unions from map images. Not for creating the Dungeon/Floor rows themselves, and not for the JSON seeder mechanics (seeder-load/seeder-save).

2026-07-20
worktree-docker
소프트웨어 개발자

Use when starting a task that should run in an isolated git worktree with its own Docker app stack, or when the user mentions worktrees, parallel branches, or running multiple checkouts side by side. Covers sh/worktree.sh (create/down/remove/list), how the isolated stack shares the main DB/redis, and how to run artisan/tests inside it. Do not use for the main development stack or generic docker-compose questions.

2026-07-18
headless-browser-verify
소프트웨어 품질 보증 분석가·테스터

Verify keystone.guru pages in a real headless Chrome - reproduce rendering/JS issues, measure layout, catch page errors, and take screenshots you can view with the Read tool (and post onto a PR). Use when curl/static reasoning is not enough (JS-driven UI, bootstrap-select menus, layout/sizing bugs, "does this actually render" questions). Works from the main checkout or any worktree via its Docker stack.

2026-07-18
deployment-pipeline
소프트웨어 개발자

Map of how keystone.guru builds and deploys — the tag-triggered GitHub Actions pipeline (frontend assets, map context, Docker images), the cross-repo deploy into RaiderIO/keystoneguru-infra (Cloudflare + S3 assets, ECR/ECS, staging/production gates), and the operational gotchas. Use when the user asks how deploys/assets/CI work, why an asset 404s, how staging/production deploy, or where a pipeline step lives. NOT for authoring a release changelog (use create-release) and NOT the legacy PHP-Deployer flow.

2026-07-17
release-watch
소프트웨어 개발자

Use after a v* tag has been pushed and release-deploy.yml is running (or about to run), when the user wants to watch or drive a release to completion from one terminal instead of tracking release-deploy.yml, the keystoneguru-infra Deploy runs, and the manual production gate by hand. Runs sh/release-watch.sh, a re-entrant polling loop that tracks build jobs, correlates the staging/production infra runs, runs asset and HTML verification, and can approve the production gate. Use --watch-only for a pure observer with no approval prompt. Gate approval always requires the human typing the exact version string; the script (and this skill) must never approve unattended. Not for authoring the release changelog itself (create-release) or a general map of the pipeline (deployment-pipeline).

2026-07-17
create-github-issue
소프트웨어 개발자

Use when the user wants to create, file, open, or raise a GitHub issue / story / ticket for this project (e.g. a follow-up task, bug report, or tech-debt item). Covers the reliable `gh` command pattern, shell-escaping pitfalls, and the project's issue conventions. Do not use when creating merge/pull requests.

2026-07-17
generating-thumbnails
소프트웨어 개발자

The two — and only two — supported ways for an agent to generate a dungeon-route thumbnail. Use whenever you need to (re)generate, render, or inspect a route thumbnail, or when a thumbnail is missing/broken/403ing. Path B dispatches to shared Horizon (real thumbnails, visible everywhere); Path A renders your branch's code locally to inspect it. Do NOT hand-roll puppeteer, edit ThumbnailService guards, apt-install Chrome, or symlink public/storage.

2026-07-17
hotfix
소프트웨어 개발자

Patch a released version in place without cutting a new release: upload changed non-compiled files (PHP, Blade, lang, config) to the hotfix S3 bucket with `php artisan make:hotfix`, then redeploy the SAME version so ECS overlays them at container startup. Use when a staging/production bug must be fixed now and the fix touches no compiled assets. NOT for JS/CSS/SCSS or JS-consumed translations - those are baked into the release assets and require a new release (create-release skill).

2026-07-16
update-mdt-package
소프트웨어 개발자

Use when asked to update / bump the Mythic Dungeon Tools (MDT) composer package to a newer version and reimport dungeon mappings. Covers the full runbook: opening a tracking GitHub issue, composer reference bump, mapping reimport for the current retail season, new POI type/template handling, test fixture rewriting, NPC translation export, and re-seeding. NOT related to the MDT import/export string services (mdt-import / mdt-export skills).

2026-07-16
heatmap-functionality
소프트웨어 개발자

How to build a NEW custom heatmap-like feature by reusing the existing heatmap infrastructure — the HeatPlugin Leaflet layer, MapContextDungeonExplore, and grid-cell weight aggregation (e.g. the admin enemy-failure heatmap). Use when integrating a new heatmap-style overlay. For a reference of the EXISTING public heatmap feature itself, use heatmap-javascript (client) or heatmap-php (backend) instead.

2026-07-14
heatmap-javascript
소프트웨어 개발자

Reference guide for the EXISTING public heatmap feature's JavaScript implementation. Use when modifying heatmap filters, visualization settings, the HeatPlugin, SearchHandlerHeatmap, or the embed pass-through API. For the PHP backend see heatmap-php; for building a NEW custom heatmap-like overlay that reuses this infra, see heatmap-functionality.

2026-07-14
heatmap-php
소프트웨어 개발자

Reference guide for the EXISTING public heatmap feature's PHP/Laravel backend. Use when modifying heatmap controllers, form requests, DTOs, the RaiderIO service layer, the Heatmap feature flag, or the CombatLogEvent grid aggregation. For the client-side JS see heatmap-javascript; for building a NEW custom heatmap-like overlay that reuses this infra, see heatmap-functionality.

2026-07-14
create-release
소프트웨어 개발자

Use when the user asks to "create a release", "cut a release", "make a new release", or generate a release changelog from commit history. Composes the changelog from squash-merged commits since the last release, creates the GitHub release issue and a draft GitHub Release, and cuts the `v*` git tag. NOT the legacy JSON-seeder or PHP-Deployer flows.

2026-07-13
new-map-view
소프트웨어 개발자

Step-by-step guide for creating a new page that renders a dungeon map — blade anatomy, JS wiring, sidebar controls, map context, and hidden object groups.

2026-07-13
structured-logging
소프트웨어 개발자

How the StructuredLogging system works and when to use it — per-service Logging classes, start/end context grouping, log levels, and the Discord error alerting flow. Use when adding logging to a service, creating a new {Service}Logging class, choosing a log level, or tracing what a service did from its log output.

2026-07-07
admin-artisan-command
소프트웨어 개발자

Expose an existing Artisan command in the admin panel's "Artisan Commands" tools section — whitelist entry, chunked-AJAX Inline Code JS, blade view, route, breadcrumb, translations, and tests. Use when asked to make an artisan command runnable from the admin panel. Not for building a whole new admin page (admin-tools-page) or a bespoke batch operation page (admin-batch-page).

2026-07-06
ajax-map-editor-crud
소프트웨어 개발자

The map editor's server-side CRUD layer — AjaxMappingModelBaseController, the Ajax*Controller pattern, FormRequests, routes/web.php ajax groups, broadcast events (ContextEvent/ModelChangedEvent/ModelDeletedEvent), presence channels in routes/channels.php, and the checklist for adding a new editable map-object type. Use when adding or changing an ajax map endpoint, a broadcast event, or debugging collaborative-editing sync. Not for the model versioning itself (mapping-versioned-models), the front-end Leaflet layer (new-map-view), or public API endpoints (api-endpoint).

2026-07-06
artisan-command-conventions
소프트웨어 개발자

Conventions for Artisan commands in keystone.guru — the domain subfolder layout, custom base classes (SchedulerCommand, BaseCombatLogCommand, ...), shared traits, signature naming, handle() method injection, and how scheduling works in routes/console.php (env guards, Docker stdout output). Use when creating or modifying an Artisan command or changing the schedule. Not for exposing a command in the admin panel (admin-artisan-command) or generic Laravel console questions.

2026-07-06
creating-a-service
소프트웨어 개발자

Runbook for adding a new Service to app/Service — interface + implementation pair, binding in KeystoneGuruServiceProvider (bind vs scoped vs instance, env-conditional swaps), the Logging companion wired in LoggingServiceProvider, Dev/Stub variants, and the Octane/Swoole statefulness rules. Use when creating a new service class or wiring an existing one into the container. Not for repositories (repository-pattern), the logging philosophy itself (structured-logging), or deciding Service vs Logic placement (project-backend-structure).

2026-07-06
mapping-versioned-models
소프트웨어 개발자

Lifecycle of mapping-versioned models (Enemy, EnemyPack, EnemyPatrol, MapIcon, FloorUnion, MountableArea, ...) — the MappingVersion clone-on-create boot, the clone interfaces/trait, mapping_version_id query scoping, current-version resolution, change logs, and the full wiring checklist (including the hardcoded model lists people forget). Use when creating or modifying a model that carries mapping_version_id, or debugging missing/duplicated mapping data across versions. Not for the JSON seeder mechanics (seeder-load / seeder-save) or the Ajax editor endpoints (ajax-map-editor-crud).

2026-07-06
mdt-export
소프트웨어 개발자

How MDTExportStringService converts a DungeonRoute into a compressed MDT-importable string — object structure, Lua serialization, and export tests. Use when adding new exportable object types, debugging export output, or writing/modifying export tests. Not for the import direction (mdt-import) and not for bumping the MDT composer package (update-mdt-package).

2026-07-06
mdt-import
소프트웨어 개발자

How MDTImportStringService parses a compressed MDT string into a DungeonRoute — decoding, object conversion, warnings/errors, and import tests. Use when adding new importable object types, debugging import failures, or writing/modifying import tests. Not for the export direction (mdt-export) and not for bumping the MDT composer package (update-mdt-package).

2026-07-06
project-backend-structure
소프트웨어 개발자

Architectural map of the PHP backend — every app/ directory explained, the Service/Logic/Repository/Model layering, container bindings per provider, and newcomer gotchas. Use when making architectural decisions, writing a new backend feature, or deciding where a new class belongs. Do not use for front-end JavaScript or any language other than PHP, and not for generic Laravel structure questions.

2026-07-06
security-review
정보 보안 분석가

The backend security model of keystone.guru and how to review it — authentication (Laratrust, Basic-auth API), authorization (Gate/policies on the write surface), CSRF posture, request-input safety, and the areas already verified safe so they are not re-investigated. Use when doing a security review, adding an endpoint, or touching auth/CSRF/SQL/authorization. Not for front-end security or dependency CVEs.

2026-07-06
simulationcraft-backend
소프트웨어 개발자

How the SimulationCraft export converts a DungeonRoute into a fight_style=DungeonRoute config string — raid buffs, enemy health scaling by key level/affixes, travel delay, and bloodlust assignment. Use when adding/removing raid buffs, changing enemy health calculation, extending the output format, adjusting travel delay logic, or debugging simulation output. Not for MDT strings (mdt-import/mdt-export).

2026-07-06
writing-tests
소프트웨어 품질 보증 분석가·테스터

Conventions for writing PHPUnit tests in keystone.guru — which base test case to extend, the persistent seeded test DB (no RefreshDatabase; clean up with try/finally), creating admin/non-admin users, factory gotchas, the Group/Test PHP attributes, naming, and running tests in Docker. Use when writing or editing any test (Feature or Unit). Not for generic PHPUnit questions unrelated to this project's setup.

2026-07-06
toggl-timesheet-merge
일반 사무원

Use when the user has two or more Toggl timesheet CSVs (typically one per machine) and wants to reconcile, combine, or deduplicate them into a single import file. Companion to the toggl-timesheet skill, which generates the per-machine CSVs.

2026-07-03
toggl-timesheet
일반 사무원

Use when the user asks to build a timesheet, log hours, create a Toggl import, or reconstruct work done between two dates. Derives work sessions from git commits and Claude conversation history, rounds to 15-minute intervals, and produces a Toggl-compatible CSV at ~/timesheet_<range>.csv.

2026-07-03
admin-tools-page
소프트웨어 개발자

Conventions for building a new admin page in keystone.guru — routing, controllers, blade views, the tools landing card, the admin nav dropdown, and count badges. Use when adding a read/list or simple form admin page. For long chunked-AJAX operations (progress bar, start/pause/stop) use the admin-batch-page skill instead.

2026-07-02
combatlog-data-pipeline
소프트웨어 개발자

End-to-end guide to how WoW combat logs are parsed into the combatlog DB — the streaming reader, the ordered data-extractor pipeline, the observation (rolling window) vs event (audit) tables, the hourly staleness sweep, and how the NPC Compendium front-end reads the resulting feed. Use when touching combat log extraction, NPC/spell observations or events, or the NPC Compendium.

2026-07-02
seeder-load
소프트웨어 개발자

Guide for adding a RelationParser so a new model or nested relation is correctly imported from the dungeon JSON seeder files. Use when a new model/child table needs to be populated during `php artisan db:seed --class=DungeonDataSeeder`.

2026-06-24
seeder-save
소프트웨어 개발자

Guide for adding a model or nested relation to the `mapping:save` Artisan command so it is exported to the dungeon JSON seeder files. Use when a new model or child relation needs to be persisted into `database/seeders/dungeondata/` as part of the mapping export.

2026-06-24
phpstan-fixer
소프트웨어 개발자

Fix PHPStan static analysis errors by adding type annotations and PHPDocs. Use when encountering PHPStan errors, type mismatches, missing type hints, or static analysis failures. Never ignores errors without user approval.

2026-06-23
repository-pattern
소프트웨어 개발자

Complete guide to the repository pattern used in this project — file locations, naming conventions, interface shape, provider registration, and how to add a new repository for a model.

2026-06-12
admin-batch-page
소프트웨어 개발자

Use when adding a new admin tools page that runs a long operation as chunked AJAX requests with a progress bar, start/pause/stop controls, elapsed timer, and log output. Examples: pruning database columns by criteria, backfilling data, bulk-updating rows.

2026-06-11
api-endpoint
소프트웨어 개발자

Helps writing new public API v1 endpoints in a project-compliant way. Use when the user wants to add a new API route, controller, form request, resource, or test in the `app/Http/Controllers/Api/V1/` layer.

2026-06-07
이 저장소에서 수집된 skills 42개 중 상위 40개를 표시합니다.