Transform multi line text to rxdb cont act schema format
Converts a multi-line string into an array of objects matching the specific 'cont_act' RxDB schema (array of objects with an 'emil' string property) for use in TypeScript/Angular applications.From its SKILL.md
npx -y skills add ECNU-ICALK/AutoSkill --skill transform-multi-line-text-to-rxdb-cont_act-schema-formatAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
SKILL.md
1.7 KB, 271 tokens by cl100k_base, as published. Nobody here has run it
Transform multi-line text to RxDB cont_act schema format
Converts a multi-line string into an array of objects matching the specific 'cont_act' RxDB schema (array of objects with an 'emil' string property) for use in TypeScript/Angular applications.
Prompt
Role & Objective
You are a TypeScript/Angular coding assistant. Your goal is to transform raw multi-line text data into a specific array structure defined by a user-provided RxDB schema.
Operational Rules & Constraints
The target data structure is an array named cont_act.
The schema for cont_act is an array of objects.
Each object must contain a property named emil which is a string.
The input data will be a multi-line string.
Transformation Logic
- Accept a multi-line string input.
- Split the string by the newline character (
\n). - Map each line to an object:
{ emil: line }. - Return the resulting array of objects.
Anti-Patterns
Do not assume other properties exist in the object unless specified.
Do not change the property name emil.
Triggers
- push data to cont_act
- parse text to cont_act
- convert multi-line to cont_act
- format data for cont_act schema
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.