From 1aa8c4f7f49446b316bf6a07cae4333b894cfd3b Mon Sep 17 00:00:00 2001
From: "google-labs-jules[bot]"
<161369871+google-labs-jules[bot]@users.noreply.github.com>
Date: Fri, 15 Aug 2025 18:09:15 +0000
Subject: [PATCH 1/3] feat: Add new prompt for suggesting prompts
---
README.md | 3 +++
1 file changed, 3 insertions(+)
diff --git a/README.md b/README.md
index c983c6a..b9530b9 100644
--- a/README.md
+++ b/README.md
@@ -154,6 +154,9 @@
- `// Help me scope this issue so Jules can solve it`
For working with Jules on real issues.
+- `// Analyze the existing prompts and suggest a new, unique prompt to add.`
+ Helps you contribute to prompt collections like this one.
+
- `// Convert this function into a reusable plugin/module`
Componentizing logic-heavy code.
From 452679169171c40fd063a05a37e2fc68887b9cd6 Mon Sep 17 00:00:00 2001
From: "google-labs-jules[bot]"
<161369871+google-labs-jules[bot]@users.noreply.github.com>
Date: Sat, 16 Aug 2025 12:54:53 +0000
Subject: [PATCH 2/3] feat: Add new prompt for i18n
---
README.md | 3 +++
1 file changed, 3 insertions(+)
diff --git a/README.md b/README.md
index b9530b9..6efcaa6 100644
--- a/README.md
+++ b/README.md
@@ -51,6 +51,9 @@
- `// Implement a data class for this dictionary structure...`
Useful for Python projects moving towards more structured data handling with `dataclasses` or Pydantic.
+- `// Extract user-facing strings from this file into a resource file for i18n.`
+ For applications preparing for internationalization.
+
## Debugging
From 8485feecf2a3822a46ab53b5d7bc0c621e4ceca8 Mon Sep 17 00:00:00 2001
From: "google-labs-jules[bot]"
<161369871+google-labs-jules[bot]@users.noreply.github.com>
Date: Sat, 16 Aug 2025 13:06:39 +0000
Subject: [PATCH 3/3] feat: Add new prompt for creating API clients
---
README.md | 3 +++
1 file changed, 3 insertions(+)
diff --git a/README.md b/README.md
index 6efcaa6..acd0f74 100644
--- a/README.md
+++ b/README.md
@@ -54,6 +54,9 @@
- `// Extract user-facing strings from this file into a resource file for i18n.`
For applications preparing for internationalization.
+- `// Write a client-side function to fetch data from a given API endpoint.`
+ For frontends interacting with REST or GraphQL APIs.
+
## Debugging