A guide for reviewing, filtering, and removing cards from JorBox game data (CSVs) to ensure they are culturally appropriate, Halal, and high-quality.
This skill outlines the process for auditing game cards in the JorBox application (specifically within public/data/*.csv). The primary goal is to curate content that is Family-Friendly, Halal, and Culturally Relevant (Pakistani/Desi), while removing Western-centric or inappropriate references.
/public/data/game1.csv (Main)/public/data/game5.csv (Haiwani Pattay - Primary Focus)Description,Category or Name,Description,Category.You must strictly remove any card containing explicit references to:
If a card is clean but "boring" or "too Western":
view_file to read a block of 100-500 lines.multi_replace_file_content to either:
["vodka", "bacon", "dating app"]).# Example logic for a quick filter script
bad_words = ['beer', 'wine', 'dating']
new_rows = []
for row in reader:
if not any(word in row[0].lower() for word in bad_words):
new_rows.append(row)
After edit/removal:
wc -l public/data/game5.csv).