ناصر العامري
مهندس ومطور في الذكاء الإصطناعي

ناصرالعامري

أبني أدوات ذكاء اصطناعي وأشاركك الأوامر الذكية والمنتجات الرقمية لمساعدتك على الاستفادة القصوى من الذكاء الاصطناعي.

استكشف

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

برومبتات منتقاة وجاهزة للإستخدام.

عرض الكل
الإبداع

Pixar style image

Prompt to create a premium Pixar-style 3D character sticker set

Create a premium Pixar-style 3D character sticker set that is clearly recognizable as the same person. Use the uploaded image as the ONLY facial reference.
Output Requirements:
3×6 grid layout (9 stickers total)
Final aspect ratio: 9:16
Ultra high resolution (8K)
Clean cream background
Each sticker is separated with clear spacing
Add a subtle drop shadow under each sticker for depth
Character Identity (VERY IMPORTANT):
MUST preserve exact facial structure, hairstyle, grooming details, and unique features from the uploaded image
Maintain high likeness accuracy
Do NOT over beautify or alter identity beyond recognition
Style:
Pixar-style 3D animation
Glossy, high-end rendering
Soft global illumination
Smooth shading
High-detail facial textures
Framing:
All stickers must be head and shoulders (portrait close-up) only
No full-body or mid-body shots allowed
Focus tightly on face and upper shoulders to emphasize expressions
Outfit:
Modern casual and slightly stylized clothing
Each sticker must have a different outfit (no repetition at all)
Clean, minimal, and visually appealing for sticker use
Expressions & Poses (9 variations):
1. Happy smile
2. Laughing
3. Cool (with sunglasses)
4. Angry/serious
5. Surprised
6. Thinking
7. Wink
8. Love (heart eyes and heart gesture)
9. Thumbs up
Sticker Design:
Bold, clean outline
Slightly exaggerated cartoon proportions
Strong emphasis on facial expressions
Optimized for digital sticker platforms
Each sticker must have a smooth rounded bottom cutout (semi-curved base)
No text
Lighting:
Soft studio lighting
Subtle rim light for depth and separation
Goal:
Create a highly engaging, cute, and expressive sticker pack that feels premium and collectable.
البرمجة

سكرتير الايميلات

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

const ANTHROPIC_API_KEY = "your-anthropic-api-key-here";
const MY_EMAIL = Session.getActiveUser().getEmail();

function runEmailAgent() {
  const threads = GmailApp.search("is:unread", 0, 100);

  if (!threads.length) {
    Logger.log("No unread emails. Done.");
    return;
  }

  const emailList = threads.map(thread => {
    const msg = thread.getMessages()[0];
    return [
      "From: " + msg.getFrom(),
      "Subject: " + msg.getSubject(),
      "Date: " + msg.getDate(),
      "Preview: " + msg.getPlainBody().slice(0, 300)
    ].join("\n");
  }).join("\n\n---\n\n");

  threads.forEach(t => t.markRead());
  Logger.log("Emails fetched and marked as read. Count: " + threads.length);

  let summary;
  try {
    const response = UrlFetchApp.fetch("https://api.anthropic.com/v1/messages", {
      method: "POST",
      headers: {
        "x-api-key": ANTHROPIC_API_KEY,
        "anthropic-version": "2023-06-01",
        "Content-Type": "application/json"
      },
      payload: JSON.stringify({
        model: "claude-sonnet-4-20250514",
        max_tokens: 1500,
        messages: [{
          role: "user",
          content: `You are my personal email assistant. Analyze these ${threads.length} unread emails and give me:

1. A short overall summary (2-3 sentences)
2. A bullet list of key emails worth knowing about
3. A "Required Actions" section — only if there are actual action items, deadlines, or replies needed. Skip entirely if nothing requires action.

Be concise. Plain text, no markdown.

Emails:
${emailList}`
        }]
      })
    });

    Logger.log("API status: " + response.getResponseCode());
    summary = JSON.parse(response.getContentText()).content[0].text;

  } catch (e) {
    Logger.log("API call failed: " + e.message);
    GmailApp.sendEmail(MY_EMAIL, "Email Agent Error", "Claude API call failed: " + e.message);
    return;
  }

  GmailApp.sendEmail(
    MY_EMAIL,
    ` Email digest — ${threads.length} emails (${new Date().toLocaleDateString()})`,
    summary
  );

  Logger.log("Digest sent successfully.");
}
الكتابة

نموذج الأمر الذكي

نموذج أمر ذكي مبنى على أفضل الممارسات من قبل كلود

أنت [الدور — مثال: مساعد ذكي / معلم / محلل بيانات].

## السياق
[من هو المستخدم؟ ما هدفه؟ ما خلفيته؟]

## المهمة
مهمتك هي [وصف المهمة بدقة — ماذا تفعل بالضبط].

## القواعد
- افعل: [سلوك مطلوب — مثال: استخدم أمثلة من الحياة اليومية]
- افعل: [سلوك مطلوب ثانٍ]
- تجنّب: [سلوك غير مرغوب — مثال: لا تستخدم مصطلحات تقنية بدون شرح]
- اجعل ردودك في حدود [X] جمل ما لم يُطلب منك أكثر.

## الأسلوب
[دافئ وودّي / رسمي ودقيق / قصصي وشيّق]