Skip to content

Commit aff202f

Browse files
committed
- add todo list and a new prompt for creating tools/games
- add todo list to tools.json and sidebar.html
1 parent b9c0b27 commit aff202f

File tree

6 files changed

+724
-1
lines changed

6 files changed

+724
-1
lines changed

PROMPTS.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,28 @@ Here is the minified code:
207207
Now start providing improvements until I stop responding with `continue`.
208208
````
209209

210+
## Claude 3.7 Creating new tools/games
211+
```
212+
<goal>
213+
Create a standalone HTML page with embedded scripts and styling. The quality level should be exceptional. This time, we are creating an online ToDo-List.
214+
</goal>
215+
216+
<requirements>
217+
* Don't overengineer. Add smart, simple and straightforward features. If you realize you've overengineered, take a step back and try another approach.
218+
* Don't change the core functionality.
219+
* The tool should stay in the scope of this single HTML page.
220+
* Provide the updated code with a minimal amount of line breaks and indentations in order to save tokens.
221+
* Implement modern, well-structured and fitting design, UI and UX.
222+
* Take your time thinking and planning. Don't provide the finalized code before creating a watertight plan.
223+
* Modern JS, HTML and CSS only.
224+
* You are allowed/adviced to use external libraries via CDN.
225+
</requirements>
226+
227+
<task>
228+
Provide an exceptionally well crafted and feature-rich online ToDo-List.
229+
</task>
230+
```
231+
210232
## Claude 3.7 Enhance existing tools/games Prompt
211233

212234
```

data/tools.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1153,5 +1153,16 @@
11531153
"aiPowered": false,
11541154
"featured": false,
11551155
"date": "2025-03-02"
1156+
},
1157+
{
1158+
"id": "todo_list",
1159+
"title": "ToDo-List",
1160+
"description": "Feature-rich todo list with priorities, due dates, and drag-drop reordering.",
1161+
"url": "tools/todo_list.html",
1162+
"screenshot": "screenshots/screenshot_155.png",
1163+
"type": "tool",
1164+
"aiPowered": false,
1165+
"featured": false,
1166+
"date": "2025-03-04"
11561167
}
11571168
]

logo.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,10 @@ window.addEventListener('load', function() {
1818
} else if (position === 'top-right') {
1919
logo.style.top = '10px';
2020
logo.style.right = '10px';
21+
} else if (position === 'bottom-left') {
22+
logo.style.bottom = '10px';
23+
logo.style.left = '10px';
2124
} else {
22-
// Default to bottom-right
2325
logo.style.bottom = '10px';
2426
logo.style.right = '10px';
2527
}

screenshots/screenshot_155.png

12.1 KB
Loading

sidebar.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -241,6 +241,7 @@ <h2>Tools by ChatGPT</h2>
241241
<li><a href="/tools/svg_path_editor.html">SVG Path Editor</a></li>
242242
<li><a href="/tools/video_to_gif_converter.html">Video to GIF Converter</a></li>
243243
<li><a href="/tools/code_case_converter.html">Code Case Converter</a></li>
244+
<li><a href="/tools/todo_list.html">ToDo-List</a></li>
244245
<!-- end -->
245246
</ul>
246247
</div>

0 commit comments

Comments
 (0)