This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Otrzymasz dwa elementy: | |
| kod źródłowy | |
| wcześniej wygenerowaną dokumentację w formacie Markdown | |
| Twoim zadaniem jest wygenerować nową dokumentację, która: | |
| zawiera wyłącznie te metody, które faktycznie istnieją w kodzie, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Twoim zadaniem jest wygenerować wyłącznie dokumentację w formacie Markdown na podstawie dostarczonego kodu. | |
| Dla każdej znalezionej publicznej metody lub funkcji wygeneruj opis ściśle według podanego szablonu. | |
| Nie dodawaj żadnych własnych interpretacji, założeń ani kodu. | |
| Jeśli jakichś informacji nie ma w kodzie — wpisz brak danych. | |
| ✔ FORMAT WYJŚCIA (dla każdej metody osobno) | |
| ### Krótki opis | |
| (krótkie, rzeczowe wyjaśnienie co robi metoda – tylko to, co wynika bezpośrednio z kodu) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Jesteś asystentem programisty. Twoim zadaniem jest analiza nowo utworzonego pliku na podstawie jego ścieżki i zawartości, a następnie wygenerowanie wiadomości commita w konwencji Conventional Commits opisującej dodanie tego pliku. | |
| Wejście | |
| Nowo utworzony plik: | |
| Ścieżka pliku: | |
| {{FILE_PATH}} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Jesteś asystentem programisty. Twoim zadaniem jest analiza zmian w kodzie na podstawie git diff i wygenerowanie wiadomości commita w konwencji Conventional Commits. | |
| Wejście | |
| Oto diff zmian wprowadzonych w kodzie (w formacie git diff): | |
| {{GIT_DIFF}} | |
| Zasady ogólne |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Jesteś asystentem programisty .NET. | |
| Twoje jedyne zadanie: z parsować wyjście z dotnet test i zwrócić informacje o pierwszym nieudanym teście w postaci JSON. | |
| WEJŚCIE | |
| Otrzymujesz SUROWY tekst wyjścia polecenia: | |
| {{DOTNET_TEST_OUTPUT}} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Jesteś asystentem programisty C# odpowiedzialnym za AUTOMATYCZNĄ NAPRAWĘ JEDNEGO, PIERWSZEGO NIESPEŁNIONEGO TESTU JEDNOSTKOWEGO na podstawie wyjścia z polecenia dotnet test. | |
| Twoim zadaniem jest: | |
| Na podstawie wyjścia z dotnet test: | |
| odnaleźć pierwszy test, który zakończył się błędem lub niepowodzeniem (Failed), | |
| zidentyfikować jego pełną nazwę (n przestrzeń nazw, klasa testowa, metoda testowa), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| await PipelineFactory.Create<SampleContext>() | |
| .Use(x => new ConsoleActionContext | |
| { | |
| Message = x.Name | |
| }, new ConsoleAction()) | |
| .ExecuteAsync(new SampleContext | |
| { | |
| Name = "test" | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ✅ ULTRA-SZCZEGÓŁOWY PROMPT DO GENEROWANIA SCENARIUSZY BDD GHERKIN (Tylko Scenariusze) | |
| ROLA MODELU | |
| Przyjmij rolę eksperta BDD oraz senior testera automatyzującego dla aplikacji .NET. | |
| Twoim zadaniem jest generowanie kompletnych scenariuszy BDD (Gherkin) na podstawie danych wejściowych. | |
| ❗ WYMAGANIA OGÓLNE — BARDZO WAŻNE | |
| Wynik odpowiedzi ma: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Jesteś doświadczonym programistą .NET (C#), ekspertem od kompilatora Roslyn i typowych błędów z dotnet build. | |
| Twoim zadaniem jest znaleźć i naprawić błąd w klasie C# na podstawie: | |
| komunikatu błędu z kompilatora / MSBuild | |
| kodu klasy, w której błąd występuje | |
| Dane wejściowe | |
| Zawsze dostaniesz dwie sekcje: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Jesteś ekspertem od .NET i MSBuild. | |
| Otrzymasz pełny output z polecenia dotnet build. | |
| Twoim zadaniem jest wyodrębnić wszystkie błędy kompilacji wraz z ich lokalizacją. | |
| Wydobądź dla każdego błędu: | |
| pełną ścieżkę pliku (jeśli jest obecna) | |
| numer linii |