소스 정보
- 저장소
- spryker-sdk/ai-dev
- 최근 소스 활동
- 2026년 8월 10일 11:35
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/spryker-sdk/ai-dev --skill data-import명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Use this skill whenever the user wants to onboard a Spryker project onto a project-owned Cypress E2E baseline in place of Spryker's internal demo-shop test suites. Trigger on phrases like "migrate off spryker/cypress-tests", "remove the demo-shop cypress/robot suites", "set up project-owned cypress testing", "bootstrap cypress-boilerplate for this project", "onboard this project onto cypress", "integrate cypress-boilerplate", or any request to replace `spryker/cypress-tests` / `spryker/robotframework-suite-tests` with a project's own Cypress setup. This is a one-time setup/migration skill — it removes the old suites, vendors in the already-adapted `tests/cypress-boilerplate/` implementation from the spryker-shop/b2b-demo-marketplace repository (the proven reference implementation), wires up CI, and generates the companion day-to-day `cypress-tests` skill for the target project. It is written to be project-agnostic for the *target* project: every step discovers the target's actual conventions (hostnames, fixtu
Use whenever the user wants to implement a Spryker customization from a PRD or acceptance criteria. Triggers include "build this", "implement this", "here is a PRD - build it", "add X for the demo", "build this PoC", "production-quality build". Drives the full workflow from intake to commit, choosing a quality bar (PoC or MVP) at the start and delegating focused work (research, verification, debugging, test-data setup, refresh, Cypress E2E coverage, demo-artifact capture) to the spryker-* subagents and skills. Never auto-commits; the user always confirms.
Use at the very start of a new customer project, on an unmodified (booted or not) clone of a Spryker b2b/b2b-marketplace demoshop — 'turn this demoshop into our project', 'start the project setup', 'run the project starter'. Also the trigger for 'give me the setup questionnaire' / 'here are my filled setup answers — run it autonomously', and the resume entry when a prior run left .ai-dev/project-setup.md. Collects the nine setup decisions either from a pre-filled questionnaire (references/questionnaire.md — no interview) or a live batched interview, then orchestrates the other project-start skills in autonomous or collaborative mode.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | data-import |
| description | Use the skill to create, update, fix, or implement data import. |
I need to create a data import for my new entity '{ENTITY_NAME}'. Main AC: Create a new Spryker module named {MODULE_NAME}.
Create a new module {MODULE_NAME} in Zed Layer:
Create a new module {MODULE_NAME}DataImport in Zed Layer:
{MODULE_NAME}DataImportConfig extending DataImportConfig:
IMPORT_TYPE_{ENTITY_NAME_UPPER} constant.get{ENTITY_NAME}DataImporterConfiguration(): DataImporterConfigurationTransfer.{ENTITY_NAME}DataSetInterface with CSV column key constants.{ENTITY_NAME}RequiredFieldValidatorStep — validates required CSV fields.{ENTITY_NAME}WriterStep — reads DataSet, upserts entity via Propel query, saves.{Reference}To{Id}Step resolver steps with internal ID cache.{MODULE_NAME}DataImportBusinessFactory extending DataImportBusinessFactory:
get{ENTITY_NAME}DataImport(): DataImporterInterface — wires CSV importer + transaction-aware step broker with all steps.{MODULE_NAME}DataImportFacadeInterface and {MODULE_NAME}DataImportFacade:
import{ENTITY_NAME}s(?DataImporterConfigurationTransfer $dataImporterConfigurationTransfer = null): DataImporterReportTransfer{ENTITY_NAME}DataImportPlugin in Communication/Plugin implementing DataImportPluginInterface:
getImportType() returns the IMPORT_TYPE constant value.import() delegates to facade.DataImportDependencyProvider::getDataImporterPlugins().data/import/*.yml file:
- data_entity: {import-type}
source: data/import/common/common/{entity_name}.csv
Use Spryker best practices. Use native PHP types. No extra DocBlocks. Use current branch. Do not run propel:install or transfer:generate — write code only.
I need to create a data import for my new entity 'picker'. Main AC: Create a new Spryker module named Picker.
Create a new module Picker in Zed Layer:
Create a new module PickerDataImport in Zed Layer:
PickerDataImportConfig with IMPORT_TYPE_PICKER = 'picker' and getPickerDataImporterConfiguration().PickerDataSetInterface — constants: FIRST_NAME = 'first_name', LAST_NAME = 'last_name', etc.PickerRequiredFieldValidatorStep — validates first_name, last_name.PickerWriterStep — upserts SpyPickerQuery using DataSet values.PickerDataImportBusinessFactory::getPickerDataImport() — CSV importer + transaction-aware broker with validator → writer steps.importPickers(?DataImporterConfigurationTransfer $dataImporterConfigurationTransfer = null): DataImporterReportTransferPickerDataImportPlugin implementing DataImportPluginInterface.DataImportDependencyProvider.data/import/common/minimal.yml:
- data_entity: picker
source: data/import/common/common/picker.csv
data/import/common/common/picker.csv:
first_name,last_name,middle_name,rating,date_of_birth
John,Doe,,5,1990-01-15
PickerDataImport/
├── src/Pyz/Zed/PickerDataImport/
│ ├── PickerDataImportConfig.php
│ ├── PickerDataImportDependencyProvider.php
│ ├── Business/
│ │ ├── DataSet/
│ │ │ └── PickerDataSetInterface.php
│ │ ├── DataImport/
│ │ │ └── PickerDataImportStep/
│ │ │ ├── PickerRequiredFieldValidatorStep.php
│ │ │ └── PickerWriterStep.php
│ │ ├── PickerDataImportBusinessFactory.php
│ │ ├── PickerDataImportFacadeInterface.php
│ │ └── PickerDataImportFacade.php
│ └── Communication/
│ └── Plugin/
│ └── PickerDataImportPlugin.php
└── data/import/common/common/
└── picker.csv