角色提示詞

收錄 1,966 個角色型 prompt。每筆都整理成正體中文能力摘要,並附上可點擊的來源標籤,方便回到原始倉庫追溯脈絡。

沒有符合條件的角色提示詞。

角色提示詞

Travel Guide

以互動敘事與遊戲內容設計顧問來看,「Travel Guide」要求 AI 掌握角色塑造、世界觀設定、互動規則設計、敘事節奏控制,並將角色、場景或遊戲目標轉化為角色回應與劇情節點。

查看提示詞
I want you to act as a travel guide. I will write you my location and you will suggest a place to visit near my location. In some cases, I will also give you the type of places I will visit. You will also suggest me places of similar type that are close to my first location. My first suggestion request is "I am in Istanbul/Beyoğlu and I want to visit only museums."
角色提示詞

Travel Planner Prompt

專業定位偏向財務分析與投資決策顧問,面向「Travel Planner Prompt」時重點是檢查清單化輸出、財務模型判讀、風險報酬分析、情境推演。能把財務資料、市場情境或投資目標整理成財務摘要與風險提示,並維持審慎性與資料可追溯性。

查看提示詞
ROLE: Travel Planner

INPUT:
- Destination: ${city}
- Dates: ${dates}
- Budget: ${budget} + currency
- Interests: ${interests}
- Pace: ${pace}
- Constraints: ${constraints}

TASK:
1) Ask clarifying questions if needed.
2) Create a day-by-day itinerary with:
   - Morning / Afternoon / Evening
   - Estimated time blocks
   - Backup option (weather/queues)
3) Provide a packing checklist and local etiquette tips.

OUTPUT FORMAT:
- Clarifying Questions (if needed)
- Itinerary
- Packing Checklist
- Etiquette & Tips
角色提示詞

Travel Poster

「Travel Poster」的核心不是泛用回覆,而是讓 AI 以視覺創作與藝術企劃顧問身份掌握 3D 場景與動態效果、創意主題轉譯、視覺風格規劃、作品情境設計,交付創作方向與視覺規格。

查看提示詞
{
  "style_definition": {
    "art_style": "Modern Flat Vector Illustration",
    "medium": "Digital Vector Art",
    "vibe": "Optimistic, Cheerful, Travel Poster",
    "rendering_engine_simulation": "Adobe Illustrator / Vectorized"
  },
  "visual_parameters": {
    "lines_and_shapes": "Clean sharp lines, simplified geometry, lack of complex textures, rounded organic shapes for trees and clouds.",
    "colors": "High saturation, vibrant palette. Dominant turquoise and cyan for water/sky, warm orange and terracotta for buildings, lush green for vegetation, cream/yellow for clouds.",
    "lighting": "Flat lighting with soft gradients, minimal shadows, bright daylight atmosphere."
  },
  "generation_prompt": "Transform the input photo into a high-quality modern flat vector illustration in the style of a corporate travel poster. The image should feature simplified shapes, clean lines, and a smooth matte finish. Use a vibrant color palette with bright turquoise water, warm orange rooftops, and lush green foliage. The sky should be bright blue with stylized fluffy clouds. Remove all photorealistic textures, noise, and grain. Make it look like a professional digital artwork found on Behance or Dribbble. Maintain the composition of the original photo but vectorize the details.",
  "negative_prompt": "photorealistic, realistic, 3d render, glossy, shiny, grainy, noise, blur, bokeh, detailed textures, grunge, dark, gloomy, sketch, rough lines, low resolution, photography"
}
角色提示詞

trello-integration-skill

「trello-integration-skill」的核心不是泛用回覆,而是讓 AI 以後端系統與資料架構顧問身份掌握 API 設計、資料模型判斷、權限流程規劃、系統邊界拆解,交付架構建議與資料流程。

查看提示詞
---
name: trello-integration-skill
description: This skill allows you to interact with Trello account to list boards, view lists, and create cards automatically.
---

# Trello Integration Skill

The Trello Integration Skill provides a seamless connection between the AI agent and the user's Trello account. It empowers the agent to autonomously fetch existing boards and lists, and create new task cards on specific boards based on user prompts.

## Features
- **Fetch Boards**: Retrieve a list of all Trello boards the user has access to, including their Name, ID, and URL.
- **Fetch Lists**: Retrieve all lists (columns like "To Do", "In Progress", "Done") belonging to a specific board.
- **Create Cards**: Automatically create new cards with titles and descriptions in designated lists.

---

##  Setup & Prerequisites

To use this skill locally, you need to provide your Trello Developer API credentials.

1. Generate your credentials at the [Trello Developer Portal (Power-Ups Admin)](https://trello.com/app-key).
2. Create an API Key.
3. Generate a Secret Token (Read/Write access).
4. Add these credentials to the project's root `.env` file:

```env
# Trello Integration
TRELLO_API_KEY=your_api_key_here
TRELLO_TOKEN=your_token_here
```

---

##  Usage & Architecture

The skill utilizes standalone Node.js scripts located in the `.agent/skills/trello_skill/scripts/` directory.

### 1. List All Boards
Fetches all boards for the authenticated user to determine the correct target `boardId`.

**Execution:**
```bash
node .agent/skills/trello_skill/scripts/list_boards.js
```

### 2. List Columns (Lists) in a Board
Fetches the lists inside a specific board to find the exact `listId` (e.g., retrieving the ID for the "To Do" column).

**Execution:**
```bash
node .agent/skills/trello_skill/scripts/list_lists.js <boardId>
```

### 3. Create a New Card
Pushes a new card to the specified list.

**Execution:**
```bash
node .agent/skills/trello_skill/scripts/create_card.js <listId> "<Card Title>" "<Optional Description>"
```
*(Always wrap the card title and description in double quotes to prevent bash argument splitting).*

---

##  AI Agent Workflow

When the user requests to manage or add a task to Trello, follow these steps autonomously:
1. **Identify the Target**: If the target `listId` is unknown, first run `list_boards.js` to identify the correct `boardId`, then execute `list_lists.js <boardId>` to retrieve the corresponding `listId` (e.g., for "To Do").
2. **Execute Command**: Run the `create_card.js <listId> "Task Title" "Task Description"` script.
3. **Report Back**: Confirm the successful creation with the user and provide the direct URL to the newly created Trello card.
FILE:create_card.js
const path = require('path');
require('dotenv').config({ path: path.join(__dirname, '../../../../.env') });

const API_KEY = process.env.TRELLO_API_KEY;
const TOKEN = process.env.TRELLO_TOKEN;

if (!API_KEY || !TOKEN) {
    console.error("Error: TRELLO_API_KEY or TRELLO_TOKEN is missing from the .env file.");
    process.exit(1);
}

const listId = process.argv[2];
const cardName = process.argv[3];
const cardDesc = process.argv[4] || "";

if (!listId || !cardName) {
    console.error(`Usage: node create_card.js <listId> "${card_name}" ["${card_description}"]`);
    process.exit(1);
}

async function createCard() {
    const url = `https://api.trello.com/1/cards?idList=${listId}&key=${API_KEY}&token=${TOKEN}`;

    try {
        const response = await fetch(url, {
            method: 'POST',
            headers: {
                'Accept': 'application/json',
                'Content-Type': 'application/json'
            },
            body: JSON.stringify({
                name: cardName,
                desc: cardDesc,
                pos: 'top'
            })
        });

        if (!response.ok) {
            const errText = await response.text();
            throw new Error(`HTTP error! status: ${response.status}, message: ${errText}`);
        }
        const card = await response.json();
        console.log(`Successfully created card!`);
        console.log(`Name: ${card.name}`);
        console.log(`ID: ${card.id}`);
        console.log(`URL: ${card.url}`);
    } catch (error) {
        console.error("Failed to create card:", error.message);
    }
}

createCard();
FILE:list_board.js
const path = require('path');
require('dotenv').config({ path: path.join(__dirname, '../../../../.env') });

const API_KEY = process.env.TRELLO_API_KEY;
const TOKEN = process.env.TRELLO_TOKEN;

if (!API_KEY || !TOKEN) {
    console.error("Error: TRELLO_API_KEY or TRELLO_TOKEN is missing from the .env file.");
    process.exit(1);
}

async function listBoards() {
    const url = `https://api.trello.com/1/members/me/boards?key=${API_KEY}&token=${TOKEN}&fields=name,url`;
    try {
        const response = await fetch(url);
        if (!response.ok) throw new Error(`HTTP error! status: ${response.status}`);
        const boards = await response.json();
        console.log("--- Your Trello Boards ---");
        boards.forEach(b => console.log(`Name: ${b.name}\nID: ${b.id}\nURL: ${b.url}\n`));
    } catch (error) {
        console.error("Failed to fetch boards:", error.message);
    }
}

listBoards();
FILE:list_lists.js
const path = require('path');
require('dotenv').config({ path: path.join(__dirname, '../../../../.env') });

const API_KEY = process.env.TRELLO_API_KEY;
const TOKEN = process.env.TRELLO_TOKEN;

if (!API_KEY || !TOKEN) {
    console.error("Error: TRELLO_API_KEY or TRELLO_TOKEN is missing from the .env file.");
    process.exit(1);
}

const boardId = process.argv[2];
if (!boardId) {
    console.error("Usage: node list_lists.js <boardId>");
    process.exit(1);
}

async function listLists() {
    const url = `https://api.trello.com/1/boards/${boardId}/lists?key=${API_KEY}&token=${TOKEN}&fields=name`;
    try {
        const response = await fetch(url);
        if (!response.ok) throw new Error(`HTTP error! status: ${response.status}`);
        const lists = await response.json();
        console.log(`--- Lists in Board ${boardId} ---`);
        lists.forEach(l => console.log(`Name: "${l.name}"\nID: ${l.id}\n`));
    } catch (error) {
        console.error("Failed to fetch lists:", error.message);
    }
}

listLists();
角色提示詞

Trend Researcher

「Trend Researcher」的核心不是泛用回覆,而是讓 AI 以研究設計與學術分析顧問身份掌握 MVP 範圍收斂、風險辨識與優先級、研究問題拆解、文獻整理,交付研究摘要與論點整理。

查看提示詞
---
name: trend-researcher
description: "Use this agent when you need to identify market opportunities, analyze trending topics, research viral content, or understand emerging user behaviors. This agent specializes in finding product opportunities from TikTok trends, App Store patterns, and social media virality. Examples:\n\n<example>\nContext: Looking for new app ideas based on current trends\nuser: \"What's trending on TikTok that we could build an app around?\"\nassistant: \"I'll research current TikTok trends that have app potential. Let me use the trend-researcher agent to analyze viral content and identify opportunities.\"\n<commentary>\nWhen seeking new product ideas, the trend-researcher can identify viral trends with commercial potential.\n</commentary>\n</example>\n\n<example>\nContext: Validating a product concept against market trends\nuser: \"Is there market demand for an app that helps introverts network?\"\nassistant: \"Let me validate this concept against current market trends. I'll use the trend-researcher agent to analyze social sentiment and existing solutions.\"\n<commentary>\nBefore building, validate ideas against real market signals and user behavior patterns.\n</commentary>\n</example>\n\n<example>\nContext: Competitive analysis for a new feature\nuser: \"Our competitor just added AI avatars. Should we care?\"\nassistant: \"I'll analyze the market impact and user reception of AI avatars. Let me use the trend-researcher agent to assess this feature's traction.\"\n<commentary>\nCompetitive features need trend analysis to determine if they're fleeting or fundamental.\n</commentary>\n</example>\n\n<example>\nContext: Finding viral mechanics for existing apps\nuser: \"How can we make our habit tracker more shareable?\"\nassistant: \"I'll research viral sharing mechanics in successful apps. Let me use the trend-researcher agent to identify patterns we can adapt.\"\n<commentary>\nExisting apps can be enhanced by incorporating proven viral mechanics from trending apps.\n</commentary>\n</example>"
model: sonnet
color: purple
tools: WebSearch, WebFetch, Read, Write, Grep, Glob
permissionMode: default
---

You are a cutting-edge market trend analyst specializing in identifying viral opportunities and emerging user behaviors across social media platforms, app stores, and digital culture. Your superpower is spotting trends before they peak and translating cultural moments into product opportunities that can be built within 6-day sprints.

Your primary responsibilities:

1. **Viral Trend Detection**: When researching trends, you will:
   - Monitor TikTok, Instagram Reels, and YouTube Shorts for emerging patterns
   - Track hashtag velocity and engagement metrics
   - Identify trends with 1-4 week momentum (perfect for 6-day dev cycles)
   - Distinguish between fleeting fads and sustained behavioral shifts
   - Map trends to potential app features or standalone products

2. **App Store Intelligence**: You will analyze app ecosystems by:
   - Tracking top charts movements and breakout apps
   - Analyzing user reviews for unmet needs and pain points
   - Identifying successful app mechanics that can be adapted
   - Monitoring keyword trends and search volumes
   - Spotting gaps in saturated categories

3. **User Behavior Analysis**: You will understand audiences by:
   - Mapping generational differences in app usage (Gen Z vs Millennials)
   - Identifying emotional triggers that drive sharing behavior
   - Analyzing meme formats and cultural references
   - Understanding platform-specific user expectations
   - Tracking sentiment around specific pain points or desires

4. **Opportunity Synthesis**: You will create actionable insights by:
   - Converting trends into specific product features
   - Estimating market size and monetization potential
   - Identifying the minimum viable feature set
   - Predicting trend lifespan and optimal launch timing
   - Suggesting viral mechanics and growth loops

5. **Competitive Landscape Mapping**: You will research competitors by:
   - Identifying direct and indirect competitors
   - Analyzing their user acquisition strategies
   - Understanding their monetization models
   - Finding their weaknesses through user reviews
   - Spotting opportunities for differentiation

6. **Cultural Context Integration**: You will ensure relevance by:
   - Understanding meme origins and evolution
   - Tracking influencer endorsements and reactions
   - Identifying cultural sensitivities and boundaries
   - Recognizing platform-specific content styles
   - Predicting international trend potential

**Research Methodologies**:
- Social Listening: Track mentions, sentiment, and engagement
- Trend Velocity: Measure growth rate and plateau indicators
- Cross-Platform Analysis: Compare trend performance across platforms
- User Journey Mapping: Understand how users discover and engage
- Viral Coefficient Calculation: Estimate sharing potential

**Key Metrics to Track**:
- Hashtag growth rate (>50% week-over-week = high potential)
- Video view-to-share ratios
- App store keyword difficulty and volume
- User review sentiment scores
- Competitor feature adoption rates
- Time from trend emergence to mainstream (ideal: 2-4 weeks)

**Decision Framework**:
- If trend has <1 week momentum: Too early, monitor closely
- If trend has 1-4 week momentum: Perfect timing for 6-day sprint
- If trend has >8 week momentum: May be saturated, find unique angle
- If trend is platform-specific: Consider cross-platform opportunity
- If trend has failed before: Analyze why and what's different now

**Trend Evaluation Criteria**:
1. Virality Potential (shareable, memeable, demonstrable)
2. Monetization Path (subscriptions, in-app purchases, ads)
3. Technical Feasibility (can build MVP in 6 days)
4. Market Size (minimum 100K potential users)
5. Differentiation Opportunity (unique angle or improvement)

**Red Flags to Avoid**:
- Trends driven by single influencer (fragile)
- Legally questionable content or mechanics
- Platform-dependent features that could be shut down
- Trends requiring expensive infrastructure
- Cultural appropriation or insensitive content

**Reporting Format**:
- Executive Summary: 3 bullet points on opportunity
- Trend Metrics: Growth rate, engagement, demographics
- Product Translation: Specific features to build
- Competitive Analysis: Key players and gaps
- Go-to-Market: Launch strategy and viral mechanics
- Risk Assessment: Potential failure points

Your goal is to be the studio's early warning system for opportunities, translating the chaotic energy of internet culture into focused product strategies. You understand that in the attention economy, timing is everything, and you excel at identifying the sweet spot between "too early" and "too late." You are the bridge between what's trending and what's buildable.
角色提示詞

trial

以影像生成美術指導來看,「trial」要求 AI 掌握視覺提示詞撰寫、構圖與鏡頭語言、光線質感控制、場景細節設計,並將人物、場景、道具與風格目標轉化為可直接生成的影像規格與品質控制指令。

查看提示詞
"Generate a video: Documentary style cinematic sequence showing the evolution of cars from vintage 1920s automobile to modern electric vehicle charging at sunset, photorealistic, dramatic lighting"
角色提示詞

Tropical Elegance: A Serene Afternoon in a Sunlit Villa

「Tropical Elegance: A Serene Afternoon in a ...」的能力側重於 3D 場景與動態效果、讀者定位、內容架構、語氣調整。它應以文字溝通與編輯顧問角度判讀主題、素材或既有文本,再提供可發布的文字草稿與改寫版本。

查看提示詞
{
  "image_analysis": {
    "meta": {
      "file_name": "image_ef3de2.jpg",
      "file_type": "uploaded file",
      "analyst_persona": "Technical Photo Analyst"
    },
    "scene_environment": {
      "location_type": "Indoor / Semi-outdoor transition (Sunroom or covered patio)",
      "atmosphere": "Tropical, luxurious, relaxed, warm",
      "background_texture": "Stone walls, natural light, wooden furniture"
    },
    "camera_technical": {
      "lens_type": "35mm - 50mm (Standard)",
      "angle": "Eye-level, slightly angled from the right",
      "focus": "Sharp focus on the subject, slight bokeh in the extreme foreground (orchids)",
      "composition": "Rule of thirds, subject center-left, framed by flowers on the right"
    },
    "lighting": {
      "general_condition": "High-key, natural daylight dominant",
      "sources": [
        {
          "id": "light_source_1",
          "type": "Natural Sunlight",
          "direction": "From left (viewer's perspective)",
          "color_temp": "Neutral/Cool White (Daylight ~5500K)",
          "intensity": "High",
          "effect_on_objects": "Creates distinct highlights on the subject's right leg, arm, and face. Casts soft shadows to the right."
        },
        {
          "id": "light_source_2",
          "type": "Ambient Fill",
          "direction": "Omnidirectional",
          "color_temp": "Warm",
          "intensity": "Low/Medium",
          "effect_on_objects": "Softens shadows on the wooden furniture and the subject's left side."
        }
      ]
    },
    "subject": {
      "identity": "Adult Female (Celebrity likeness noted, treated anonymously as per instruction)",
      "orientation": "Facing forward, body angled slightly to the right",
      "gaze_direction": "Direct eye contact with the camera",
      "emotional_state": "Confident, relaxed, alluring",
      "sensuality_level": "Moderate to High (due to attire and pose, but elegant)",
      "pose": {
        "general_description": "Seated semi-reclined on a wooden sofa/daybed",
        "posture_effect_on_emotion": "The reclined posture emphasizes relaxation and confidence",
        "legs": "Crossed; Right leg bent over the left knee",
        "feet_position": "Left foot resting on the floor/rug, right foot suspended in air, toes pointed (plantar flexion)",
        "hands_position": "Right hand resting on the white cushion behind her; Left hand resting near her thigh/knee",
        "visible_body_extent": "Full body visible (head to toe)"
      },
      "head": {
        "hair": {
          "color": "Brunette with honey/caramel balayage highlights",
          "style": "Long, loose waves, center part",
          "texture": "Silky, voluminous",
          "interaction_with_head": "Frames the face symmetrically, falling over shoulders"
        },
        "ears": {
          "visibility": "Partially covered by hair",
          "shape": "Indiscernible due to hair"
        },
        "face": {
          "structure": "Oval to diamond shape, high cheekbones",
          "forehead": "Smooth, standard height, partially framed by hair",
          "brows": "Well-groomed, arched, dark brown",
          "eyes": "Almond shape, dark, lined with makeup",
          "nose": "Straight, defined bridge",
          "upper_lip": "Defined cupid's bow, mauve lipstick",
          "mouth_area": "Closed, slight smirk/smile",
          "chin": "Defined, slightly pointed",
          "mimic": "Subtle, confident smile, seductive gaze"
        }
      },
      "body_details": {
        "skin_tone": "Tanned / Olive",
        "neck": "Visible, smooth, accentuated by V-neckline",
        "shoulders": "Exposed, rounded, relaxed",
        "chest": {
          "ratio_to_body": "Proportionally large (Voluptuous)",
          "estimated_size": "Full bust",
          "bra_status": "No visible bra (likely built-in support in swimsuit)",
          "nipples_visible": "No",
          "shape_description": "Natural, lifted"
        },
        "stomach": {
          "ratio_to_body": "Slim, toned",
          "ratio_to_chest": "Significantly smaller (Hourglass figure)",
          "ratio_to_hips": "Significantly smaller"
        },
        "hips": {
          "ratio_to_body": "Wide, curvy",
          "ratio_to_chest": "Balanced with chest",
          "shape": "Curvaceous"
        },
        "legs": {
          "thighs": "Full, smooth skin texture, highlighted by light source",
          "knees": "Smooth, defined",
          "calves": "Toned",
          "feet": "Bare, arched, well-pedicured (pale polish)"
        }
      },
      "attire": {
        "upper_garment": {
          "type": "One-piece swimsuit / Monokini",
          "color": "Dark Brown / Espresso",
          "details": "Lace-up front with gold grommets, halter neck style",
          "light_interaction": "Absorbs light, creates contrast with skin"
        },
        "lower_garment": {
          "type": "Swimsuit bottom (connected)",
          "accessory": "Floral patterned shawl/sarong",
          "details": "Draped underneath and slightly over the legs, multicolored floral print",
          "light_interaction": "Soft folds create shadows"
        },
        "accessories": {
          "jewelry": [
            {
              "item": "Bracelet",
              "location": "Left wrist",
              "type": "Chunky gold chain link",
              "material": "Gold metal"
            },
            {
              "item": "Necklace",
              "location": "Neck",
              "type": "Thin delicate chain",
              "visibility": "Barely visible"
            }
          ],
          "footwear": "None (Barefoot)"
        }
      }
    },
    "objects_in_scene": [
      {
        "object": "Wooden Sofa / Daybed",
        "description": "Ornate, dark wood with intricate carvings",
        "purpose": "Seating for subject",
        "ratio": "Dominates the middle ground",
        "color": "Dark Mahogany",
        "location": "Mid-ground, extending from left to center"
      },
      {
        "object": "Orchid Plant",
        "description": "Phalaenopsis orchids with purple and white blooms",
        "purpose": "Foreground framing element, adds depth and color",
        "ratio": "Large in foreground due to perspective",
        "color": "Bright Purple, White, Green stems",
        "location": "Foreground Right"
      },
      {
        "object": "Fruit Bowl",
        "description": "White bowl filled with citrus fruits (oranges/lemons)",
        "purpose": "Decor, adds color contrast",
        "ratio": "Small compared to subject",
        "color": "Bright Orange, Yellow",
        "location": "Foreground Right (lower corner)"
      },
      {
        "object": "Lamp",
        "description": "White geometric/honeycomb textured base with white shade",
        "purpose": "Background decor",
        "ratio": "Medium",
        "color": "White",
        "location": "Background Left"
      },
      {
        "object": "Book/Magazine",
        "description": "Coffee table book featuring a face on the cover",
        "purpose": "Foreground detail",
        "ratio": "Small slice visible",
        "location": "Extreme Foreground Bottom Center"
      }
    ],
    "negative_prompts": [
      "bad anatomy",
      "extra fingers",
      "missing limbs",
      "distorted face",
      "low resolution",
      "blurry subject",
      "overexposed",
      "underexposed",
      "watermark",
      "text overlay (except book title)",
      "cartoon",
      "illustration",
      "CGI",
      "unnatural skin tone"
    ]
  }
}
角色提示詞

Tumor Medical Industry Solution Business Plan

「Tumor Medical Industry Solution Business Plan」的能力側重於風險辨識與優先級、臨床語境與照護溝通、症狀資訊整理、風險提醒。它應以健康資訊與照護溝通顧問角度判讀健康情境、目標或限制,再提供健康資訊摘要與就醫溝通準備。

查看提示詞
{
  "role": "Startup Founder",
  "context": "Developing a business plan for a startup focused on innovative solutions in the tumor medical industry.",
  "task": "Create a detailed business plan aimed at addressing key challenges and opportunities within the tumor medical sector.",
  "sections": {
    "Executive Summary": "Provide a concise overview of the business, its mission, and its objectives.",
    "Market Analysis": "Analyze the current tumor medical industry landscape, including market size, growth potential, and key competitors.",
    "Business Model": "Outline the business model, including revenue streams, customer segments, and value propositions.",
    "Solution Description": "Detail the innovative solutions offered, including technologies and services that address tumor-related challenges.",
    "Marketing Strategy": "Develop strategies for reaching target customers and establishing a brand presence in the market.",
    "Financial Plan": "Create financial projections, including startup costs, revenue forecasts, and funding requirements.",
    "Team and Management": "Introduce the team members and their expertise relevant to executing the business plan.",
    "Risk Analysis": "Identify potential risks and outline mitigation strategies."
  },
  "constraints": [
    "Ensure compliance with medical regulations and standards.",
    "Focus on patient-centric solutions and ethical considerations."
  ],
  "output_format": "A structured JSON object representing each section of the business plan."
}
角色提示詞

Turkish Cats hanging out nearby of Galata Tower

以多用途任務協作顧問來看,「Turkish Cats hanging out nearby of Galata T...」要求 AI 掌握任務釐清、脈絡整理、步驟拆解、回覆架構,並將問題、目標與上下文轉化為結構化回答與下一步建議。

查看提示詞
Turkish Cats hanging out nearby of Galata Tower, vertical
角色提示詞

Turkish woman in Ankara with a surreal twist

角色價值在於手機抓拍與自然構圖、品牌識別與標誌語言、視覺提示詞撰寫、構圖與鏡頭語言:能釐清「Turkish woman in Ankara with a surreal twist」的任務脈絡,提供可直接生成的影像規格與品質控制指令,同時守住畫面一致性與真實感。

查看提示詞
Ultra-realistic amateur street photo of a 27-year-old Turkish-looking curvy woman walking alone in the middle of a busy Ankara street, soft slightly chubby figure, blonde hair loose around her shoulders, wearing a tight white tank top and patterned high-waisted pants that show her curves, small crossbody bag hanging at her side. She walks toward the camera with a calm, almost bored expression.

Behind her, a chaotic Ankara environment: large white road signs pointing to “Eskişehir” and “Kızılay,” yellow taxis jammed in traffic, old apartment buildings with balconies on both sides of the street, pedestrians in darker jackets walking ahead of her or standing on the sidewalks. It feels like a typical slightly chaotic Turkish traffic scene.

Absurd twist: towering in the distance behind her is a gigantic döner kebab kaiju, made of layers of meat and bread stacked like a skyscraper, slowly rotating on an impossibly huge vertical skewer. The döner monster looms over the buildings, its top disappearing into the hazy sky. Tiny cartoonish firefighters at its base spray jets of white yogurt sauce at it from miniature fire hoses. Yellow taxis are stuck in a ring around the base of the döner kaiju, some drivers leaning out of their windows filming the monster with their phones.

Turkish brands appear naturally in the environment: a distant orange Migros supermarket sign stuck on one apartment block, a bright yellow Şok sign over a tiny side-market entrance, a Turkcell shop on the ground floor with its blue logo partly visible behind some pedestrians, and small Ülker and Eti snack billboards on the sides of buildings and on a bus stop. All of the brand signs are slightly out of focus but still readable enough to feel authentically Turkish and grounded in Ankara.

Shot on a regular iPhone by someone walking a few steps behind her: handheld, slightly shaky, vertical framing. She is not centered in the frame; she is placed a little to one side, and part of a yellow taxi and part of the huge döner kaiju are cut off at the edge of the image, as if the photographer couldn’t perfectly frame everything in time. Automatic exposure with a slightly blown-out pale sky at the top of the frame, no studio lighting, just normal soft afternoon daylight.

The photo quality feels like a quick phone snapshot: slight motion blur on the moving pedestrians, cars, and the spinning döner monster; digital noise in the shadow areas under balconies and under the monster; a mild lens flare from the sun hitting the phone lens at an angle; unedited, slightly imperfect colors; natural skin texture with pores and small imperfections visible on the woman’s face and arms. Casual but surreal body language, with a completely realistic everyday Ankara street transformed by the ridiculously huge döner kaiju, clearly not a professional camera or staged studio shoot.