AISuperHub

MSM-RoyalCommunity Prompt for ChatGPT, Gemini & Claude

This prompt helps manage and grow an exclusive online community, fostering loyalty and engagement among premium members.

Magoshi-SM-PMA prod by(power-tu.com)https://ai.studio/apps/a95ec2f8-c7e2-4098-8a96-634f7e6c1761?fullscreenApplet=true

import React, { useState, useEffect, useRef } from 'react'; import { Home, Newspaper, Users, Landmark, FileText, Calendar, MessageSquare, Settings, Plus, Search, Image as ImageIcon, Video, ThumbsUp, MessageCircle, Bot, Shield, BarChart3, AlertTriangle, FileCode, Sparkles, ChevronDown, Send, X, Zap, UserPlus, ClipboardList, Mic, User, Upload, CheckCircle } from 'lucide-react'; import { motion, AnimatePresence } from 'framer-motion';

const API_KEY = ""; // User provides key const API_URL = https://generativelanguage.googleapis.com/v1beta/models/gemini-3-flash-preview:generateContent?key=${API_KEY};

const SYSTEM_PROMPT = You are the AI Political Aide for the Magoshi Swaranang Movement (MSM). Your persona is professional, patriotic, strategic, and community-focused. You advise on political strategy, policy development, community engagement, and governance. Always prioritize the MSM values of integrity, service, and grassroots empowerment. You are the Swaranang Envoy - wearing green, yellow, and black colors of the movement. You provide real-time news on South African government and local community updates.;

export default function App() { const [activeTab, setActiveTab] = useState('Feed'); const [userRole, setUserRole] = useState('Admin'); // 'Member' or 'Admin' const [isAiOpen, setIsAiOpen] = useState(true);

return (

  <main className="flex-1 overflow-y-auto">
    <header className="p-6 border-b border-gray-800 flex justify-between items-center bg-[#121212]/80 backdrop-blur-md sticky top-0 z-20">
      <h1 className="text-xl font-bold text-[#00A651]">{activeTab}</h1>
    </header>
    <div className="p-6 max-w-4xl mx-auto">
      {activeTab === 'Feed' && <CommunityFeed userRole={userRole} />}
      {activeTab !== 'Feed' && <div className="text-center text-gray-500 pt-20">Module: {activeTab} (Available in Full Deployment)</div>}
    </div>
  </main>
  
  <FloatingAIAgent />
</div>

); }

const FloatingAIAgent = () => { const [response, setResponse] = useState("Greetings! I am your Swaranang Envoy. Ask me about SA News or Movement strategy!"); const [loading, setLoading] = useState(false);

const fetchAI = async (prompt) => { setLoading(true); try { const response = await fetch(API_URL, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ contents: [{ parts: [{ text: ${SYSTEM_PROMPT}\nRequest: ${prompt} }] }], tools: [{ google_search: {} }]

Try it Live for FREE

Test this prompt directly in our chat interface below.

How to Use This Prompt

This prompt is designed to be a ready-to-use template. Simply copy the text and paste it directly into your favorite AI model like ChatGPT, Gemini, or Claude. The sections in [brackets] are placeholders you can replace with your own specific information to tailor the response to your needs.

Why this prompt works:

  • Clear Role-playing: It assigns a specific, expert persona to the AI.
  • Defined Goal: It clearly states the objective of the task.
  • Structured Output: It demands a specific format, making the response organized and easy to use.

Share this prompt

Frequently Asked Questions