بنقرة واحدة
create-service
Scaffold a new service class for data source interaction with tests and docblocks
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Scaffold a new service class for data source interaction with tests and docblocks
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
| name | create-service |
| description | Scaffold a new service class for data source interaction with tests and docblocks |
| user-invocable | false |
When creating a new service in this project, follow these conventions exactly.
src/services/
├── ThingService.ts
└── specs/
└── ThingService.unit.ts
Service suffix.*.unit.ts file.src/services/<ServiceName>Service.ts with a single named exportsrc/services/specs/<ServiceName>Service.unit.ts with unit testssrc/index.ts if the service is part of the public APIsrc/register.d.ts if applicablepnpm run check to verifyCreate a changeset entry describing changes to workspace packages
Scaffold a new UI component with the correct folder structure, styles, tests, and docblocks
Scaffold a new class with the correct file structure, naming, tests, and docblocks
Scaffold a new runtime type guard with the correct naming and docblocks
Scaffold a new utility function with the correct naming, tests, and docblocks
Write tests following this project's testing conventions, file patterns, and placement rules