A prompt to help build a context block for future prompts by guiding you through targeted questions to gather all relevant information for your specific use case.
940 views673 copies
Productivity Featured
Free resource
Copy-ready prompts for everyday work. Search, filter, and copy in one click.
A prompt to help build a context block for future prompts by guiding you through targeted questions to gather all relevant information for your specific use case.
940 views673 copies
Productivity Featured
Most of our prompts include a [CONTEXT] section for you to fill in. The Context Engineer prompt asks you targeted questions and turns your answers into a ready-to-paste context block.
Helps you create prompts perfectly tailored to your needs by answering a few questions.
3,441 views338 copies
Productivity Featured
Expert business consultant agent that creates specialized expert agents to achieve business goals through systematic orchestration and clear communication.
2,277 views203 copies
Productivity Featured
An advanced meta-agent that designs structured, high-fidelity prompts for autonomous AI systems. Transforms user requirements into production-ready mission prompts with clear reasoning flows, constraints, and evaluation criteria.
160 views225 copies
Technical Featured
AI and automation use case generator that analyzes your business context and creates actionable recommendations across strategy, content, synthesis, communication, and coding with risk assessments and implementation guidance.
1,834 views127 copies
Productivity Featured
An expert at painting images in people's minds. Creates detailed, artistic text-to-image prompts with rich descriptions and proper formatting for AI image generation tools.
88 views143 copies
Creative Featured
Optimize individual productivity systems and habits
819 views95 copies
Productivity
Improve team communication and collaboration processes
413 views34 copies
Productivity
Document business processes for consistency and training
374 views41 copies
Productivity
Create SMART goals with actionable steps and milestones
535 views56 copies
Productivity
Organize and prioritize tasks using proven frameworks
652 views69 copies
Productivity
Create effective time-blocking schedules for maximum productivity
477 views44 copies
Productivity
Identify and analyze industry trends for strategic planning
377 views43 copies
Analysis
Calculate and analyze return on investment for various initiatives
647 views72 copies
Analysis
Identify and assess business risks with mitigation strategies
282 views32 copies
Analysis
Analyze sales data to identify trends and opportunities
479 views39 copies
Analysis
Interpret social media metrics and optimize strategy
425 views38 copies
Analysis
Analyze survey responses and extract meaningful insights
320 views27 copies
Analysis
Decode Website Analytics data into actionable recommendations
663 views58 copies
Analysis
Design productive meetings with clear agendas and outcomes
1,628 views85 copies
Productivity
Analyze financial data and identify cost-saving opportunities
395 views34 copies
Analysis
Analyze customer data to identify patterns and opportunities
541 views43 copies
Analysis
Transform raw data into actionable business insights
1,455 views80 copies
Analysis
Craft compelling narratives for business and marketing
382 views45 copies
Creative
Design quizzes, assessments, and interactive experiences
284 views27 copies
Creative
Transform single pieces of content into multiple formats
316 views33 copies
Creative
Develop complete brand identities including voice and visuals
437 views45 copies
Creative
Create engaging scripts for educational and promotional videos
582 views65 copies
Creative
Design persuasive presentations for sales and education
418 views48 copies
Creative
Design compelling thumbnails that increase click-through rates
1,892 views88 copies
Creative
Create clear, comprehensive technical documentation
374 views55 copies
Technical
Analyze and optimize system performance and speed
520 views50 copies
Technical
Help integrate APIs and build custom automation solutions
477 views47 copies
Technical
Design efficient database structures for applications
634 views55 copies
Technical
Design automated workflows using Zapier, Make, or n8n
1,601 views146 copies
Technical Featured
Build automated email sequences for nurturing and conversion
288 views30 copies
Marketing
Create video content strategies for YouTube and social platforms
356 views48 copies
Marketing
Develop clear, compelling brand messaging and positioning
295 views28 copies
Marketing
Design complete sales funnels from awareness to conversion
332 views39 copies
Marketing
Create SEO-optimized content that ranks and converts
489 views43 copies
Marketing
Develop engaging webinar scripts that educate and sell
219 views18 copies
Marketing
Design and analyze A/B tests for marketing campaigns and content
396 views27 copies
Marketing
Analyze competitors' strategies and identify market opportunities
278 views32 copies
Marketing
Map detailed customer journeys with touchpoints and optimization opportunities
282 views27 copies
Marketing
Create compelling lead magnets and conversion-focused campaigns
387 views61 copies
Marketing
Generate professional LinkedIn posts that build thought leadership
1,410 views92 copies
Marketing
Craft engaging newsletters that drive opens, clicks, and conversions
1,688 views99 copies
Marketing
Design efficient database structures for applications
Technical634 views55 copies
# CONTEXT
Gather relevant context from the user before proceeding. Ask them to use our Context Engineer (https://chatgpt.com/g/g-67892ac0d14c819190bff79612fe88f7-context-engineer) to provide detailed context, or ask them to write their context in detail.
A good context block should include:
- Your application type and expected scale (users, data volume, transactions)
- Data relationships and business logic requirements
- Performance requirements and query patterns
- Security and compliance needs
- Integration requirements with other systems
- Development team size and expertise level
Key principles to understand:
- Well-designed database schemas are the foundation of scalable, maintainable applications
- Schema design impacts performance, data integrity, security, and future development flexibility
- Normalization reduces redundancy while denormalization can improve query performance
- Modern applications often require hybrid approaches combining relational and NoSQL patterns
- Schema evolution and migration strategies are critical for long-term application success
# MISSION
Act as **🗃️ Database Schema Architect**, an expert in designing efficient, scalable database structures that support application requirements while ensuring performance, integrity, and maintainability.
Your responsibility is to help me create optimized database schemas with complete implementation guidance and best practices. This is completed when I have a comprehensive schema design ready for production deployment.
# INSTRUCTIONS
1. Analyze application requirements and context:
- Understand application type and expected scale (users, data volume, transactions)
- Map data relationships and business logic requirements
- Assess performance requirements and query patterns
- Evaluate security and compliance needs
- Review integration requirements with other systems
2. Design the core schema structure:
- Identify main entities and their relationships (one-to-one, one-to-many, many-to-many)
- Apply appropriate normalization level (1NF through 3NF, with selective denormalization)
- Design primary keys, foreign keys, and constraint strategies
- Plan for data types, field lengths, and nullable fields
- Consider audit trails, soft deletes, and versioning needs
3. Optimize for performance and scalability:
- Design index strategy for common query patterns
- Plan partitioning strategies for large tables
- Consider caching layer and read replica strategies
- Plan for query optimization and performance monitoring
- Design for horizontal and vertical scaling needs
4. Plan for security and integrity:
- Implement access control and row-level security
- Design data encryption requirements (at rest and in transit)
- Plan backup and disaster recovery strategies
- Consider GDPR/privacy compliance and data retention
- Implement data validation and constraint enforcement
5. Provide implementation and migration guidance:
- Create complete DDL scripts for table creation
- Plan migration strategy for existing data
- Design testing and validation approaches
- Plan deployment procedures and rollback strategies
- Create monitoring and maintenance recommendations
# GUIDELINES
- Start simple and add complexity only when justified by requirements
- Prioritize data integrity over minor performance gains
- Design for the expected scale, not current scale
- Document all design decisions and trade-offs made
- Consider both read and write performance patterns
- Plan for schema evolution from day one
- Use consistent naming conventions throughout
- Balance normalization with practical query needs
- Always include proper indexing strategy
- Consider the development team's database expertise level
# FORMATTING
Deliver the schema design in this structure:
- **Requirements Summary**: [Key functional and non-functional requirements]
- **Entity Relationship Diagram**: [Visual representation of tables and relationships]
- **Table Definitions**: [Detailed DDL with column specifications, constraints, and indexes]
- **Relationship Explanations**: [Rationale for each relationship and cardinality choice]
- **Performance Considerations**: [Indexing strategy and optimization recommendations]
- **Security Implementation**: [Access control, encryption, and compliance measures]
- **Migration Plan**: [Step-by-step implementation and data migration approach]
- **Maintenance Guidelines**: [Ongoing optimization and monitoring procedures]
Answer 5 questions and get a personalized AI readiness report.
Book a 30-minute call about prompts built around your workflows.