enzozid AI Hub
300 PROMPTS · 6 CATEGORIES

300 Claude Prompts

300 production-ready prompts built to replace tasks that used to take hours. Six categories, fifty prompts each: coding & debugging, AI workflows, research & analysis, automation, content creation, and productivity systems. Fill in the [bracketed] placeholders with your context and copy.

300 برومبت جاهز للاستخدام، كل واحد منها يختصر مهام كانت تاخذ ساعات. ست فئات، خمسين برومبت لكل فئة: برمجة وتصحيح، سير عمل الذكاء الاصطناعي، بحث وتحليل، أتمتة، إنشاء محتوى، وأنظمة إنتاجية. عبّي الأقواس [بين المعقوفات] بسياقك وانسخ.

Curated by @cyrilxbt · organized & translated for EnzoZid AI Hub

300 prompts shown
Coding & Debugging

Code Review

مراجعة الكود واكتشاف الأخطاء والثغرات الأمنية

1
Review this code as a senior engineer. Identify bugs, security vulnerabilities, performance issues, and style problems. Explain each issue and suggest a fix: [PASTE CODE]
0 copies
Coding & Debugging

Debug This Error

تتبّع سبب أي خطأ برمجي وإصلاحه

2
I am getting this error: [ERROR MESSAGE]. Here is the relevant code: [PASTE CODE]. Walk me through every possible cause and fix each one.
0 copies
Coding & Debugging

Refactor for Readability

إعادة هيكلة الكود ليصير أنظف وأوضح

3
Refactor this code to be cleaner and more readable without changing its functionality. Add comments explaining complex logic: [PASTE CODE]
0 copies
Coding & Debugging

Write Unit Tests

كتابة اختبارات وحدة شاملة للدوال

4
Write comprehensive unit tests for this function. Cover the happy path, edge cases, null inputs, and error conditions: [PASTE FUNCTION]
0 copies
Coding & Debugging

Optimize Performance

تحليل الكود وتسريع الأجزاء البطيئة

5
Analyze this code for performance bottlenecks. Identify the slowest parts and rewrite them to be more efficient: [PASTE CODE]
0 copies
Coding & Debugging

Convert to TypeScript

تحويل جافاسكربت إلى تايب سكربت

6
Convert this JavaScript code to TypeScript. Add proper type definitions for all variables, parameters, and return values: [PASTE CODE]
0 copies
Coding & Debugging

Explain This Code

شرح أي كود من الصفر وكيف يعمل

7
Explain this code to me like I have never seen it before. What does it do, how does it work, and why is it written this way: [PASTE CODE]
0 copies
Coding & Debugging

Generate API Endpoint

إنشاء واجهة API كاملة مع التحقق ومعالجة الأخطاء

8
Write a REST API endpoint in [LANGUAGE/FRAMEWORK] that [DESCRIBE WHAT IT SHOULD DO]. Include input validation, error handling, and proper HTTP status codes.
0 copies
Coding & Debugging

Database Query Optimization

تسريع استعلامات SQL البطيئة

9
This SQL query is running slowly: [PASTE QUERY]. Analyze it, explain why it is slow, and rewrite it to be faster. Suggest any indexes that would help.
0 copies
Coding & Debugging

Write Documentation

كتابة توثيق واضح للدوال والكود

10
Write clear developer documentation for this function including purpose, parameters, return values, example usage, and edge cases: [PASTE FUNCTION]
0 copies
Coding & Debugging

Security Audit

فحص أمني للكود واكتشاف الثغرات

11
Audit this code for security vulnerabilities. Check for SQL injection, XSS, authentication issues, exposed secrets, and any other risks: [PASTE CODE]
0 copies
Coding & Debugging

Build a CLI Tool

بناء أداة سطر أوامر كاملة

12
Write a command line tool in Python that [DESCRIBE FUNCTIONALITY]. Include argument parsing, error handling, help text, and a usage example.
0 copies
Coding & Debugging

Convert Function to Async

تحويل دالة متزامنة إلى async/await

13
Convert this synchronous function to async/await. Handle all promise rejections properly and maintain the same functionality: [PASTE FUNCTION]
0 copies
Coding & Debugging

Design a Data Schema

تصميم مخطط قاعدة بيانات متكامل

14
Design a database schema for [DESCRIBE APPLICATION]. Include all tables, columns, data types, relationships, indexes, and explain your design decisions.
0 copies
Coding & Debugging

Write a Regex

كتابة وشرح أنماط Regex

15
Write a regex pattern that matches [DESCRIBE WHAT TO MATCH]. Explain each part of the pattern and show example matches and non-matches.
0 copies
Coding & Debugging

Build a Web Scraper

بناء أداة استخراج بيانات من المواقع

16
Write a Python web scraper that extracts [DESCRIBE DATA] from [URL/TYPE OF SITE]. Handle pagination, rate limiting, and failed requests gracefully.
0 copies
Coding & Debugging

Code Architecture Review

مراجعة معمارية النظام واكتشاف نقاط الانهيار

17
Review this architecture and tell me what problems you foresee at scale. What would break first and how should I redesign it: [DESCRIBE OR PASTE ARCHITECTURE]
0 copies
Coding & Debugging

Add Error Handling

إضافة معالجة شاملة للأخطاء

18
Add comprehensive error handling to this code. Catch all possible failures, log them appropriately, and fail gracefully: [PASTE CODE]
0 copies
Coding & Debugging

Build a Cron Job

بناء مهمة مجدولة تعمل تلقائياً

19
Write a cron job in [LANGUAGE] that [DESCRIBE TASK]. It should run [FREQUENCY], handle failures, and send an alert if something goes wrong.
0 copies
Coding & Debugging

Translate Between Languages

ترجمة الكود بين لغات البرمجة

20
Translate this code from [LANGUAGE A] to [LANGUAGE B]. Maintain all functionality and use idiomatic patterns for the target language: [PASTE CODE]
0 copies
Coding & Debugging

Write a Webhook Handler

بناء معالج Webhook آمن

21
Write a webhook handler in [FRAMEWORK] that receives events from [SERVICE]. Validate the signature, parse the payload, and handle [DESCRIBE EVENTS].
0 copies
Coding & Debugging

Build a Rate Limiter

بناء نظام تحديد معدل الطلبات

22
Implement a rate limiter in [LANGUAGE] that allows [X] requests per [TIME PERIOD] per user. Handle edge cases and include a way to whitelist certain users.
0 copies
Coding & Debugging

Create a Middleware

كتابة Middleware قابلة لإعادة الاستخدام

23
Write middleware for [FRAMEWORK] that [DESCRIBE WHAT IT SHOULD DO]. Make it reusable, well documented, and handle all edge cases.
0 copies
Coding & Debugging

Design a Caching Strategy

تصميم استراتيجية تخزين مؤقت

24
Design a caching strategy for [DESCRIBE SYSTEM]. What should be cached, for how long, when should it be invalidated, and what caching technology would you use?
0 copies
Coding & Debugging

Write a Data Migration Script

كتابة سكربت ترحيل بيانات آمن

25
Write a database migration script that [DESCRIBE WHAT IT NEEDS TO DO]. Make it idempotent, reversible, and safe to run on a production database.
0 copies
Coding & Debugging

Build an Authentication System

بناء نظام مصادقة JWT كامل

26
Design and write a JWT authentication system in [FRAMEWORK]. Include signup, login, token refresh, logout, and protected route middleware.
0 copies
Coding & Debugging

Generate Mock Data

توليد بيانات وهمية واقعية للاختبار

27
Write a script that generates realistic mock data for [DESCRIBE DATA STRUCTURE]. Generate [NUMBER] records and output as JSON.
0 copies
Coding & Debugging

Implement Pagination

إضافة ترقيم صفحات للـ API

28
Add cursor-based pagination to this API endpoint. Include a page size limit, handle edge cases, and return proper metadata: [PASTE ENDPOINT CODE]
0 copies
Coding & Debugging

Write a CI/CD Pipeline

بناء خط نشر تلقائي CI/CD

29
Write a GitHub Actions workflow that runs tests, checks code quality, builds the application, and deploys to [PLATFORM] on every push to main.
0 copies
Coding & Debugging

Design a Microservice

تصميم معمارية خدمة مصغّرة

30
Design the architecture for a microservice that handles [DESCRIBE FUNCTIONALITY]. What endpoints does it need, how does it communicate with other services, and what does its data model look like?
0 copies
Coding & Debugging

Implement Retry Logic

إضافة منطق إعادة المحاولة للطلبات الخارجية

31
Add retry logic to this function that makes an external API call. Handle rate limits, transient errors, and use exponential backoff: [PASTE FUNCTION]
0 copies
Coding & Debugging

Write a State Machine

بناء آلة حالات states machine

32
Implement a state machine for [DESCRIBE SYSTEM WITH STATES]. Define all states, transitions, guards, and actions.
0 copies
Coding & Debugging

Build a Queue System

بناء نظام طوابير للمهام

33
Implement a job queue in [LANGUAGE] that processes [DESCRIBE JOBS]. Include priority levels, retry logic, dead letter handling, and a way to monitor queue depth.
0 copies
Coding & Debugging

Create an SDK

تصميم SDK سهل الاستخدام لأي API

34
Design and write a basic SDK in [LANGUAGE] for the following API. Make it easy to use, well documented, and handle authentication automatically: [PASTE API SPEC]
0 copies
Coding & Debugging

Optimize a React Component

إصلاح مشاكل الأداء في مكوّن React

35
This React component is re-rendering too often and causing performance issues. Analyze it and fix the performance problems: [PASTE COMPONENT]
0 copies
Coding & Debugging

Write Integration Tests

كتابة اختبارات تكامل شاملة

36
Write integration tests for this API endpoint that test the full request/response cycle including the database: [PASTE ENDPOINT CODE]
0 copies
Coding & Debugging

Implement Search Functionality

إضافة بحث نصي كامل مع مطابقة ضبابية

37
Implement full-text search for [DESCRIBE DATA] using [TECHNOLOGY]. Include fuzzy matching, relevance scoring, and filtering by [FIELDS].
0 copies
Coding & Debugging

Build a Notification System

بناء نظام إشعارات بريد/SMS/Push

38
Design and implement a notification system that sends [EMAIL/SMS/PUSH] notifications when [DESCRIBE TRIGGERS]. Include templates, queuing, and delivery tracking.
0 copies
Coding & Debugging

Write a Parser

كتابة محلّل parser لأي صيغة بيانات

39
Write a parser in [LANGUAGE] that reads [DESCRIBE FORMAT] and outputs [DESCRIBE OUTPUT]. Handle malformed input gracefully.
0 copies
Coding & Debugging

Design an Event System

تصميم معمارية مدفوعة بالأحداث

40
Design an event-driven architecture for [DESCRIBE APPLICATION]. What events should exist, how should they be structured, and how should services communicate through them?
0 copies
Coding & Debugging

Implement File Upload

بناء معالج رفع ملفات آمن

41
Write a file upload handler in [FRAMEWORK] that accepts [FILE TYPES], validates size and type, stores files in [STORAGE], and returns a URL.
0 copies
Coding & Debugging

Build a Configuration System

تصميم نظام إدارة إعدادات متعدد البيئات

42
Design a configuration management system for [APPLICATION TYPE] that supports multiple environments, secret management, and runtime updates without restarts.
0 copies
Coding & Debugging

Write a Health Check Endpoint

بناء نقطة فحص صحة النظام

43
Write a health check endpoint for [FRAMEWORK] that checks database connectivity, external service availability, and system resources. Return appropriate HTTP status codes.
0 copies
Coding & Debugging

Implement Feature Flags

بناء نظام أعلام الميزات Feature Flags

44
Design and implement a feature flag system that allows enabling and disabling features per user, per percentage of traffic, or globally without deploying code.
0 copies
Coding & Debugging

Create a Logging System

بناء نظام تسجيل منظّم structured logging

45
Implement structured logging for [APPLICATION TYPE] that includes request IDs, user context, performance timing, and integrates with [LOGGING SERVICE].
0 copies
Coding & Debugging

Build a Report Generator

بناء مولّد تقارير مجدول

46
Write code that queries [DESCRIBE DATA SOURCE] and generates a [FORMAT] report showing [DESCRIBE METRICS]. Schedule it to run [FREQUENCY] and email it to [RECIPIENTS].
0 copies
Coding & Debugging

Implement Data Validation

بناء طبقة تحقق شاملة من المدخلات

47
Write a comprehensive data validation layer for this API. Validate all inputs, return clear error messages, and prevent any malformed data from reaching the database: [PASTE API SPEC]
0 copies
Coding & Debugging

Design a Plugin System

تصميم معمارية إضافات plugins

48
Design a plugin architecture for [APPLICATION] that allows third party developers to extend functionality without modifying core code. Define the plugin interface and lifecycle hooks.
0 copies
Coding & Debugging

Write a Load Testing Script

كتابة سكربت اختبار حِمل

49
Write a load testing script using [TOOL] that simulates [NUMBER] concurrent users performing [DESCRIBE USER ACTIONS] and reports on response times and error rates.
0 copies
Coding & Debugging

Build a Dashboard Backend

بناء واجهة خلفية للوحة تحكم لحظية

50
Design and write the backend for a real-time dashboard that shows [DESCRIBE METRICS]. Include WebSocket support, data aggregation, and efficient querying.
0 copies
AI Workflows

Design an AI Agent

تصميم وكيل ذكاء اصطناعي ينجز مهمة

51
Design an AI agent that can [DESCRIBE GOAL]. What tools does it need, what decisions should it make autonomously, what should require human approval, and how should it handle failures?
0 copies
AI Workflows

Build a Prompt Chain

بناء سلسلة برومبتات متعددة الخطوات

52
Design a multi-step prompt chain that takes [INPUT] and produces [OUTPUT]. Break it into discrete steps, define what each step does, and explain how outputs feed into the next step.
0 copies
AI Workflows

Create a System Prompt

كتابة برومبت نظام لمساعد ذكي

53
Write a system prompt for an AI assistant that works as a [DESCRIBE ROLE] for [DESCRIBE COMPANY/USE CASE]. Define its personality, capabilities, limitations, and how it should handle edge cases.
0 copies
AI Workflows

Evaluate Prompt Quality

تقييم وتحسين جودة أي برومبت

54
Evaluate this prompt and tell me everything that is wrong with it. Then rewrite it to be more precise, consistent, and likely to produce the output I actually want: [PASTE PROMPT]
0 copies
AI Workflows

Design a RAG System

تصميم نظام RAG لاسترجاع المعرفة

55
Design a Retrieval Augmented Generation system for [DESCRIBE USE CASE]. What data should be indexed, how should it be chunked, what embedding model should be used, and how should retrieval be structured?
0 copies
AI Workflows

Build a Classification Pipeline

بناء خط تصنيف بالذكاء الاصطناعي

56
Design an AI classification pipeline that categorizes [DESCRIBE INPUTS] into [DESCRIBE CATEGORIES]. Include data preprocessing, model selection, confidence thresholds, and handling of edge cases.
0 copies
AI Workflows

Create an Extraction Prompt

استخراج بيانات منظّمة من المستندات

57
Write a prompt that extracts [DESCRIBE INFORMATION] from [DESCRIBE DOCUMENT TYPE]. Output as structured JSON. Handle missing fields gracefully and flag uncertain extractions.
0 copies
AI Workflows

Design a Multi-Agent System

تصميم نظام وكلاء متعاونين

58
Design a multi-agent system where [NUMBER] AI agents collaborate to accomplish [DESCRIBE GOAL]. Define each agent's role, how they communicate, and how conflicts are resolved.
0 copies
AI Workflows

Build an AI Evaluation Framework

بناء إطار لتقييم جودة مخرجات الـ AI

59
Design a framework for evaluating the quality of AI outputs for [DESCRIBE USE CASE]. What metrics matter, how should they be measured, and what does good versus bad look like?
0 copies
AI Workflows

Create a Summarization Pipeline

بناء خط تلخيص محتوى

60
Design a pipeline that processes [DESCRIBE CONTENT TYPE] and produces [DESCRIBE SUMMARY FORMAT]. Handle varying lengths, extract key entities, and flag content that needs human review.
0 copies
AI Workflows

Design a Content Moderation System

تصميم نظام مراقبة محتوى ذكي

61
Design an AI content moderation pipeline for [DESCRIBE PLATFORM]. What categories of content need to be detected, what confidence thresholds trigger action, and how is the human review queue managed?
0 copies
AI Workflows

Build a Question Answering System

بناء نظام إجابة عن الأسئلة

62
Design a question answering system over [DESCRIBE KNOWLEDGE BASE]. How should documents be preprocessed, what retrieval strategy works best, and how should confidence be communicated to users?
0 copies
AI Workflows

Create a Data Enrichment Workflow

إثراء البيانات بالذكاء الاصطناعي

63
Design a workflow that takes [DESCRIBE INPUT DATA] and enriches it with [DESCRIBE ADDITIONAL INFORMATION] using AI. Define the steps, prompts, and how to handle failures.
0 copies
AI Workflows

Design an AI Writing Assistant

تصميم مساعد كتابة ذكي

64
Design an AI writing assistant for [DESCRIBE USE CASE]. What capabilities should it have, what constraints should it operate under, and how should it handle requests outside its scope?
0 copies
AI Workflows

Build a Feedback Loop System

بناء نظام تحسين ذاتي عبر التغذية الراجعة

65
Design a system where AI outputs are evaluated, feedback is collected, and the system improves over time for [DESCRIBE USE CASE]. How is quality measured and what triggers retraining?
0 copies
AI Workflows

Create a Document Processing Pipeline

بناء خط معالجة مستندات

66
Design a pipeline that ingests [DESCRIBE DOCUMENT TYPES], extracts structured data, validates it, and stores it in [DESCRIBE SYSTEM]. Handle OCR, various formats, and malformed inputs.
0 copies
AI Workflows

Design a Personalization Engine

تصميم محرك تخصيص ذكي

67
Design an AI personalization system for [DESCRIBE APPLICATION]. What signals should be used, how should recommendations be generated, and how should it handle new users with no history?
0 copies
AI Workflows

Build a Monitoring System for AI

مراقبة جودة وتكلفة خطوط الذكاء الاصطناعي

68
Design a monitoring system for an AI pipeline that tracks output quality, latency, cost, and failure rates. What alerts should exist and what dashboards should be built?
0 copies
AI Workflows

Create a Prompt Template Library

بناء مكتبة قوالب برومبت قابلة لإعادة الاستخدام

69
Create a library of 10 reusable prompt templates for [DESCRIBE USE CASE]. Each template should have placeholders, usage instructions, and example inputs and outputs.
0 copies
AI Workflows

Design a Human in the Loop System

تصميم نظام يدمج المراجعة البشرية

70
Design a system where AI handles [DESCRIBE TASKS] autonomously but routes edge cases to humans. Define the confidence thresholds, escalation paths, and how human feedback is incorporated.
0 copies
AI Workflows

Build a Knowledge Graph Pipeline

استخراج رسم بياني معرفي من المستندات

71
Design a pipeline that reads [DESCRIBE DOCUMENTS] and extracts entities, relationships, and facts into a knowledge graph. Define the schema and extraction prompts.
0 copies
AI Workflows

Create an AI Customer Service Agent

تصميم وكيل خدمة عملاء ذكي

72
Design an AI customer service agent for [DESCRIBE BUSINESS]. What questions can it answer, when should it escalate to a human, and how should it handle frustrated customers?
0 copies
AI Workflows

Design a Code Review AI

بناء نظام مراجعة كود تلقائي

73
Design an AI code review system that automatically reviews pull requests for [DESCRIBE STANDARDS]. What should it check, how should feedback be formatted, and what issues should block merges?
0 copies
AI Workflows

Build a Research Assistant

تصميم مساعد بحث ذكي

74
Design an AI research assistant that can [DESCRIBE RESEARCH TASKS]. How should it search, synthesize information, cite sources, and flag low confidence conclusions?
0 copies
AI Workflows

Create a Competitive Intelligence System

نظام مراقبة المنافسين وتقاريرهم

75
Design an AI system that monitors [DESCRIBE COMPETITORS] and produces weekly intelligence reports covering [DESCRIBE AREAS]. What data sources should it monitor and how should insights be prioritized?
0 copies
AI Workflows

Design a Meeting Intelligence System

تحليل محاضر الاجتماعات تلقائياً

76
Design an AI system that processes meeting transcripts and produces [DESCRIBE OUTPUTS: action items, summaries, decisions]. How should it handle multiple speakers and ambiguous assignments?
0 copies
AI Workflows

Build a Contract Analysis Pipeline

تحليل العقود واكتشاف المخاطر

77
Design an AI pipeline that analyzes contracts and flags [DESCRIBE RISK TYPES]. What clauses should trigger alerts, how should confidence be communicated, and when should a lawyer review?
0 copies
AI Workflows

Create a Sentiment Analysis System

بناء نظام تحليل المشاعر

78
Design a sentiment analysis system for [DESCRIBE DATA SOURCE]. What dimensions of sentiment matter, how should nuance be handled, and how should results be aggregated and reported?
0 copies
AI Workflows

Design a Lead Scoring System

تصميم نظام تقييم العملاء المحتملين

79
Design an AI lead scoring system for [DESCRIBE BUSINESS]. What signals predict conversion, how should scores be calculated, and how should the sales team use them?
0 copies
AI Workflows

Build a Content Recommendation Engine

بناء محرك توصيات المحتوى

80
Design a content recommendation engine for [DESCRIBE PLATFORM]. What signals drive recommendations, how should diversity be maintained, and how should new content be handled?
0 copies
AI Workflows

Create an Anomaly Detection System

بناء نظام كشف الشذوذ في البيانات

81
Design an AI anomaly detection system for [DESCRIBE DATA]. What constitutes an anomaly, how should severity be classified, and what should happen when one is detected?
0 copies
AI Workflows

Design a Translation Workflow

بناء سير عمل ترجمة ذكي

82
Design an AI translation workflow for [DESCRIBE CONTENT TYPE] from [SOURCE LANGUAGE] to [TARGET LANGUAGES]. How should terminology consistency be maintained and how should quality be validated?
0 copies
AI Workflows

Build a Proposal Generation System

توليد عروض أعمال بالذكاء الاصطناعي

83
Design an AI system that generates business proposals for [DESCRIBE BUSINESS]. What inputs does it need, what sections should proposals include, and how should customization work?
0 copies
AI Workflows

Create a Risk Assessment Framework

تصميم إطار تقييم المخاطر بالـ AI

84
Design an AI risk assessment system for [DESCRIBE DOMAIN]. What risk factors should be analyzed, how should they be weighted, and what output format helps decision makers act?
0 copies
AI Workflows

Design a Voice AI System

تصميم مساعد صوتي ذكي

85
Design a voice AI assistant for [DESCRIBE USE CASE]. How should speech be processed, what intents need to be recognized, and how should ambiguous requests be handled?
0 copies
AI Workflows

Build a Trend Detection System

بناء نظام رصد الاتجاهات الناشئة

86
Design an AI system that monitors [DESCRIBE DATA SOURCES] and identifies emerging trends in [DESCRIBE DOMAIN]. How should trends be validated and how should false positives be filtered?
0 copies
AI Workflows

Create a Compliance Checking System

نظام فحص الامتثال للوائح

87
Design an AI compliance checking system that validates [DESCRIBE CONTENT OR ACTIONS] against [DESCRIBE REGULATIONS]. How should violations be categorized and what remediation steps should be suggested?
0 copies
AI Workflows

Design an AI Onboarding System

نظام تأهيل ذكي للموظفين أو العملاء

88
Design an AI system that onboards new [EMPLOYEES/CUSTOMERS] by answering questions, guiding them through processes, and tracking their progress. How should gaps in knowledge be identified?
0 copies
AI Workflows

Build a Predictive Maintenance System

بناء نظام صيانة تنبؤية

89
Design an AI predictive maintenance system for [DESCRIBE EQUIPMENT OR SYSTEM]. What signals predict failure, how far in advance can failures be predicted, and what actions should be triggered?
0 copies
AI Workflows

Create an Inventory Management AI

إدارة المخزون بالذكاء الاصطناعي

90
Design an AI inventory management system for [DESCRIBE BUSINESS]. How should demand be forecasted, when should reorders be triggered, and how should seasonal patterns be handled?
0 copies
AI Workflows

Design a Financial Analysis Agent

تصميم وكيل تحليل مالي

91
Design an AI agent that analyzes [DESCRIBE FINANCIAL DATA] and produces [DESCRIBE OUTPUTS]. What data sources does it need, what calculations should it perform, and how should uncertainty be communicated?
0 copies
AI Workflows

Build a Social Media Monitoring System

مراقبة وسائل التواصل بالذكاء الاصطناعي

92
Design an AI system that monitors social media for [DESCRIBE TOPICS OR BRANDS]. What signals matter, how should sentiment be tracked, and what triggers an urgent alert?
0 copies
AI Workflows

Create a Technical Support AI

بناء دعم فني ذكي

93
Design an AI technical support system for [DESCRIBE PRODUCT]. How should it diagnose problems, when should it escalate, and how should it learn from resolved tickets?
0 copies
AI Workflows

Design a Price Optimization System

نظام تحسين التسعير الذكي

94
Design an AI pricing system for [DESCRIBE BUSINESS]. What factors should influence pricing, how should competitor prices be monitored, and how should price changes be validated before going live?
0 copies
AI Workflows

Build a Fraud Detection System

بناء نظام كشف الاحتيال

95
Design an AI fraud detection system for [DESCRIBE TRANSACTION TYPE]. What signals indicate fraud, how should false positive rates be managed, and what happens when fraud is detected?
0 copies
AI Workflows

Create an AI Scheduling System

نظام جدولة ذكي

96
Design an AI scheduling system for [DESCRIBE USE CASE]. How should it handle conflicts, priorities, constraints, and last minute changes?
0 copies
AI Workflows

Design a Quality Control AI

نظام مراقبة جودة بالذكاء الاصطناعي

97
Design an AI quality control system for [DESCRIBE PRODUCT OR PROCESS]. What defects should be detected, what accuracy is acceptable, and how should borderline cases be handled?
0 copies
AI Workflows

Build a News Aggregation System

تجميع وتلخيص الأخبار تلقائياً

98
Design an AI news aggregation and summarization system for [DESCRIBE TOPICS]. How should sources be ranked, bias be detected, and duplicate stories be deduplicated?
0 copies
AI Workflows

Create a Personalized Learning System

نظام تعلّم مخصص ذكي

99
Design an AI personalized learning system for [DESCRIBE SUBJECT]. How should knowledge gaps be identified, content difficulty be adjusted, and progress be measured?
0 copies
AI Workflows

Design a Supply Chain Intelligence System

ذكاء سلسلة الإمداد والتنبؤ بالاضطرابات

100
Design an AI system that monitors [DESCRIBE SUPPLY CHAIN] and predicts disruptions, optimizes inventory, and recommends actions. What data sources are critical?
0 copies
Research & Analysis

Deep Research Brief

ملخص بحثي شامل عن أي موضوع

101
Research [TOPIC] comprehensively. Cover the current state, key players, recent developments, open questions, and what experts disagree about. Structure as a research brief.
0 copies
Research & Analysis

Competitive Analysis

تحليل المنافسين بالتفصيل

102
Analyze [COMPANY/PRODUCT] against its top 5 competitors. Compare on [DIMENSIONS]. Identify where it leads, where it lags, and where the biggest opportunities are.
0 copies
Research & Analysis

Market Size Estimation

تقدير حجم السوق بطريقة منهجية

103
Estimate the market size for [DESCRIBE MARKET]. Use a bottom-up approach, show your assumptions clearly, and give a range rather than a single number.
0 copies
Research & Analysis

Argument Steel-Manning

تقديم أقوى نسخة من حجة معينة

104
Steel-man the argument that [CONTROVERSIAL POSITION]. Present the strongest possible version of this argument as its best advocate would make it. Then identify its weakest points.
0 copies
Research & Analysis

Investment Thesis Analysis

تحليل أطروحة استثمارية

105
Analyze the investment thesis for [COMPANY/ASSET]. What has to be true for this to be a good investment, what are the key risks, and what would change your view?
0 copies
Research & Analysis

SWOT Analysis

تحليل سوات عميق

106
Conduct a deep SWOT analysis for [COMPANY/PROJECT/IDEA]. Go beyond surface level observations and identify second-order implications of each factor.
0 copies
Research & Analysis

First Principles Analysis

تحليل من المبادئ الأولى

107
Break down [PROBLEM/INDUSTRY/ASSUMPTION] from first principles. What are the irreducible truths, what assumptions are people making that might be wrong, and what does this suggest?
0 copies
Research & Analysis

Historical Pattern Analysis

تحليل الأنماط التاريخية واستخلاص الدروس

108
Analyze historical examples of [DESCRIBE SITUATION OR PATTERN]. What patterns emerge, what caused success or failure, and what lessons apply to [CURRENT SITUATION]?
0 copies
Research & Analysis

Data Interpretation

تفسير البيانات واستخراج الرؤى

109
Interpret this data: [PASTE DATA OR DESCRIBE DATASET]. What are the key insights, what is surprising, what questions does it raise, and what decisions does it support?
0 copies
Research & Analysis

Risk Analysis

تحليل شامل للمخاطر

110
Conduct a comprehensive risk analysis for [DESCRIBE PROJECT OR DECISION]. Identify all risks, assess likelihood and impact, prioritize them, and suggest mitigations for the top five.
0 copies
Research & Analysis

Scenario Planning

تخطيط السيناريوهات المستقبلية

111
Develop three scenarios for [DESCRIBE SITUATION]: a base case, an optimistic case, and a pessimistic case. What would cause each to occur and how should we prepare for each?
0 copies
Research & Analysis

Literature Review

مراجعة الأدبيات والأبحاث الحالية

112
Summarize the current state of research on [TOPIC]. What is well established, what is contested, what are the major schools of thought, and what are the key open questions?
0 copies
Research & Analysis

Policy Analysis

تحليل السياسات من وجهات نظر متعددة

113
Analyze the policy [DESCRIBE POLICY] from multiple stakeholder perspectives. Who benefits, who is harmed, what are the intended and unintended consequences, and what alternatives exist?
0 copies
Research & Analysis

Technology Assessment

تقييم جدوى تقنية معينة

114
Assess the technology [DESCRIBE TECHNOLOGY] for use in [DESCRIBE CONTEXT]. Evaluate maturity, capabilities, limitations, costs, alternatives, and implementation risks.
0 copies
Research & Analysis

Business Model Analysis

تحليل نموذج عمل أي شركة

115
Analyze the business model of [COMPANY]. How does it make money, what are its unit economics, what drives growth, what are its vulnerabilities, and how defensible is it?
0 copies
Research & Analysis

Causal Chain Analysis

رسم سلسلة الأسباب والنتائج

116
Map the causal chain from [ROOT CAUSE] to [OUTCOME]. What are all the links in the chain, where could intervention have the most impact, and what feedback loops exist?
0 copies
Research & Analysis

Expert Synthesis

توليف آراء الخبراء حول موضوع

117
You are synthesizing the views of five leading experts on [TOPIC]. Present the areas of consensus, the key disagreements, and what the weight of expert opinion suggests.
0 copies
Research & Analysis

Trend Analysis

تحليل اتجاه وتأثيراته المتسلسلة

118
Analyze the trend of [DESCRIBE TREND]. How long has it been building, what is driving it, how durable is it, and what are its second and third order effects?
0 copies
Research & Analysis

Decision Framework

بناء إطار لاتخاذ القرار

119
Build a decision framework for [DESCRIBE DECISION TYPE]. What factors matter, how should they be weighted, what information is needed, and what does a good decision process look like?
0 copies
Research & Analysis

Gap Analysis

تحليل الفجوة بين الواقع والمأمول

120
Conduct a gap analysis between [CURRENT STATE] and [DESIRED STATE] for [DESCRIBE CONTEXT]. What are the gaps, what causes them, and what would close them most efficiently?
0 copies
Research & Analysis

Root Cause Analysis

تحليل السبب الجذري للمشكلة

121
Conduct a root cause analysis of [DESCRIBE PROBLEM OR FAILURE]. Use the five whys method, identify contributing factors, and recommend actions that address root causes not symptoms.
0 copies
Research & Analysis

Stakeholder Analysis

رسم خريطة أصحاب المصلحة

122
Map the stakeholders for [DESCRIBE PROJECT OR DECISION]. Who has power, who is affected, what does each party want, and how should each be engaged?
0 copies
Research & Analysis

Hypothesis Generation

توليد فرضيات قابلة للاختبار

123
Generate 10 testable hypotheses about [DESCRIBE PHENOMENON OR PROBLEM]. For each, describe what evidence would confirm or refute it and how it could be tested.
0 copies
Research & Analysis

Analogical Reasoning

التفكير بالقياس عبر مجالات متعددة

124
Find 5 historical or cross-industry analogies for [DESCRIBE SITUATION]. What can each analogy teach us and where does the analogy break down?
0 copies
Research & Analysis

Assumption Mapping

رسم خريطة الافتراضات الحرجة

125
Map all the assumptions underlying [DESCRIBE PLAN OR BELIEF]. Categorize them by how critical they are and how uncertain they are. Which assumptions most need to be tested?
0 copies
Research & Analysis

Second Order Effects

تحليل التأثيرات من الدرجة الثانية والثالثة

126
Analyze the second and third order effects of [DESCRIBE DECISION OR TREND]. Go beyond the obvious first order effects and identify what most people are missing.
0 copies
Research & Analysis

Benchmark Analysis

المقارنة المرجعية مع الأفضل

127
Benchmark [DESCRIBE SUBJECT] against industry best practices and top performers. Where does it rank, what specifically do the best performers do differently, and what is the improvement path?
0 copies
Research & Analysis

Customer Research Synthesis

توليف أبحاث ومقابلات العملاء

128
Synthesize these customer interviews and identify the most important patterns: [PASTE INTERVIEW NOTES OR TRANSCRIPTS]. What are the key pain points, desires, and surprising insights?
0 copies
Research & Analysis

Regulatory Landscape Analysis

تحليل المشهد التنظيمي والقانوني

129
Analyze the regulatory landscape for [DESCRIBE INDUSTRY OR ACTIVITY] in [GEOGRAPHY]. What regulations apply, what is changing, and what are the compliance risks?
0 copies
Research & Analysis

Technology Roadmap Analysis

تحليل خارطة طريق تقنية

130
Analyze the technology roadmap for [DESCRIBE TECHNOLOGY AREA]. What are the key milestones, what breakthroughs are needed, and what is the realistic timeline for [DESCRIBE CAPABILITY]?
0 copies
Research & Analysis

Mental Model Application

تطبيق نموذج ذهني على موقف

131
Apply the mental model of [DESCRIBE MENTAL MODEL] to analyze [DESCRIBE SITUATION]. What does this lens reveal that a conventional analysis would miss?
0 copies
Research & Analysis

Pre-Mortem Analysis

تحليل ما قبل الفشل

132
Conduct a pre-mortem for [DESCRIBE PLAN]. Imagine it is 12 months from now and this has failed. What went wrong, why did it fail, and what could have been done differently?
0 copies
Research & Analysis

Value Chain Analysis

تحليل سلسلة القيمة

133
Map the value chain for [DESCRIBE INDUSTRY]. Where is value created, where is it captured, where are the margins, and where is disruption most likely to occur?
0 copies
Research & Analysis

Network Effects Analysis

تحليل تأثيرات الشبكة

134
Analyze the network effects dynamics in [DESCRIBE MARKET OR PRODUCT]. What type of network effects exist, how strong are they, and what does this mean for competitive dynamics?
0 copies
Research & Analysis

Jobs to Be Done Analysis

تحليل المهام التي يوظّف العميل المنتج لإنجازها

135
Apply the Jobs to Be Done framework to understand why customers hire [DESCRIBE PRODUCT OR SERVICE]. What functional, emotional, and social jobs is it doing?
0 copies
Research & Analysis

Moat Analysis

تحليل الميزة التنافسية المستدامة

136
Analyze the competitive moat of [COMPANY]. What sustainable advantages does it have, how durable are they, and what would erode them?
0 copies
Research & Analysis

Demographic Analysis

تحليل الاتجاهات السكانية وتأثيرها

137
Analyze the demographic trends affecting [DESCRIBE MARKET OR INDUSTRY]. What shifts are occurring, how fast, and what are the implications for the next 10 years?
0 copies
Research & Analysis

Supply and Demand Analysis

تحليل العرض والطلب في السوق

138
Analyze the supply and demand dynamics for [DESCRIBE MARKET]. What drives demand, what constrains supply, how tight is the market, and what would shift the balance?
0 copies
Research & Analysis

Innovation Analysis

تحليل مشهد الابتكار في مجال

139
Analyze the innovation landscape in [DESCRIBE FIELD]. Where is innovation happening, who are the key innovators, what approaches are being tried, and where are the white spaces?
0 copies
Research & Analysis

Pricing Power Analysis

تحليل القدرة على التسعير

140
Analyze the pricing power of [COMPANY OR PRODUCT]. Can prices be raised without losing customers, what justifies premium pricing, and what limits pricing power?
0 copies
Research & Analysis

Channel Analysis

تحليل قنوات التوزيع

141
Analyze the distribution channels for [DESCRIBE PRODUCT OR SERVICE]. Which channels reach the target customer most efficiently, what are the economics of each, and what is the optimal mix?
0 copies
Research & Analysis

Brand Analysis

تحليل العلامة التجارية

142
Analyze the brand of [COMPANY]. What does it stand for, how is it perceived, what is its equity, and what would strengthen or damage it?
0 copies
Research & Analysis

Churn Analysis Framework

إطار تحليل تسرّب العملاء

143
Design a framework for analyzing customer churn in [DESCRIBE BUSINESS]. What are the leading indicators, what segments churn most, and what interventions are most effective?
0 copies
Research & Analysis

Partnership Strategy Analysis

تحليل استراتيجيات الشراكة

144
Analyze potential partnership strategies for [DESCRIBE COMPANY]. What types of partners would create the most value, what would make a partnership successful, and what are the risks?
0 copies
Research & Analysis

Go to Market Analysis

تحليل استراتيجية الدخول للسوق

145
Analyze the go to market strategy for [DESCRIBE PRODUCT]. Who is the beachhead customer, what is the sales motion, how does word of mouth work, and what drives viral growth?
0 copies
Research & Analysis

Operations Analysis

تحليل العمليات واكتشاف الاختناقات

146
Analyze the operations of [DESCRIBE BUSINESS]. Where are the bottlenecks, what processes are most critical, where is waste occurring, and what would have the highest impact to improve?
0 copies
Research & Analysis

Talent Analysis

تحليل سوق المواهب والتوظيف

147
Analyze the talent landscape for [DESCRIBE ROLE OR SKILL]. Where is the talent, what do they want, how competitive is hiring, and what would make [COMPANY] attractive to them?
0 copies
Research & Analysis

Platform vs Product Analysis

تحليل: منتج أم منصة؟

148
Analyze whether [DESCRIBE OFFERING] should be a product or a platform. What are the economics of each, what would make a platform successful, and what are the risks of each path?
0 copies
Research & Analysis

Seasonality Analysis

تحليل أنماط الموسمية

149
Analyze the seasonality patterns in [DESCRIBE BUSINESS OR MARKET]. How pronounced are they, what drives them, and how should strategy and operations adapt?
0 copies
Research & Analysis

Exit Strategy Analysis

تحليل استراتيجيات الخروج

150
Analyze potential exit strategies for [DESCRIBE COMPANY OR INVESTMENT]. What acquirers would be interested and why, what would drive valuation, and what is the realistic timeline?
0 copies
Automation

Map a Manual Process

رسم وأتمتة مهمة يدوية

151
I do this task manually: [DESCRIBE TASK]. Map every step in detail, identify which steps could be automated, and design an automation that handles the full workflow.
0 copies
Automation

Zapier Workflow Design

تصميم سير عمل Zapier

152
Design a Zapier workflow that automates [DESCRIBE PROCESS]. Define the trigger, all the steps in sequence, what data is passed between steps, and how errors are handled.
0 copies
Automation

Email Automation Sequence

تصميم سلسلة إيميلات تلقائية

153
Design an automated email sequence for [DESCRIBE PURPOSE]. Write the copy for each email, define the triggers and timing, and explain the goal of each message.
0 copies
Automation

Build a Data Pipeline

بناء خط أنابيب بيانات

154
Design a data pipeline that takes [DESCRIBE INPUT], transforms it by [DESCRIBE TRANSFORMATIONS], and loads it into [DESCRIBE DESTINATION]. Include error handling and monitoring.
0 copies
Automation

Automate Report Generation

أتمتة توليد التقارير وإرسالها

155
Design an automation that pulls data from [DESCRIBE SOURCES], calculates [DESCRIBE METRICS], generates a [FORMAT] report, and sends it to [RECIPIENTS] every [FREQUENCY].
0 copies
Automation

Build a Lead Qualification Bot

بوت تأهيل العملاء المحتملين

156
Design an automated lead qualification system that [DESCRIBE HOW LEADS COME IN], asks qualifying questions, scores them against [DESCRIBE CRITERIA], and routes them to the right person.
0 copies
Automation

Automate Social Media Posting

أتمتة النشر على وسائل التواصل

157
Design an automation that takes content from [DESCRIBE SOURCE], formats it for [PLATFORMS], schedules it for optimal times, and tracks performance. What tools would you use?
0 copies
Automation

Build a Customer Onboarding Automation

أتمتة تأهيل العملاء الجدد

158
Design an automated customer onboarding flow for [DESCRIBE PRODUCT]. What happens at each step, what triggers the next step, and how are stuck customers identified and helped?
0 copies
Automation

Automate Invoice Processing

أتمتة معالجة الفواتير

159
Design an automation that receives invoices by [METHOD], extracts key data, validates it against [DESCRIBE RULES], routes for approval, and updates [ACCOUNTING SYSTEM].
0 copies
Automation

Build a Monitoring Alert System

نظام تنبيهات ومراقبة آلي

160
Design an automated monitoring system for [DESCRIBE WHAT IS BEING MONITORED]. What metrics trigger alerts, how are alerts prioritized, and what information is included in each alert?
0 copies
Automation

Automate Customer Support Triage

فرز طلبات الدعم تلقائياً

161
Design an automation that receives support requests, categorizes them by type and priority, routes them to the right team, and sends acknowledgment to the customer.
0 copies
Automation

Build a Content Publishing Pipeline

خط نشر محتوى تلقائي

162
Design an automated content publishing pipeline that takes a draft, runs it through [DESCRIBE CHECKS], formats it for [PLATFORMS], schedules publication, and tracks distribution.
0 copies
Automation

Automate Competitive Monitoring

مراقبة المنافسين تلقائياً

163
Design an automation that monitors [DESCRIBE COMPETITORS] for changes to [DESCRIBE WHAT TO MONITOR] and delivers a weekly digest with the most important changes.
0 copies
Automation

Build a CRM Automation

أتمتة نظام إدارة العملاء CRM

164
Design automations for [CRM SYSTEM] that handle [DESCRIBE SCENARIOS]. What triggers each automation, what actions does it take, and how does it update records?
0 copies
Automation

Automate Contract Generation

أتمتة توليد العقود وتوقيعها

165
Design an automation that takes [DESCRIBE INPUTS], selects the right contract template, populates it with the correct data, and routes it for signatures via [E-SIGNATURE TOOL].
0 copies
Automation

Build an Inventory Reorder System

نظام إعادة طلب المخزون تلقائياً

166
Design an automation that monitors inventory levels for [DESCRIBE PRODUCTS], triggers reorder when stock falls below [THRESHOLD], generates purchase orders, and tracks delivery.
0 copies
Automation

Automate Employee Onboarding

أتمتة تأهيل الموظفين الجدد

167
Design an automated employee onboarding workflow that handles account creation, equipment provisioning, training assignments, introduction emails, and 30/60/90 day check-ins.
0 copies
Automation

Build a Feedback Collection System

نظام جمع التغذية الراجعة آلياً

168
Design an automated feedback collection system for [DESCRIBE TOUCHPOINTS]. When does it trigger, what questions does it ask, how is data aggregated, and how are action items generated?
0 copies
Automation

Automate Financial Reconciliation

أتمتة التسوية المالية

169
Design an automation that reconciles [DESCRIBE ACCOUNTS] by matching transactions, flagging discrepancies, generating exception reports, and updating records after review.
0 copies
Automation

Build a Knowledge Base Update System

تحديث قاعدة المعرفة آلياً

170
Design an automation that monitors [DESCRIBE SOURCES] for new information, suggests updates to [KNOWLEDGE BASE], routes them for approval, and publishes approved updates.
0 copies
Automation

Automate Meeting Follow-Ups

أتمتة متابعات الاجتماعات

171
Design an automation that processes meeting transcripts, extracts action items, assigns them to owners, creates tasks in [PROJECT MANAGEMENT TOOL], and sends follow-up emails.
0 copies
Automation

Build a Price Monitoring System

نظام مراقبة أسعار المنافسين

172
Design an automation that monitors competitor prices for [DESCRIBE PRODUCTS] across [CHANNELS], alerts when significant changes occur, and provides recommendations.
0 copies
Automation

Automate Job Posting and Screening

أتمتة نشر الوظائف وفرز المتقدمين

173
Design an automation for the recruitment process that posts jobs, screens applications against [CRITERIA], schedules interviews for qualified candidates, and sends rejections.
0 copies
Automation

Build a Compliance Monitoring System

مراقبة الامتثال آلياً

174
Design an automation that monitors [DESCRIBE ACTIVITIES] for compliance with [REGULATIONS], flags potential violations, and generates audit-ready reports.
0 copies
Automation

Automate Customer Win-Back

حملة استعادة العملaء المغادرين

175
Design an automated win-back campaign for churned customers. What triggers it, what is the sequence of messages, what offers are made, and when does it give up?
0 copies
Automation

Build a Partner Integration Automation

أتمتة التكامل مع أنظمة الشركاء

176
Design an automation that handles data exchange with [DESCRIBE PARTNER SYSTEM]. How does data flow, how are conflicts resolved, and how are errors handled?
0 copies
Automation

Automate Performance Reviews

أتمتة تقييمات الأداء

177
Design an automated performance review process that collects peer feedback, self assessments, and manager input, aggregates it, and generates review documents.
0 copies
Automation

Build a Document Approval Workflow

سير عمل اعتماد المستندات

178
Design an automated document approval workflow for [DESCRIBE DOCUMENT TYPE]. Who reviews at each stage, what triggers advancement, and how are rejections handled?
0 copies
Automation

Automate Customer Health Scoring

تقييم صحة العملاء آلياً

179
Design an automation that monitors [DESCRIBE CUSTOMER SIGNALS], calculates health scores, segments customers by risk, and triggers appropriate outreach for at-risk accounts.
0 copies
Automation

Build a Webhook Event Processing System

معالجة أحداث Webhook بموثوقية

180
Design a system that receives webhook events from [DESCRIBE SERVICES], routes them to the right handlers, processes them reliably, and handles retries and failures.
0 copies
Automation

Automate Sales Forecasting

أتمتة التنبؤ بالمبيعات

181
Design an automation that pulls data from [CRM AND OTHER SOURCES], applies [DESCRIBE FORECASTING MODEL], generates weekly forecast reports, and flags deals needing attention.
0 copies
Automation

Build a Content Moderation Pipeline

خط فرز ومراقبة المحتوى

182
Design an automated content moderation pipeline for [DESCRIBE PLATFORM]. What checks run automatically, what goes to human review, and how are appeals handled?
0 copies
Automation

Automate IT Ticket Routing

توجيه تذاكر الدعم التقني آلياً

183
Design an automation that receives IT support tickets, categorizes them, assigns priority, routes to the right team, and tracks resolution time against SLAs.
0 copies
Automation

Build a Subscription Management System

إدارة الاشتراكات آلياً

184
Design automations for managing [DESCRIBE SUBSCRIPTION BUSINESS]. Handle signups, upgrades, downgrades, failed payments, renewals, and cancellations automatically.
0 copies
Automation

Automate Market Research Collection

جمع أبحاث السوق آلياً

185
Design an automation that monitors [DESCRIBE SOURCES] for market intelligence on [TOPICS], filters for relevance, deduplicates, and delivers a curated daily briefing.
0 copies
Automation

Build an A/B Testing Automation

أتمتة اختبارات A/B

186
Design a system that sets up A/B tests for [DESCRIBE WHAT IS BEING TESTED], monitors results, determines statistical significance, implements winners, and documents learnings.
0 copies
Automation

Automate Expense Management

أتمتة إدارة المصروفات

187
Design an automation that processes expense submissions, validates against [DESCRIBE POLICY], routes for approval, rejects non-compliant expenses, and exports to payroll.
0 copies
Automation

Build a User Lifecycle Automation

أتمتة دورة حياة المستخدم

188
Design automated workflows for each stage of the user lifecycle for [DESCRIBE PRODUCT]: activation, engagement, retention, re-engagement, and win-back.
0 copies
Automation

Automate Quality Assurance Testing

أتمتة اختبارات ضمان الجودة

189
Design an automated QA pipeline for [DESCRIBE APPLICATION]. What tests run on each commit, what runs nightly, and what blocks deployment if it fails?
0 copies
Automation

Build a Data Quality Monitoring System

مراقبة جودة البيانات آلياً

190
Design an automation that monitors [DESCRIBE DATA SOURCES] for quality issues, alerts when data is missing or anomalous, and generates data quality scorecards.
0 copies
Automation

Automate Partner Reporting

أتمتة تقارير الشركاء

191
Design an automation that compiles performance data for [DESCRIBE PARTNER PROGRAM], generates partner-specific reports, and distributes them on a defined schedule.
0 copies
Automation

Build a Customer Communication Automation

أتمتة التواصل المخصص مع العملاء

192
Design an automation that triggers personalized communications to customers based on [DESCRIBE BEHAVIORS OR EVENTS]. What messages are sent, when, and through which channels?
0 copies
Automation

Automate Product Analytics Reporting

أتمتة تقارير تحليلات المنتج

193
Design an automation that pulls product usage data from [DESCRIBE SOURCES], calculates key metrics, generates a weekly product health report, and distributes it to stakeholders.
0 copies
Automation

Build a Security Scanning Pipeline

خط فحص أمني آلي

194
Design an automated security scanning pipeline for [DESCRIBE WHAT IS BEING SCANNED]. What tools run, what findings are critical versus informational, and how are remediations tracked?
0 copies
Automation

Automate Vendor Management

أتمتة إدارة الموردين

195
Design automations for vendor management including onboarding, contract renewals, performance reviews, invoice processing, and off-boarding.
0 copies
Automation

Build a Learning Management Automation

أتمتة نظام إدارة التعلّم

196
Design automations for [LMS PLATFORM] that assign courses based on [CRITERIA], send reminders, track completion, report to managers, and issue certificates.
0 copies
Automation

Automate Social Listening and Response

الاستماع والرد على وسائل التواصل آلياً

197
Design an automation that monitors social media for mentions of [BRAND/TOPICS], classifies them by sentiment and urgency, and routes to the right person for response.
0 copies
Automation

Build a Release Management Automation

أتمتة إدارة الإصدارات

198
Design an automated release management process for [DESCRIBE APPLICATION]. How are releases staged, tested, approved, deployed, and monitored?
0 copies
Automation

Automate Grant and Proposal Management

أتمتة إدارة المنح والمقترحات

199
Design an automation that tracks grant deadlines, compiles required documents, routes for review and approval, submits applications, and tracks outcomes.
0 copies
Automation

Build a Crisis Communication Automation

أتمتة التواصل وقت الأزمات

200
Design an automated crisis communication system that detects [DESCRIBE TRIGGER EVENTS], activates the response team, drafts communications, and manages the approval and distribution process.
0 copies
Content Creation

Viral Twitter Thread

كتابة ثريد تويتر فيروسي

201
Write a viral Twitter thread about [TOPIC]. Start with a scroll-stopping hook. Each tweet should deliver a standalone insight. End with a strong call to action. My audience is [DESCRIBE AUDIENCE].
0 copies
Content Creation

Long Form Article

كتابة مقال طويل مؤثر

202
Write a 1500 word article about [TOPIC] for [DESCRIBE AUDIENCE]. Lead with a compelling hook, use subheadings, include specific examples, and end with a memorable conclusion.
0 copies
Content Creation

Newsletter Issue

كتابة عدد نشرة بريدية

203
Write a newsletter issue on [TOPIC] for [DESCRIBE AUDIENCE]. Include an opening hook, the main insight, a practical takeaway, and a closing thought that leaves them thinking.
0 copies
Content Creation

YouTube Script

كتابة سكربت فيديو يوتيوب

204
Write a YouTube video script about [TOPIC]. Include a hook in the first 30 seconds, chapter markers, engaging transitions, a call to subscribe, and a strong ending that drives comments.
0 copies
Content Creation

LinkedIn Post

كتابة منشور لينكدإن احترافي

205
Write a LinkedIn post about [TOPIC] that is professional but personal. Share a specific experience or insight, make it relevant to [DESCRIBE AUDIENCE], and end with a question that drives comments.
0 copies
Content Creation

Email Campaign

حملة من 3 إيميلات تسويقية

206
Write a 3-email campaign for [DESCRIBE GOAL]. Email 1 builds awareness. Email 2 builds desire. Email 3 drives action. Each should have a strong subject line and a clear CTA.
0 copies
Content Creation

Product Description

كتابة وصف منتج يبيع

207
Write a compelling product description for [DESCRIBE PRODUCT]. Focus on benefits not features, address the main customer pain point, include social proof, and end with a clear CTA.
0 copies
Content Creation

Case Study

كتابة دراسة حالة لعميل

208
Write a customer case study for [DESCRIBE CUSTOMER AND OUTCOME]. Structure it as: the challenge, the solution, the implementation, and the measurable results. Make it specific and credible.
0 copies
Content Creation

Press Release

كتابة بيان صحفي

209
Write a press release announcing [DESCRIBE NEWS]. Follow AP style, lead with the most newsworthy angle, include quotes from [NAME/TITLE], and end with a boilerplate and contact information.
0 copies
Content Creation

Landing Page Copy

كتابة محتوى صفحة هبوط محسّن للتحويل

210
Write landing page copy for [DESCRIBE PRODUCT OR SERVICE]. Include a headline, subheadline, hero section, features section, social proof, FAQ, and a strong CTA. Optimize for conversion.
0 copies
Content Creation

Podcast Episode Outline

تخطيط حلقة بودكاست

211
Create a detailed outline for a podcast episode on [TOPIC]. Include an intro hook, 5 main segments with talking points, guest questions if applicable, and a closing CTA.
0 copies
Content Creation

Social Media Calendar

تقويم محتوى 30 يوم

212
Create a 30-day social media content calendar for [DESCRIBE BRAND] on [PLATFORMS]. Include post topics, formats, optimal posting times, and hashtag strategies.
0 copies
Content Creation

White Paper

كتابة ورقة بيضاء

213
Write an executive summary and outline for a white paper on [TOPIC]. Target audience is [DESCRIBE]. The paper should establish authority, present original research or insight, and recommend action.
0 copies
Content Creation

Video Ad Script

سكربت إعلان فيديو 60 ثانية

214
Write a 60-second video ad script for [DESCRIBE PRODUCT]. Hook in the first 5 seconds, present the problem, introduce the solution, show the benefit, and end with a clear CTA.
0 copies
Content Creation

Webinar Presentation

تخطيط عرض ويبينار

215
Create a 45-minute webinar presentation outline on [TOPIC]. Include audience engagement questions, a value packed middle section, and a strong close that drives registrations for [NEXT STEP].
0 copies
Content Creation

SEO Article

مقال محسّن لمحركات البحث SEO

216
Write a 2000 word SEO-optimized article targeting the keyword [KEYWORD]. Include the keyword naturally, use proper heading structure, answer the search intent, and include internal and external link opportunities.
0 copies
Content Creation

Sales Email Sequence

سلسلة إيميلات مبيعات باردة

217
Write a 5-email cold outreach sequence for [DESCRIBE OFFER] targeting [DESCRIBE PROSPECT]. Each email should be short, personalized, and move the conversation forward without being pushy.
0 copies
Content Creation

Bio and About Page

كتابة نبذة تعريفية احترافية

218
Write a compelling bio for [DESCRIBE PERSON] for use on [DESCRIBE CONTEXT]. Make it authoritative but human, highlight the most relevant credentials, and end with what they are working on now.
0 copies
Content Creation

Comparison Article

مقال مقارنة بين خيارين

219
Write a comparison article between [OPTION A] and [OPTION B] for [DESCRIBE USE CASE]. Be balanced, specific, and help the reader make the right choice for their situation.
0 copies
Content Creation

How To Guide

دليل إرشادي خطوة بخطوة

220
Write a comprehensive how-to guide for [DESCRIBE TASK] aimed at [DESCRIBE AUDIENCE]. Break it into clear steps, include common mistakes to avoid, and add pro tips throughout.
0 copies
Content Creation

Interview Questions

أسئلة مقابلة عميقة

221
Write 20 deep interview questions for [DESCRIBE GUEST] that will produce insightful, quotable answers. Avoid generic questions and get to the insights your audience actually wants.
0 copies
Content Creation

Book Summary

تلخيص كتاب بشكل شامل

222
Write a comprehensive summary of [BOOK TITLE]. Cover the core thesis, the most important ideas, the best frameworks, key quotes, and what actions a reader should take after reading it.
0 copies
Content Creation

Opinion Piece

كتابة مقال رأي قوي

223
Write a strong opinion piece arguing that [DESCRIBE POSITION] on the topic of [TOPIC]. Make the argument clearly, acknowledge counterarguments honestly, and end with a call to rethink conventional wisdom.
0 copies
Content Creation

FAQ Page

صفحة أسئلة شائعة شاملة

224
Write a comprehensive FAQ page for [DESCRIBE PRODUCT OR SERVICE]. Anticipate the real questions customers have including objections and concerns, and answer each one clearly and honestly.
0 copies
Content Creation

Onboarding Email Series

سلسلة إيميلات ترحيب للعملاء الجدد

225
Write a 7-email onboarding series for new [CUSTOMERS/USERS] of [DESCRIBE PRODUCT]. Each email should help them get one specific value as quickly as possible and build toward full adoption.
0 copies
Content Creation

Annual Report Narrative

كتابة سرد التقرير السنوي

226
Write the narrative sections of an annual report for [DESCRIBE COMPANY]. Cover the year in review, key achievements, challenges overcome, and vision for the year ahead. Tone should be honest and forward-looking.
0 copies
Content Creation

Thought Leadership Article

مقال قيادة فكرية

227
Write a thought leadership article establishing [NAME] as an authority on [TOPIC]. Share a contrarian or original insight, back it with evidence or experience, and challenge the reader to think differently.
0 copies
Content Creation

Event Invitation Copy

كتابة دعوة لفعالية

228
Write invitation copy for [DESCRIBE EVENT]. Create urgency, communicate the specific value of attending, address who should come, and make the registration CTA impossible to ignore.
0 copies
Content Creation

Testimonial Request Email

إيميل طلب شهادة عميل

229
Write an email asking [DESCRIBE CUSTOMER] for a testimonial for [DESCRIBE PRODUCT]. Make it easy to respond, suggest the format, and explain how it will be used.
0 copies
Content Creation

Product Launch Email

إيميل إطلاق منتج

230
Write a product launch email for [DESCRIBE PRODUCT] to [DESCRIBE AUDIENCE]. Build anticipation, communicate the key benefit clearly, create urgency, and drive clicks to [DESCRIBE CTA].
0 copies
Content Creation

Explainer Content

شرح موضوع معقّد ببساطة

231
Write an explainer for [COMPLEX TOPIC] aimed at [DESCRIBE AUDIENCE]. Use analogies and examples to make it accessible, avoid jargon, and leave the reader feeling like they actually understand it.
0 copies
Content Creation

Community Post

منشور تفاعلي للمجتمع

232
Write an engaging community post for [DESCRIBE COMMUNITY] on [TOPIC]. Start a conversation, share something genuinely useful, and end with a question that invites responses.
0 copies
Content Creation

Pitch Deck Narrative

سرد عرض تقديمي للمستثمرين

233
Write the narrative for a pitch deck for [DESCRIBE COMPANY]. Cover the problem, solution, market, traction, team, and ask. Make each slide advance the story compellingly.
0 copies
Content Creation

Awards Submission

كتابة طلب ترشّح لجائزة

234
Write an awards submission for [DESCRIBE COMPANY OR PROJECT] for the [DESCRIBE AWARD]. Highlight the most relevant achievements, use specific metrics, and make the case for why this deserves to win.
0 copies
Content Creation

Research Report Summary

ملخص تنفيذي لتقرير بحثي

235
Write a 500-word executive summary for a research report on [TOPIC]. Distill the key findings, highlight the most surprising insights, and state the recommended actions clearly.
0 copies
Content Creation

Product Update Announcement

إعلان تحديث منتج

236
Write an announcement for the product update [DESCRIBE UPDATE]. Lead with the user benefit, explain what changed and why, include any necessary instructions, and end with what is coming next.
0 copies
Content Creation

Evergreen Content Piece

محتوى دائم الصلاحية

237
Write an evergreen content piece on [TOPIC] that will still be relevant in five years. Focus on principles over tactics, include timeless examples, and structure it for easy reference.
0 copies
Content Creation

Controversy Take

رأي يتحدّى السائد

238
Write a take on [TOPIC] that challenges the mainstream view in [INDUSTRY/COMMUNITY]. Make the argument boldly, back it with evidence, and anticipate the strongest objections.
0 copies
Content Creation

Brand Story

كتابة قصة العلامة التجارية

239
Write the brand story for [COMPANY]. Cover the founding moment, the problem being solved, the mission, what makes the company different, and where it is going. Make it human and memorable.
0 copies
Content Creation

Re-Engagement Campaign

حملة إعادة تفاعل العملاء

240
Write a 3-email re-engagement campaign for [DESCRIBE INACTIVE SEGMENT]. Acknowledge the gap, offer genuine value to come back, and give them a clear reason to re-engage now.
0 copies
Content Creation

Workshop Curriculum

تصميم منهج ورشة عمل

241
Design a half-day workshop curriculum on [TOPIC] for [DESCRIBE AUDIENCE]. Include learning objectives, session breakdown, activities, materials needed, and how you will measure success.
0 copies
Content Creation

Investor Update Email

إيميل تحديث شهري للمستثمرين

242
Write a monthly investor update email for [DESCRIBE COMPANY]. Cover progress against goals, key metrics, wins, challenges, what you need, and what you are focused on next month.
0 copies
Content Creation

Partnership Proposal

كتابة مقترح شراكة

243
Write a partnership proposal to [DESCRIBE POTENTIAL PARTNER] from [DESCRIBE YOUR COMPANY]. Make the value to both parties clear, propose specific collaboration mechanics, and suggest concrete next steps.
0 copies
Content Creation

Referral Program Copy

محتوى برنامج إحالة العملاء

244
Write the copy for a customer referral program for [DESCRIBE PRODUCT]. Include the program explanation, the offer, how it works, the terms, and promotional messages for customers to share.
0 copies
Content Creation

Community Guidelines

كتابة إرشادات المجتمع

245
Write community guidelines for [DESCRIBE COMMUNITY]. Cover what behavior is expected, what is not allowed, how violations are handled, and the values that underpin the rules. Make them human not legalistic.
0 copies
Content Creation

Job Description

كتابة وصف وظيفي جذّاب

246
Write a job description for a [JOB TITLE] at [DESCRIBE COMPANY]. Make the role compelling to the right candidate, be honest about challenges, describe the impact they will have, and list only the requirements that actually matter.
0 copies
Content Creation

Grant Proposal Narrative

سرد مقترح منحة تمويلية

247
Write the narrative section of a grant proposal for [DESCRIBE PROJECT] seeking funding from [DESCRIBE FUNDER]. Make the case for impact, explain the approach, demonstrate capability, and align with funder priorities.
0 copies
Content Creation

Crisis Communication Statement

بيان تواصل وقت الأزمات

248
Write a crisis communication statement for [DESCRIBE SITUATION]. Acknowledge the issue directly, take appropriate responsibility, explain what is being done, and communicate what stakeholders can expect next.
0 copies
Content Creation

Product Roadmap Communication

شرح خارطة طريق المنتج

249
Write a communication to [DESCRIBE AUDIENCE] explaining the product roadmap for [DESCRIBE PRODUCT]. Explain the strategic direction, what is coming when, and what it means for them.
0 copies
Content Creation

Year in Review

مراجعة العام بصدق

250
Write a year in review post for [DESCRIBE PERSON OR COMPANY]. Cover the biggest wins, the hardest lessons, what changed your thinking, and what you are most excited about for next year. Be honest and specific.
0 copies
Productivity Systems

Daily Planning System

تصميم نظام تخطيط يومي

251
Design a daily planning system for [DESCRIBE ROLE AND GOALS]. Include morning routine, time blocking, priority framework, end of day review, and how to handle interruptions and unexpected tasks.
0 copies
Productivity Systems

Weekly Review Template

قالب مراجعة أسبوعية

252
Create a weekly review template for [DESCRIBE PERSON AND GOALS]. Cover what got done, what did not, what was learned, priorities for next week, and any systems that need adjustment.
0 copies
Productivity Systems

Goal Setting Framework

إطار وضع الأهداف وتتبّعها

253
Design a goal setting framework for [DESCRIBE CONTEXT]. Cover how goals are set, how they cascade to daily actions, how progress is tracked, and how to course correct when off track.
0 copies
Productivity Systems

Meeting Effectiveness System

نظام لاجتماعات أكثر فعالية

254
Design a system for making meetings more effective for [DESCRIBE TEAM OR ORGANIZATION]. Cover when meetings should happen, how they are structured, how decisions are documented, and how follow-up is managed.
0 copies
Productivity Systems

Decision Making Framework

إطار اتخاذ القرارات

255
Create a decision making framework for [DESCRIBE TYPE OF DECISIONS]. Define what information is needed, who should be involved, how options should be evaluated, and how decisions should be documented.
0 copies
Productivity Systems

Email Management System

نظام إدارة البريد الإلكتروني

256
Design a system for managing email for [DESCRIBE ROLE]. Cover inbox organization, response time standards, templates for common responses, and how to achieve and maintain inbox zero.
0 copies
Productivity Systems

Knowledge Management System

نظام إدارة المعرفة الشخصية

257
Design a personal knowledge management system for [DESCRIBE PERSON AND WORK]. Cover how information is captured, organized, linked, retrieved, and how it is converted into output.
0 copies
Productivity Systems

Project Management Template

قالب إدارة المشاريع

258
Create a project management template for [DESCRIBE TYPE OF PROJECT]. Include project brief, stakeholder map, milestone plan, risk register, communication plan, and retrospective framework.
0 copies
Productivity Systems

Habit Building System

نظام بناء العادات

259
Design a habit building system for adding [DESCRIBE HABITS] to a [DESCRIBE PERSON]'s routine. Cover habit design, tracking, accountability, recovery from missed days, and how to stack habits effectively.
0 copies
Productivity Systems

Focus and Deep Work System

نظام العمل العميق والتركيز

260
Design a system for protecting and maximizing deep work time for [DESCRIBE ROLE]. Cover environment design, scheduling, managing interruptions, and measuring output quality.
0 copies
Productivity Systems

Delegation Framework

إطار تفويض المهام

261
Design a delegation framework for [DESCRIBE MANAGER AND TEAM]. Cover what to delegate, how to brief tasks, what oversight is appropriate, and how to develop team members through delegation.
0 copies
Productivity Systems

Content Creation System

نظام إنتاج المحتوى بانتظام

262
Design a content creation system for producing [DESCRIBE CONTENT TYPE] consistently. Cover ideation, drafting, editing, production, distribution, and performance review.
0 copies
Productivity Systems

Personal Finance System

نظام إدارة المالية الشخصية

263
Design a personal finance tracking and management system for [DESCRIBE FINANCIAL SITUATION AND GOALS]. Cover income tracking, expense categories, savings automation, investment review, and monthly reconciliation.
0 copies
Productivity Systems

Learning System

نظام تعلّم فعّال

264
Design a system for learning [DESCRIBE SUBJECT OR SKILL] efficiently. Cover how to find the best resources, how to process and retain information, how to practice, and how to measure progress.
0 copies
Productivity Systems

Network Building System

نظام بناء شبكة العلاقات

265
Design a system for building and maintaining a professional network for [DESCRIBE PERSON AND GOALS]. Cover how to meet new people, how to stay in touch, how to provide value, and how to track relationships.
0 copies
Productivity Systems

Reading and Note Taking System

نظام القراءة وتدوين الملاحظات

266
Design a system for reading and retaining insights from [DESCRIBE READING MATERIAL]. Cover selection criteria, active reading techniques, note taking format, review schedule, and how to apply insights.
0 copies
Productivity Systems

Morning Routine Design

تصميم روتين صباحي مثالي

267
Design an optimal morning routine for [DESCRIBE PERSON, GOALS, AND CONSTRAINTS]. Cover wake time, physical activity, mindset practices, planning, and how to make it sustainable long term.
0 copies
Productivity Systems

Energy Management System

نظام إدارة الطاقة

268
Design an energy management system for [DESCRIBE PERSON AND WORK]. Cover how to schedule tasks by energy level, recovery practices, nutrition and sleep optimization, and how to identify energy drains.
0 copies
Productivity Systems

Feedback System

نظام إعطاء وتلقّي التغذية الراجعة

269
Design a system for giving and receiving feedback in [DESCRIBE CONTEXT]. Cover how feedback is solicited, delivered, received, processed, and acted upon.
0 copies
Productivity Systems

Idea Management System

نظام إدارة الأفكار

270
Design a system for capturing, developing, and acting on ideas for [DESCRIBE PERSON AND CONTEXT]. Cover how ideas are captured, evaluated, developed, prioritized, and either implemented or archived.
0 copies
Productivity Systems

Client Management System

نظام إدارة العملاء للمستقلين

271
Design a client management system for [DESCRIBE FREELANCER OR AGENCY]. Cover onboarding, communication standards, project tracking, invoicing, and relationship maintenance.
0 copies
Productivity Systems

Hiring System

نظام توظيف فعّال

272
Design a hiring system for [DESCRIBE ROLE AND COMPANY]. Cover job scoping, sourcing, screening, interviews, assessment, offers, and onboarding. Minimize bias and time to hire.
0 copies
Productivity Systems

Sales Process System

تصميم عملية مبيعات

273
Design a sales process for [DESCRIBE PRODUCT AND MARKET]. Cover prospecting, qualification, discovery, proposal, negotiation, closing, and handoff to customer success.
0 copies
Productivity Systems

Customer Success Playbook

دليل نجاح العملاء

274
Design a customer success playbook for [DESCRIBE PRODUCT]. Cover onboarding, health monitoring, QBRs, expansion plays, renewal process, and churn prevention.
0 copies
Productivity Systems

Team Communication System

نظام تواصل الفريق

275
Design a team communication system for [DESCRIBE TEAM]. Cover which tools are used for what, response time expectations, meeting cadences, and how decisions and context are documented.
0 copies
Productivity Systems

Performance Management System

نظام إدارة الأداء

276
Design a performance management system for [DESCRIBE TEAM]. Cover goal setting, regular check-ins, performance reviews, recognition, and how to handle underperformance.
0 copies
Productivity Systems

Personal Productivity Audit

تدقيق الإنتاجية الشخصية

277
Conduct a personal productivity audit framework for [DESCRIBE ROLE]. Cover how to identify time wasters, measure output versus activity, find leverage points, and redesign the workday.
0 copies
Productivity Systems

Quarterly Planning System

نظام تخطيط ربع سنوي

278
Design a quarterly planning system for [DESCRIBE PERSON OR TEAM]. Cover how to review the previous quarter, set priorities for the next, allocate resources, and create accountability.
0 copies
Productivity Systems

Research and Synthesis System

نظام البحث وتوليف الرؤى

279
Design a system for conducting research on [DESCRIBE TOPIC TYPE] and synthesizing it into actionable insights. Cover source selection, reading strategy, note-taking, synthesis, and output format.
0 copies
Productivity Systems

Product Development System

نظام تطوير المنتجات

280
Design a product development system for [DESCRIBE TEAM]. Cover discovery, prioritization, specification, design, development, testing, launch, and post-launch review.
0 copies
Productivity Systems

Budget Management System

نظام إدارة الميزانية

281
Design a budget management system for [DESCRIBE CONTEXT]. Cover how budgets are set, tracked, reviewed, and how variances are identified and addressed.
0 copies
Productivity Systems

Conflict Resolution Framework

إطار حل النزاعات

282
Design a conflict resolution framework for [DESCRIBE CONTEXT]. Cover how conflicts are surfaced, the resolution process, who is involved, and how outcomes are documented.
0 copies
Productivity Systems

Innovation System

نظام توليد وتطوير الابتكار

283
Design a system for generating and developing innovative ideas in [DESCRIBE ORGANIZATION]. Cover how ideas are submitted, evaluated, developed, resourced, and implemented.
0 copies
Productivity Systems

Vendor Selection Framework

إطار اختيار الموردين

284
Design a vendor selection framework for [DESCRIBE TYPE OF PURCHASE]. Cover requirements gathering, market scanning, RFP process, evaluation criteria, and decision documentation.
0 copies
Productivity Systems

Crisis Management System

نظام إدارة الأزمات

285
Design a crisis management system for [DESCRIBE ORGANIZATION]. Cover how crises are detected, classified, escalated, managed, communicated, and reviewed after resolution.
0 copies
Productivity Systems

Training and Development System

نظام التدريب والتطوير

286
Design a training and development system for [DESCRIBE TEAM]. Cover skills assessment, learning paths, delivery methods, progress tracking, and how learning connects to performance.
0 copies
Productivity Systems

OKR System

تطبيق نظام OKR

287
Design an OKR implementation for [DESCRIBE ORGANIZATION OR TEAM]. Cover how OKRs are set, cascaded, tracked, reviewed, and how they connect to compensation and recognition.
0 copies
Productivity Systems

Retrospective System

نظام المراجعات الاسترجاعية

288
Design a retrospective system for [DESCRIBE TEAM]. Cover cadence, format, facilitation, how insights are captured, how action items are tracked, and how the team measures whether retrospectives are working.
0 copies
Productivity Systems

Documentation System

نظام التوثيق

289
Design a documentation system for [DESCRIBE TEAM OR PRODUCT]. Cover what needs to be documented, who is responsible, where it lives, how it stays current, and how people find what they need.
0 copies
Productivity Systems

Offboarding System

نظام إنهاء خدمة الموظفين

290
Design an employee offboarding system for [DESCRIBE ORGANIZATION]. Cover knowledge transfer, access revocation, exit interviews, equipment return, and maintaining the relationship for future reference.
0 copies
Productivity Systems

Content Calendar System

نظام تقويم المحتوى

291
Design a content calendar system for [DESCRIBE BRAND]. Cover how topics are generated, assigned, produced, reviewed, scheduled, and how performance informs future planning.
0 copies
Productivity Systems

Partnership Management System

نظام إدارة الشراكات

292
Design a system for managing strategic partnerships for [DESCRIBE COMPANY]. Cover partner onboarding, communication cadence, joint planning, performance tracking, and renewal process.
0 copies
Productivity Systems

Procurement System

نظام المشتريات

293
Design a procurement system for [DESCRIBE ORGANIZATION]. Cover how needs are identified, approved, sourced, contracted, and how supplier performance is managed.
0 copies
Productivity Systems

Risk Management System

نظام إدارة المخاطر

294
Design a risk management system for [DESCRIBE ORGANIZATION OR PROJECT]. Cover how risks are identified, assessed, prioritized, mitigated, monitored, and reported.
0 copies
Productivity Systems

Customer Feedback System

نظام جمع آراء العملاء

295
Design a comprehensive customer feedback system for [DESCRIBE BUSINESS]. Cover all feedback touchpoints, how feedback is collected, analyzed, prioritized, actioned, and communicated back to customers.
0 copies
Productivity Systems

Data Governance System

نظام حوكمة البيانات

296
Design a data governance system for [DESCRIBE ORGANIZATION]. Cover data ownership, quality standards, access controls, compliance requirements, and how data issues are reported and resolved.
0 copies
Productivity Systems

Brand Management System

نظام إدارة العلامة التجارية

297
Design a brand management system for [DESCRIBE BRAND]. Cover brand guidelines, approval processes, asset management, consistency monitoring, and how the brand evolves over time.
0 copies
Productivity Systems

Strategic Planning System

نظام التخطيط الاستراتيجي

298
Design a strategic planning system for [DESCRIBE ORGANIZATION]. Cover the annual planning cycle, how market intelligence informs strategy, how plans are communicated, and how execution is tracked.
0 copies
Productivity Systems

Personal Board of Directors

تصميم مجلس استشاري شخصي

299
Design a personal board of directors system for [DESCRIBE PERSON AND GOALS]. Cover who should be on it, how to recruit members, what the relationship looks like, and how to get maximum value from each advisor.
0 copies
Productivity Systems

Life Design System

نظام تصميم الحياة المتكامل

300
Design a comprehensive life design system for [DESCRIBE PERSON]. Cover career, relationships, health, finances, learning, and personal fulfillment. Include how all areas are reviewed and balanced over time.
0 copies
No prompts match your search. Try a different keyword or category.
لا توجد برومبتات تطابق بحثك. جرب كلمة أو فئة مختلفة.