Skip to content

Commit 2fb2fb4

Browse files
commit
1 parent cfd0cff commit 2fb2fb4

File tree

1,102 files changed

+72269
-137847
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,102 files changed

+72269
-137847
lines changed

README.md

Lines changed: 739 additions & 15021 deletions
Large diffs are not rendered by default.

images/growth_chart.png

-4.68 KB
Loading

index/index.csv

Lines changed: 206 additions & 1050 deletions
Large diffs are not rendered by default.

index/index.json

Lines changed: 2376 additions & 60690 deletions
Large diffs are not rendered by default.

index/index.md

Lines changed: 740 additions & 15022 deletions
Large diffs are not rendered by default.

index/index_metadata.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
{
2-
"generated_at": "2025-09-28T18:08:02.371679",
3-
"total_prompts": 1084,
4-
"valid_prompts": 1050,
2+
"generated_at": "2025-09-28T20:39:39.512141",
3+
"total_prompts": 206,
4+
"valid_prompts": 206,
55
"last_updated": "2025-09-28",
6-
"sparkline": "▁▂▂▂▃█",
6+
"sparkline": "▁▂▂▂▃█",
77
"growth_data": {
8-
"current_count": 1084,
8+
"current_count": 206,
99
"historical_counts": [
1010
892,
1111
944,
1212
922,
1313
922,
1414
956,
1515
1084,
16-
1050
16+
1084
1717
]
1818
},
1919
"formats_generated": [

maintenance-scripts/data-management/export_point_in_time_md.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333

3434
REPO_ROOT = Path(__file__).resolve().parents[2]
35-
JSON_DIR = REPO_ROOT / "repo-data" / "json"
35+
JSON_DIR = REPO_ROOT / "system-prompts" / "json"
3636
EXPORTS_DIR = REPO_ROOT / "exports"
3737
RELEASES_INDEX = EXPORTS_DIR / "releases.json"
3838

maintenance-scripts/data-management/standardize_json_format.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"""
33
System Prompt Library JSON Format Standardization Script
44
5-
This script standardizes all JSON files in the repo-data/json/ directory
5+
This script standardizes all JSON files in the system-prompts/json/ directory
66
to match the latest format (240925_format.json).
77
88
Usage:
@@ -229,7 +229,7 @@ def main():
229229
parser.add_argument("--backup", action="store_true",
230230
help="Create backup of original files before standardization")
231231
parser.add_argument("--json-dir", type=str,
232-
default="../../repo-data/json",
232+
default="../../system-prompts/json",
233233
help="Directory containing JSON files to standardize")
234234

235235
args = parser.parse_args()

maintenance-scripts/editors/prompt_editor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919

2020
ROOT = Path(__file__).resolve().parents[2] # Go up to repo root from maintenance-scripts/editors/
21-
PROMPTS_DIR = ROOT / "repo-data" / "json"
21+
PROMPTS_DIR = ROOT / "system-prompts" / "json"
2222

2323

2424
class MarkdownEditor(QWidget):

maintenance-scripts/indexing/generate_multi_format_index.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,11 +136,11 @@ def prepare_index_data(self, prompts: List[Dict]) -> Tuple[List[Dict], Dict]:
136136
# Links
137137
original_filename = prompt.get('_original_filename')
138138
if original_filename:
139-
json_link = f"repo-data/json/{original_filename}"
139+
json_link = f"system-prompts/json/{original_filename}"
140140
else:
141141
# Fallback to old method if filename not stored
142142
json_filename = f"{agent_name.replace(' ', '_').replace('/', '_')}_270525.json"
143-
json_link = f"repo-data/json/{json_filename}"
143+
json_link = f"system-prompts/json/{json_filename}"
144144

145145
chatgpt_link = prompt.get('ChatGPT Access URL', '')
146146

0 commit comments

Comments
 (0)