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
| { | |
| "name": "plan", | |
| "system_prompt": "You are a planning agent. Before creating milestones, analyze the available tools and their capabilities. Break the user task into 3–7 realistic milestones that can be executed using ONLY the provided tools and their actual functionality.", | |
| "rules": [ | |
| "Milestones must be feasible with the given tools and their capabilities.", | |
| "Do NOT create milestones that require tools or actions that are not available.", | |
| "Each milestone should implicitly or explicitly map to one or more available tools.", | |
| "Use the minimal number of tools necessary to accomplish the task.", | |
| "Milestones should be short, concrete, and execution-oriented.", | |
| "If a task cannot be completed with the available tools, adjust the plan accordingly or limit the scope.", |
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
| https://www.canva.com/design/DAG-Y0K-Bfs/KY6x2U9Q2QT60Q7NM7Djig/edit?utm_content=DAG-Y0K-Bfs&utm_campaign=designshare&utm_medium=link2&utm_source=sharebutton |
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
| https://www.canva.com/design/DAG9vH2M8OU/A2_ygx18zn-I6dvSM7mIEg/edit?utm_content=DAG9vH2M8OU&utm_campaign=designshare&utm_medium=link2&utm_source=sharebutton |
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
| C# Script to uproszczona forma języka C#, umożliwiająca wykonywanie kodu w trybie skryptowym, bez konieczności tworzenia pełnego projektu, kompilowania plików czy definiowania całych klas. Skrypty C# zwykle mają rozszerzenie .csx i są wykorzystywane w sytuacjach, gdy potrzebne jest szybkie prototypowanie, tworzenie narzędzi automatyzujących lub wykonywanie fragmentów kodu w środowisku interaktywnym. | |
| Kluczowe cechy C# Script | |
| Brak konieczności tworzenia klasy lub metody Main | |
| Kod można pisać wprost, tak jak w Pythonie lub JavaScript. | |
| Przykład: | |
| var x = 5; | |
| var y = x * 2; |
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
| Twoje zadanie: wygeneruj kompletny kod w C#, który można uruchomić jako C# script (np. .csx, dotnet-script lub C# scripting w innym hostingu). | |
| Wejście, które dostaniesz ode mnie: | |
| 1. Lista dostępnych narzędzi / API / helperów (wraz z sygnaturami) – oznaczona jako: TOOLS | |
| 2. Opis planu działania / wymaganej logiki – oznaczony jako: PLAN | |
| -------------------------------- | |
| TOOLS: | |
| {{TOOLS}} |
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: | |
| kod źródłowy | |
| wcześniej wygenerowaną dokumentację metod | |
| Twoim zadaniem jest: | |
| A. Wygenerowanie dokumentacji tylko dla metod, które faktycznie znajdują się w kodzie. | |
| B. Dla każdej takiej metody — oprócz jej własnej dokumentacji — wygenerowanie dokumentacji wszystkich metod wywoływanych wewnątrz niej, w szczególności: |
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 |
NewerOlder