@stella-studio/ck 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.agents/skills/find-skills/SKILL.md +133 -0
- package/.claude/.ck.json +60 -0
- package/.claude/.ckignore +27 -0
- package/.claude/.env.example +100 -0
- package/.claude/.mcp.json.example +23 -0
- package/.claude/agents/brainstormer.md +113 -0
- package/.claude/agents/code-reviewer.md +131 -0
- package/.claude/agents/code-simplifier.md +42 -0
- package/.claude/agents/debugger.md +137 -0
- package/.claude/agents/docs-manager.md +208 -0
- package/.claude/agents/fullstack-developer.md +95 -0
- package/.claude/agents/git-manager.md +9 -0
- package/.claude/agents/journal-writer.md +113 -0
- package/.claude/agents/mcp-manager.md +97 -0
- package/.claude/agents/planner.md +108 -0
- package/.claude/agents/project-manager.md +125 -0
- package/.claude/agents/researcher.md +38 -0
- package/.claude/agents/tester.md +105 -0
- package/.claude/agents/ui-ux-designer.md +236 -0
- package/.claude/commands/ask.md +56 -0
- package/.claude/commands/bootstrap/auto/fast.md +111 -0
- package/.claude/commands/bootstrap/auto/parallel.md +66 -0
- package/.claude/commands/bootstrap/auto.md +115 -0
- package/.claude/commands/bootstrap.md +137 -0
- package/.claude/commands/ck-help.md +129 -0
- package/.claude/commands/coding-level.md +48 -0
- package/.claude/commands/docs/init.md +38 -0
- package/.claude/commands/docs/summarize.md +22 -0
- package/.claude/commands/docs/update.md +76 -0
- package/.claude/commands/journal.md +7 -0
- package/.claude/commands/kanban.md +99 -0
- package/.claude/commands/plan/archive.md +57 -0
- package/.claude/commands/plan/ci.md +33 -0
- package/.claude/commands/plan/cro.md +69 -0
- package/.claude/commands/plan/fast.md +82 -0
- package/.claude/commands/plan/hard.md +108 -0
- package/.claude/commands/plan/parallel.md +145 -0
- package/.claude/commands/plan/two.md +61 -0
- package/.claude/commands/plan/validate.md +188 -0
- package/.claude/commands/plan.md +30 -0
- package/.claude/commands/preview.md +280 -0
- package/.claude/commands/review/codebase/parallel.md +122 -0
- package/.claude/commands/review/codebase.md +49 -0
- package/.claude/commands/test/ui.md +92 -0
- package/.claude/commands/test.md +8 -0
- package/.claude/commands/use-mcp.md +38 -0
- package/.claude/commands/watzup.md +8 -0
- package/.claude/commands/worktree.md +109 -0
- package/.claude/commands-archived/code/auto.md +203 -0
- package/.claude/commands-archived/code/no-test.md +174 -0
- package/.claude/commands-archived/code/parallel.md +100 -0
- package/.claude/commands-archived/code.md +205 -0
- package/.claude/commands-archived/content/cro.md +43 -0
- package/.claude/commands-archived/content/enhance.md +14 -0
- package/.claude/commands-archived/content/fast.md +13 -0
- package/.claude/commands-archived/content/good.md +16 -0
- package/.claude/commands-archived/cook/auto/fast.md +26 -0
- package/.claude/commands-archived/cook/auto/parallel.md +49 -0
- package/.claude/commands-archived/cook/auto.md +15 -0
- package/.claude/commands-archived/cook.md +105 -0
- package/.claude/commands-archived/debug.md +13 -0
- package/.claude/commands-archived/design/3d.md +83 -0
- package/.claude/commands-archived/design/describe.md +23 -0
- package/.claude/commands-archived/design/fast.md +31 -0
- package/.claude/commands-archived/design/good.md +35 -0
- package/.claude/commands-archived/design/screenshot.md +34 -0
- package/.claude/commands-archived/design/video.md +34 -0
- package/.claude/commands-archived/fix/ci.md +17 -0
- package/.claude/commands-archived/fix/fast.md +19 -0
- package/.claude/commands-archived/fix/hard.md +39 -0
- package/.claude/commands-archived/fix/logs.md +26 -0
- package/.claude/commands-archived/fix/parallel.md +54 -0
- package/.claude/commands-archived/fix/test.md +20 -0
- package/.claude/commands-archived/fix/types.md +9 -0
- package/.claude/commands-archived/fix/ui.md +48 -0
- package/.claude/commands-archived/fix.md +43 -0
- package/.claude/commands-archived/scout/ext.md +39 -0
- package/.claude/commands-archived/scout.md +28 -0
- package/.claude/commands-archived/skill/add.md +36 -0
- package/.claude/commands-archived/skill/create.md +29 -0
- package/.claude/commands-archived/skill/fix-logs.md +22 -0
- package/.claude/commands-archived/skill/optimize/auto.md +25 -0
- package/.claude/commands-archived/skill/optimize.md +34 -0
- package/.claude/commands-archived/skill/plan.md +45 -0
- package/.claude/commands-archived/skill/update.md +36 -0
- package/.claude/hooks/__tests__/ck-config-utils.test.cjs +557 -0
- package/.claude/hooks/__tests__/descriptive-name.test.cjs +292 -0
- package/.claude/hooks/__tests__/dev-rules-reminder.test.cjs +336 -0
- package/.claude/hooks/__tests__/integration/path-resolution.test.cjs +319 -0
- package/.claude/hooks/__tests__/privacy-block.test.cjs +273 -0
- package/.claude/hooks/__tests__/session-init.test.cjs +308 -0
- package/.claude/hooks/__tests__/skill-dedup.test.cjs +527 -0
- package/.claude/hooks/__tests__/subagent-init.test.cjs +622 -0
- package/.claude/hooks/cook-after-plan-reminder.cjs +58 -0
- package/.claude/hooks/descriptive-name.cjs +33 -0
- package/.claude/hooks/dev-rules-reminder.cjs +58 -0
- package/.claude/hooks/docs/README.md +179 -0
- package/.claude/hooks/lib/__tests__/README.md +240 -0
- package/.claude/hooks/lib/__tests__/ck-config-utils.test.cjs +781 -0
- package/.claude/hooks/lib/__tests__/context-builder.test.cjs +450 -0
- package/.claude/hooks/lib/__tests__/statusline-integration.test.cjs +678 -0
- package/.claude/hooks/lib/__tests__/statusline.test.cjs +689 -0
- package/.claude/hooks/lib/ck-config-utils.cjs +829 -0
- package/.claude/hooks/lib/colors.cjs +95 -0
- package/.claude/hooks/lib/config-counter.cjs +103 -0
- package/.claude/hooks/lib/context-builder.cjs +612 -0
- package/.claude/hooks/lib/privacy-checker.cjs +297 -0
- package/.claude/hooks/lib/project-detector.cjs +430 -0
- package/.claude/hooks/lib/scout-checker.cjs +191 -0
- package/.claude/hooks/lib/transcript-parser.cjs +181 -0
- package/.claude/hooks/notifications/.env.example +21 -0
- package/.claude/hooks/notifications/discord_notify.sh +234 -0
- package/.claude/hooks/notifications/docs/discord-hook-setup.md +461 -0
- package/.claude/hooks/notifications/docs/slack-hook-setup.md +118 -0
- package/.claude/hooks/notifications/docs/telegram-hook-setup.md +813 -0
- package/.claude/hooks/notifications/lib/env-loader.cjs +105 -0
- package/.claude/hooks/notifications/lib/sender.cjs +128 -0
- package/.claude/hooks/notifications/notify.cjs +156 -0
- package/.claude/hooks/notifications/providers/discord.cjs +197 -0
- package/.claude/hooks/notifications/providers/slack.cjs +111 -0
- package/.claude/hooks/notifications/providers/telegram.cjs +109 -0
- package/.claude/hooks/notifications/send-discord.sh +75 -0
- package/.claude/hooks/notifications/telegram_notify.sh +137 -0
- package/.claude/hooks/post-edit-simplify-reminder.cjs +138 -0
- package/.claude/hooks/privacy-block.cjs +151 -0
- package/.claude/hooks/scout-block/broad-pattern-detector.cjs +260 -0
- package/.claude/hooks/scout-block/error-formatter.cjs +156 -0
- package/.claude/hooks/scout-block/path-extractor.cjs +265 -0
- package/.claude/hooks/scout-block/pattern-matcher.cjs +184 -0
- package/.claude/hooks/scout-block/tests/test-broad-pattern-detector.cjs +165 -0
- package/.claude/hooks/scout-block/tests/test-build-command-allowlist.cjs +137 -0
- package/.claude/hooks/scout-block/tests/test-error-formatter.cjs +109 -0
- package/.claude/hooks/scout-block/tests/test-full-flow-edge-cases.cjs +75 -0
- package/.claude/hooks/scout-block/tests/test-monorepo-scenarios.cjs +225 -0
- package/.claude/hooks/scout-block/tests/test-path-extractor.cjs +138 -0
- package/.claude/hooks/scout-block/tests/test-pattern-matcher.cjs +64 -0
- package/.claude/hooks/scout-block/vendor/ignore.cjs +627 -0
- package/.claude/hooks/scout-block.cjs +123 -0
- package/.claude/hooks/session-init.cjs +299 -0
- package/.claude/hooks/skill-dedup.cjs +254 -0
- package/.claude/hooks/subagent-init.cjs +189 -0
- package/.claude/hooks/tests/test-ckignore.cjs +194 -0
- package/.claude/hooks/tests/test-modularization-hook.cjs +126 -0
- package/.claude/hooks/tests/test-privacy-block.cjs +298 -0
- package/.claude/hooks/tests/test-scout-block.cjs +288 -0
- package/.claude/hooks/usage-context-awareness.cjs +165 -0
- package/.claude/metadata.json +44 -0
- package/.claude/output-styles/coding-level-0-eli5.md +103 -0
- package/.claude/output-styles/coding-level-1-junior.md +124 -0
- package/.claude/output-styles/coding-level-2-mid.md +146 -0
- package/.claude/output-styles/coding-level-3-senior.md +148 -0
- package/.claude/output-styles/coding-level-4-lead.md +159 -0
- package/.claude/output-styles/coding-level-5-god.md +91 -0
- package/.claude/rules/development-rules.md +52 -0
- package/.claude/rules/documentation-management.md +121 -0
- package/.claude/rules/orchestration-protocol.md +36 -0
- package/.claude/rules/primary-workflow.md +57 -0
- package/.claude/schemas/ck-config.schema.json +381 -0
- package/.claude/scripts/README.md +153 -0
- package/.claude/scripts/ck-help.py +1088 -0
- package/.claude/scripts/commands_data.yaml +363 -0
- package/.claude/scripts/fix-shebang-permissions.sh +50 -0
- package/.claude/scripts/requirements.txt +1 -0
- package/.claude/scripts/resolve_env.py +329 -0
- package/.claude/scripts/scan_commands.py +98 -0
- package/.claude/scripts/scan_skills.py +186 -0
- package/.claude/scripts/set-active-plan.cjs +50 -0
- package/.claude/scripts/skills_data.yaml +370 -0
- package/.claude/scripts/test-ck-help.py +218 -0
- package/.claude/scripts/test_ck_help.py +420 -0
- package/.claude/scripts/test_ck_help_integration.py +127 -0
- package/.claude/scripts/validate-docs.cjs +342 -0
- package/.claude/scripts/win_compat.py +57 -0
- package/.claude/scripts/worktree.cjs +825 -0
- package/.claude/scripts/worktree.test.cjs +770 -0
- package/.claude/settings.json +102 -0
- package/.claude/skills/.env.example +101 -0
- package/.claude/skills/INSTALLATION.md +360 -0
- package/.claude/skills/README.md +149 -0
- package/.claude/skills/THIRD_PARTY_NOTICES.md +405 -0
- package/.claude/skills/agent-browser/SKILL.md +293 -0
- package/.claude/skills/agent-browser/references/.gitkeep +0 -0
- package/.claude/skills/agent-browser/references/agent-browser-vs-chrome-devtools.md +112 -0
- package/.claude/skills/agent-browser/references/browserbase-cloud-setup.md +161 -0
- package/.claude/skills/agent_skills_spec.md +55 -0
- package/.claude/skills/ai-artist/SKILL.md +121 -0
- package/.claude/skills/ai-artist/data/awesome-prompts.csv +3592 -0
- package/.claude/skills/ai-artist/data/lighting.csv +19 -0
- package/.claude/skills/ai-artist/data/nano-banana-templates.csv +17 -0
- package/.claude/skills/ai-artist/data/platforms.csv +11 -0
- package/.claude/skills/ai-artist/data/styles.csv +26 -0
- package/.claude/skills/ai-artist/data/techniques.csv +19 -0
- package/.claude/skills/ai-artist/data/use-cases.csv +16 -0
- package/.claude/skills/ai-artist/references/advanced-techniques.md +184 -0
- package/.claude/skills/ai-artist/references/awesome-nano-banana-pro-prompts.md +8575 -0
- package/.claude/skills/ai-artist/references/domain-code.md +66 -0
- package/.claude/skills/ai-artist/references/domain-data.md +72 -0
- package/.claude/skills/ai-artist/references/domain-marketing.md +66 -0
- package/.claude/skills/ai-artist/references/domain-patterns.md +33 -0
- package/.claude/skills/ai-artist/references/domain-writing.md +68 -0
- package/.claude/skills/ai-artist/references/image-prompting.md +141 -0
- package/.claude/skills/ai-artist/references/llm-prompting.md +165 -0
- package/.claude/skills/ai-artist/references/nano-banana.md +136 -0
- package/.claude/skills/ai-artist/references/reasoning-techniques.md +201 -0
- package/.claude/skills/ai-artist/references/validation-workflow.md +117 -0
- package/.claude/skills/ai-artist/scripts/core.py +197 -0
- package/.claude/skills/ai-artist/scripts/extract_prompts.py +102 -0
- package/.claude/skills/ai-artist/scripts/generate.py +370 -0
- package/.claude/skills/ai-artist/scripts/search.py +147 -0
- package/.claude/skills/ai-multimodal/.env.example +204 -0
- package/.claude/skills/ai-multimodal/SKILL.md +109 -0
- package/.claude/skills/ai-multimodal/references/audio-processing.md +387 -0
- package/.claude/skills/ai-multimodal/references/image-generation.md +939 -0
- package/.claude/skills/ai-multimodal/references/music-generation.md +311 -0
- package/.claude/skills/ai-multimodal/references/video-analysis.md +515 -0
- package/.claude/skills/ai-multimodal/references/video-generation.md +457 -0
- package/.claude/skills/ai-multimodal/references/vision-understanding.md +492 -0
- package/.claude/skills/ai-multimodal/scripts/.coverage +0 -0
- package/.claude/skills/ai-multimodal/scripts/check_setup.py +315 -0
- package/.claude/skills/ai-multimodal/scripts/document_converter.py +395 -0
- package/.claude/skills/ai-multimodal/scripts/gemini_batch_process.py +1185 -0
- package/.claude/skills/ai-multimodal/scripts/media_optimizer.py +506 -0
- package/.claude/skills/ai-multimodal/scripts/requirements.txt +26 -0
- package/.claude/skills/ai-multimodal/scripts/tests/.coverage +0 -0
- package/.claude/skills/ai-multimodal/scripts/tests/requirements.txt +20 -0
- package/.claude/skills/ai-multimodal/scripts/tests/test_document_converter.py +74 -0
- package/.claude/skills/ai-multimodal/scripts/tests/test_gemini_batch_process.py +362 -0
- package/.claude/skills/ai-multimodal/scripts/tests/test_media_optimizer.py +373 -0
- package/.claude/skills/backend-development/SKILL.md +95 -0
- package/.claude/skills/backend-development/references/backend-api-design.md +495 -0
- package/.claude/skills/backend-development/references/backend-architecture.md +454 -0
- package/.claude/skills/backend-development/references/backend-authentication.md +338 -0
- package/.claude/skills/backend-development/references/backend-code-quality.md +659 -0
- package/.claude/skills/backend-development/references/backend-debugging.md +904 -0
- package/.claude/skills/backend-development/references/backend-devops.md +494 -0
- package/.claude/skills/backend-development/references/backend-mindset.md +387 -0
- package/.claude/skills/backend-development/references/backend-performance.md +397 -0
- package/.claude/skills/backend-development/references/backend-security.md +290 -0
- package/.claude/skills/backend-development/references/backend-technologies.md +256 -0
- package/.claude/skills/backend-development/references/backend-testing.md +429 -0
- package/.claude/skills/better-auth/SKILL.md +204 -0
- package/.claude/skills/better-auth/references/advanced-features.md +553 -0
- package/.claude/skills/better-auth/references/database-integration.md +577 -0
- package/.claude/skills/better-auth/references/email-password-auth.md +416 -0
- package/.claude/skills/better-auth/references/oauth-providers.md +430 -0
- package/.claude/skills/better-auth/scripts/.coverage +0 -0
- package/.claude/skills/better-auth/scripts/better_auth_init.py +521 -0
- package/.claude/skills/better-auth/scripts/requirements.txt +15 -0
- package/.claude/skills/better-auth/scripts/tests/.coverage +0 -0
- package/.claude/skills/better-auth/scripts/tests/test_better_auth_init.py +421 -0
- package/.claude/skills/brainstorm/SKILL.md +76 -0
- package/.claude/skills/chrome-devtools/SKILL.md +587 -0
- package/.claude/skills/chrome-devtools/references/cdp-domains.md +694 -0
- package/.claude/skills/chrome-devtools/references/performance-guide.md +940 -0
- package/.claude/skills/chrome-devtools/references/puppeteer-reference.md +953 -0
- package/.claude/skills/chrome-devtools/scripts/README.md +290 -0
- package/.claude/skills/chrome-devtools/scripts/__tests__/error-handling.test.js +102 -0
- package/.claude/skills/chrome-devtools/scripts/__tests__/selector.test.js +210 -0
- package/.claude/skills/chrome-devtools/scripts/aria-snapshot.js +363 -0
- package/.claude/skills/chrome-devtools/scripts/click.js +84 -0
- package/.claude/skills/chrome-devtools/scripts/connect-chrome.js +146 -0
- package/.claude/skills/chrome-devtools/scripts/console.js +81 -0
- package/.claude/skills/chrome-devtools/scripts/evaluate.js +55 -0
- package/.claude/skills/chrome-devtools/scripts/fill.js +77 -0
- package/.claude/skills/chrome-devtools/scripts/import-cookies.js +205 -0
- package/.claude/skills/chrome-devtools/scripts/inject-auth.js +230 -0
- package/.claude/skills/chrome-devtools/scripts/install-deps.sh +181 -0
- package/.claude/skills/chrome-devtools/scripts/install.sh +83 -0
- package/.claude/skills/chrome-devtools/scripts/lib/browser.js +341 -0
- package/.claude/skills/chrome-devtools/scripts/lib/selector.js +178 -0
- package/.claude/skills/chrome-devtools/scripts/navigate.js +66 -0
- package/.claude/skills/chrome-devtools/scripts/network.js +108 -0
- package/.claude/skills/chrome-devtools/scripts/package.json +16 -0
- package/.claude/skills/chrome-devtools/scripts/performance.js +151 -0
- package/.claude/skills/chrome-devtools/scripts/screenshot.js +199 -0
- package/.claude/skills/chrome-devtools/scripts/select-ref.js +132 -0
- package/.claude/skills/chrome-devtools/scripts/snapshot.js +136 -0
- package/.claude/skills/chrome-devtools/scripts/ws-debug.js +44 -0
- package/.claude/skills/chrome-devtools/scripts/ws-full-debug.js +107 -0
- package/.claude/skills/code-review/SKILL.md +106 -0
- package/.claude/skills/code-review/references/code-review-reception.md +113 -0
- package/.claude/skills/code-review/references/edge-case-scouting.md +119 -0
- package/.claude/skills/code-review/references/requesting-code-review.md +116 -0
- package/.claude/skills/code-review/references/verification-before-completion.md +139 -0
- package/.claude/skills/common/README.md +120 -0
- package/.claude/skills/common/api_key_helper.py +411 -0
- package/.claude/skills/common/api_key_rotator.py +248 -0
- package/.claude/skills/context-engineering/SKILL.md +107 -0
- package/.claude/skills/context-engineering/references/context-compression.md +84 -0
- package/.claude/skills/context-engineering/references/context-degradation.md +93 -0
- package/.claude/skills/context-engineering/references/context-fundamentals.md +75 -0
- package/.claude/skills/context-engineering/references/context-optimization.md +82 -0
- package/.claude/skills/context-engineering/references/evaluation.md +89 -0
- package/.claude/skills/context-engineering/references/memory-systems.md +88 -0
- package/.claude/skills/context-engineering/references/multi-agent-patterns.md +90 -0
- package/.claude/skills/context-engineering/references/project-development.md +97 -0
- package/.claude/skills/context-engineering/references/runtime-awareness.md +202 -0
- package/.claude/skills/context-engineering/references/tool-design.md +86 -0
- package/.claude/skills/context-engineering/scripts/compression_evaluator.py +349 -0
- package/.claude/skills/context-engineering/scripts/context_analyzer.py +317 -0
- package/.claude/skills/context-engineering/scripts/tests/test_edge_cases.py +246 -0
- package/.claude/skills/cook/README.md +86 -0
- package/.claude/skills/cook/SKILL.md +112 -0
- package/.claude/skills/cook/references/intent-detection.md +101 -0
- package/.claude/skills/cook/references/review-cycle.md +75 -0
- package/.claude/skills/cook/references/subagent-patterns.md +75 -0
- package/.claude/skills/cook/references/workflow-steps.md +166 -0
- package/.claude/skills/copywriting/SKILL.md +93 -0
- package/.claude/skills/copywriting/references/copy-formulas.md +150 -0
- package/.claude/skills/copywriting/references/cta-patterns.md +168 -0
- package/.claude/skills/copywriting/references/email-copy.md +193 -0
- package/.claude/skills/copywriting/references/headline-templates.md +140 -0
- package/.claude/skills/copywriting/references/landing-page-copy.md +175 -0
- package/.claude/skills/copywriting/references/power-words.md +189 -0
- package/.claude/skills/copywriting/references/social-media-copy.md +222 -0
- package/.claude/skills/copywriting/references/workflow-cro.md +54 -0
- package/.claude/skills/copywriting/references/workflow-enhance.md +32 -0
- package/.claude/skills/copywriting/references/workflow-fast.md +29 -0
- package/.claude/skills/copywriting/references/workflow-good.md +39 -0
- package/.claude/skills/copywriting/references/writing-styles.md +247 -0
- package/.claude/skills/copywriting/scripts/extract-writing-styles.py +308 -0
- package/.claude/skills/copywriting/templates/copy-brief.md +49 -0
- package/.claude/skills/databases/SKILL.md +83 -0
- package/.claude/skills/databases/analytics.md +198 -0
- package/.claude/skills/databases/db-design.md +188 -0
- package/.claude/skills/databases/incremental-etl.md +213 -0
- package/.claude/skills/databases/references/mongodb-aggregation.md +447 -0
- package/.claude/skills/databases/references/mongodb-atlas.md +465 -0
- package/.claude/skills/databases/references/mongodb-crud.md +408 -0
- package/.claude/skills/databases/references/mongodb-indexing.md +442 -0
- package/.claude/skills/databases/references/postgresql-administration.md +594 -0
- package/.claude/skills/databases/references/postgresql-performance.md +527 -0
- package/.claude/skills/databases/references/postgresql-psql-cli.md +467 -0
- package/.claude/skills/databases/references/postgresql-queries.md +475 -0
- package/.claude/skills/databases/scripts/.coverage +0 -0
- package/.claude/skills/databases/scripts/db_backup.py +502 -0
- package/.claude/skills/databases/scripts/db_migrate.py +426 -0
- package/.claude/skills/databases/scripts/db_performance_check.py +457 -0
- package/.claude/skills/databases/scripts/requirements.txt +20 -0
- package/.claude/skills/databases/scripts/tests/coverage-db.json +1 -0
- package/.claude/skills/databases/scripts/tests/requirements.txt +4 -0
- package/.claude/skills/databases/scripts/tests/test_db_backup.py +340 -0
- package/.claude/skills/databases/scripts/tests/test_db_migrate.py +277 -0
- package/.claude/skills/databases/scripts/tests/test_db_performance_check.py +370 -0
- package/.claude/skills/databases/stacks/bigquery.md +231 -0
- package/.claude/skills/databases/stacks/d1_cloudflare.md +137 -0
- package/.claude/skills/databases/stacks/mysql.md +216 -0
- package/.claude/skills/databases/stacks/postgres.md +235 -0
- package/.claude/skills/databases/stacks/sqlite.md +244 -0
- package/.claude/skills/databases/transactional.md +176 -0
- package/.claude/skills/debug/SKILL.md +84 -0
- package/.claude/skills/debug/references/defense-in-depth.md +124 -0
- package/.claude/skills/debug/references/root-cause-tracing.md +122 -0
- package/.claude/skills/debug/references/systematic-debugging.md +102 -0
- package/.claude/skills/debug/references/verification.md +123 -0
- package/.claude/skills/debug/scripts/find-polluter.sh +63 -0
- package/.claude/skills/debug/scripts/find-polluter.test.md +102 -0
- package/.claude/skills/devops/.env.example +76 -0
- package/.claude/skills/devops/SKILL.md +96 -0
- package/.claude/skills/devops/references/browser-rendering.md +305 -0
- package/.claude/skills/devops/references/cloudflare-d1-kv.md +123 -0
- package/.claude/skills/devops/references/cloudflare-platform.md +271 -0
- package/.claude/skills/devops/references/cloudflare-r2-storage.md +280 -0
- package/.claude/skills/devops/references/cloudflare-workers-advanced.md +312 -0
- package/.claude/skills/devops/references/cloudflare-workers-apis.md +309 -0
- package/.claude/skills/devops/references/cloudflare-workers-basics.md +418 -0
- package/.claude/skills/devops/references/docker-basics.md +297 -0
- package/.claude/skills/devops/references/docker-compose.md +292 -0
- package/.claude/skills/devops/references/gcloud-platform.md +297 -0
- package/.claude/skills/devops/references/gcloud-services.md +304 -0
- package/.claude/skills/devops/references/kubernetes-basics.md +99 -0
- package/.claude/skills/devops/references/kubernetes-helm-advanced.md +75 -0
- package/.claude/skills/devops/references/kubernetes-helm.md +81 -0
- package/.claude/skills/devops/references/kubernetes-kubectl.md +74 -0
- package/.claude/skills/devops/references/kubernetes-security-advanced.md +98 -0
- package/.claude/skills/devops/references/kubernetes-security.md +95 -0
- package/.claude/skills/devops/references/kubernetes-troubleshooting-advanced.md +74 -0
- package/.claude/skills/devops/references/kubernetes-troubleshooting.md +49 -0
- package/.claude/skills/devops/references/kubernetes-workflows-advanced.md +75 -0
- package/.claude/skills/devops/references/kubernetes-workflows.md +78 -0
- package/.claude/skills/devops/scripts/cloudflare_deploy.py +269 -0
- package/.claude/skills/devops/scripts/docker_optimize.py +332 -0
- package/.claude/skills/devops/scripts/requirements.txt +20 -0
- package/.claude/skills/devops/scripts/tests/requirements.txt +3 -0
- package/.claude/skills/devops/scripts/tests/test_cloudflare_deploy.py +285 -0
- package/.claude/skills/devops/scripts/tests/test_docker_optimize.py +436 -0
- package/.claude/skills/docs-seeker/.env.example +15 -0
- package/.claude/skills/docs-seeker/SKILL.md +97 -0
- package/.claude/skills/docs-seeker/package.json +25 -0
- package/.claude/skills/docs-seeker/references/advanced.md +79 -0
- package/.claude/skills/docs-seeker/references/context7-patterns.md +68 -0
- package/.claude/skills/docs-seeker/references/errors.md +68 -0
- package/.claude/skills/docs-seeker/scripts/analyze-llms-txt.js +211 -0
- package/.claude/skills/docs-seeker/scripts/detect-topic.js +172 -0
- package/.claude/skills/docs-seeker/scripts/fetch-docs.js +213 -0
- package/.claude/skills/docs-seeker/scripts/tests/run-tests.js +72 -0
- package/.claude/skills/docs-seeker/scripts/tests/test-analyze-llms.js +119 -0
- package/.claude/skills/docs-seeker/scripts/tests/test-detect-topic.js +112 -0
- package/.claude/skills/docs-seeker/scripts/tests/test-fetch-docs.js +84 -0
- package/.claude/skills/docs-seeker/scripts/utils/env-loader.js +94 -0
- package/.claude/skills/docs-seeker/workflows/library-search.md +87 -0
- package/.claude/skills/docs-seeker/workflows/repo-analysis.md +91 -0
- package/.claude/skills/docs-seeker/workflows/topic-search.md +77 -0
- package/.claude/skills/document-skills/docx/LICENSE.txt +30 -0
- package/.claude/skills/document-skills/docx/SKILL.md +197 -0
- package/.claude/skills/document-skills/docx/docx-js.md +350 -0
- package/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
- package/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
- package/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
- package/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
- package/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
- package/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
- package/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
- package/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
- package/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
- package/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
- package/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
- package/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
- package/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
- package/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
- package/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
- package/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
- package/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
- package/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
- package/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
- package/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
- package/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
- package/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
- package/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
- package/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
- package/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
- package/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
- package/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
- package/.claude/skills/document-skills/docx/ooxml/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
- package/.claude/skills/document-skills/docx/ooxml/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
- package/.claude/skills/document-skills/docx/ooxml/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
- package/.claude/skills/document-skills/docx/ooxml/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
- package/.claude/skills/document-skills/docx/ooxml/schemas/mce/mc.xsd +75 -0
- package/.claude/skills/document-skills/docx/ooxml/schemas/microsoft/wml-2010.xsd +560 -0
- package/.claude/skills/document-skills/docx/ooxml/schemas/microsoft/wml-2012.xsd +67 -0
- package/.claude/skills/document-skills/docx/ooxml/schemas/microsoft/wml-2018.xsd +14 -0
- package/.claude/skills/document-skills/docx/ooxml/schemas/microsoft/wml-cex-2018.xsd +20 -0
- package/.claude/skills/document-skills/docx/ooxml/schemas/microsoft/wml-cid-2016.xsd +13 -0
- package/.claude/skills/document-skills/docx/ooxml/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
- package/.claude/skills/document-skills/docx/ooxml/schemas/microsoft/wml-symex-2015.xsd +8 -0
- package/.claude/skills/document-skills/docx/ooxml/scripts/pack.py +159 -0
- package/.claude/skills/document-skills/docx/ooxml/scripts/unpack.py +29 -0
- package/.claude/skills/document-skills/docx/ooxml/scripts/validate.py +69 -0
- package/.claude/skills/document-skills/docx/ooxml/scripts/validation/__init__.py +15 -0
- package/.claude/skills/document-skills/docx/ooxml/scripts/validation/base.py +951 -0
- package/.claude/skills/document-skills/docx/ooxml/scripts/validation/docx.py +274 -0
- package/.claude/skills/document-skills/docx/ooxml/scripts/validation/pptx.py +315 -0
- package/.claude/skills/document-skills/docx/ooxml/scripts/validation/redlining.py +279 -0
- package/.claude/skills/document-skills/docx/ooxml.md +610 -0
- package/.claude/skills/document-skills/docx/scripts/__init__.py +1 -0
- package/.claude/skills/document-skills/docx/scripts/document.py +1276 -0
- package/.claude/skills/document-skills/docx/scripts/templates/comments.xml +3 -0
- package/.claude/skills/document-skills/docx/scripts/templates/commentsExtended.xml +3 -0
- package/.claude/skills/document-skills/docx/scripts/templates/commentsExtensible.xml +3 -0
- package/.claude/skills/document-skills/docx/scripts/templates/commentsIds.xml +3 -0
- package/.claude/skills/document-skills/docx/scripts/templates/people.xml +3 -0
- package/.claude/skills/document-skills/docx/scripts/utilities.py +374 -0
- package/.claude/skills/document-skills/pdf/LICENSE.txt +30 -0
- package/.claude/skills/document-skills/pdf/SKILL.md +294 -0
- package/.claude/skills/document-skills/pdf/forms.md +205 -0
- package/.claude/skills/document-skills/pdf/reference.md +612 -0
- package/.claude/skills/document-skills/pdf/scripts/check_bounding_boxes.py +70 -0
- package/.claude/skills/document-skills/pdf/scripts/check_bounding_boxes_test.py +226 -0
- package/.claude/skills/document-skills/pdf/scripts/check_fillable_fields.py +12 -0
- package/.claude/skills/document-skills/pdf/scripts/convert_pdf_to_images.py +35 -0
- package/.claude/skills/document-skills/pdf/scripts/create_validation_image.py +41 -0
- package/.claude/skills/document-skills/pdf/scripts/extract_form_field_info.py +152 -0
- package/.claude/skills/document-skills/pdf/scripts/fill_fillable_fields.py +114 -0
- package/.claude/skills/document-skills/pdf/scripts/fill_pdf_form_with_annotations.py +108 -0
- package/.claude/skills/document-skills/pptx/LICENSE.txt +30 -0
- package/.claude/skills/document-skills/pptx/SKILL.md +484 -0
- package/.claude/skills/document-skills/pptx/html2pptx.md +625 -0
- package/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
- package/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
- package/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
- package/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
- package/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
- package/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
- package/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
- package/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
- package/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
- package/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
- package/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
- package/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
- package/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
- package/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
- package/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
- package/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
- package/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
- package/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
- package/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
- package/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
- package/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
- package/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
- package/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
- package/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
- package/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
- package/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
- package/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
- package/.claude/skills/document-skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
- package/.claude/skills/document-skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
- package/.claude/skills/document-skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
- package/.claude/skills/document-skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
- package/.claude/skills/document-skills/pptx/ooxml/schemas/mce/mc.xsd +75 -0
- package/.claude/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-2010.xsd +560 -0
- package/.claude/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-2012.xsd +67 -0
- package/.claude/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-2018.xsd +14 -0
- package/.claude/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-cex-2018.xsd +20 -0
- package/.claude/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-cid-2016.xsd +13 -0
- package/.claude/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
- package/.claude/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-symex-2015.xsd +8 -0
- package/.claude/skills/document-skills/pptx/ooxml/scripts/pack.py +159 -0
- package/.claude/skills/document-skills/pptx/ooxml/scripts/unpack.py +29 -0
- package/.claude/skills/document-skills/pptx/ooxml/scripts/validate.py +69 -0
- package/.claude/skills/document-skills/pptx/ooxml/scripts/validation/__init__.py +15 -0
- package/.claude/skills/document-skills/pptx/ooxml/scripts/validation/base.py +951 -0
- package/.claude/skills/document-skills/pptx/ooxml/scripts/validation/docx.py +274 -0
- package/.claude/skills/document-skills/pptx/ooxml/scripts/validation/pptx.py +315 -0
- package/.claude/skills/document-skills/pptx/ooxml/scripts/validation/redlining.py +279 -0
- package/.claude/skills/document-skills/pptx/ooxml.md +427 -0
- package/.claude/skills/document-skills/pptx/scripts/html2pptx.js +979 -0
- package/.claude/skills/document-skills/pptx/scripts/inventory.py +1020 -0
- package/.claude/skills/document-skills/pptx/scripts/rearrange.py +231 -0
- package/.claude/skills/document-skills/pptx/scripts/replace.py +385 -0
- package/.claude/skills/document-skills/pptx/scripts/thumbnail.py +450 -0
- package/.claude/skills/document-skills/xlsx/LICENSE.txt +30 -0
- package/.claude/skills/document-skills/xlsx/SKILL.md +289 -0
- package/.claude/skills/document-skills/xlsx/recalc.py +191 -0
- package/.claude/skills/find-skills/SKILL.md +133 -0
- package/.claude/skills/fix/SKILL.md +104 -0
- package/.claude/skills/fix/references/complexity-assessment.md +64 -0
- package/.claude/skills/fix/references/mode-selection.md +46 -0
- package/.claude/skills/fix/references/parallel-exploration.md +77 -0
- package/.claude/skills/fix/references/review-cycle.md +77 -0
- package/.claude/skills/fix/references/skill-activation-matrix.md +65 -0
- package/.claude/skills/fix/references/workflow-ci.md +28 -0
- package/.claude/skills/fix/references/workflow-deep.md +91 -0
- package/.claude/skills/fix/references/workflow-logs.md +36 -0
- package/.claude/skills/fix/references/workflow-quick.md +59 -0
- package/.claude/skills/fix/references/workflow-standard.md +86 -0
- package/.claude/skills/fix/references/workflow-test.md +36 -0
- package/.claude/skills/fix/references/workflow-types.md +33 -0
- package/.claude/skills/fix/references/workflow-ui.md +37 -0
- package/.claude/skills/frontend-design/SKILL.md +78 -0
- package/.claude/skills/frontend-design/references/ai-multimodal-overview.md +165 -0
- package/.claude/skills/frontend-design/references/analysis-best-practices.md +80 -0
- package/.claude/skills/frontend-design/references/analysis-prompts.md +141 -0
- package/.claude/skills/frontend-design/references/analysis-techniques.md +118 -0
- package/.claude/skills/frontend-design/references/animejs.md +396 -0
- package/.claude/skills/frontend-design/references/asset-generation.md +337 -0
- package/.claude/skills/frontend-design/references/design-extraction-overview.md +71 -0
- package/.claude/skills/frontend-design/references/extraction-best-practices.md +141 -0
- package/.claude/skills/frontend-design/references/extraction-output-templates.md +162 -0
- package/.claude/skills/frontend-design/references/extraction-prompts.md +127 -0
- package/.claude/skills/frontend-design/references/technical-accessibility.md +119 -0
- package/.claude/skills/frontend-design/references/technical-best-practices.md +97 -0
- package/.claude/skills/frontend-design/references/technical-optimization.md +44 -0
- package/.claude/skills/frontend-design/references/technical-overview.md +90 -0
- package/.claude/skills/frontend-design/references/technical-workflows.md +150 -0
- package/.claude/skills/frontend-design/references/visual-analysis-overview.md +95 -0
- package/.claude/skills/frontend-design/references/workflow-3d.md +102 -0
- package/.claude/skills/frontend-design/references/workflow-describe.md +87 -0
- package/.claude/skills/frontend-design/references/workflow-immersive.md +87 -0
- package/.claude/skills/frontend-design/references/workflow-quick.md +57 -0
- package/.claude/skills/frontend-design/references/workflow-screenshot.md +63 -0
- package/.claude/skills/frontend-design/references/workflow-video.md +74 -0
- package/.claude/skills/frontend-development/SKILL.md +399 -0
- package/.claude/skills/frontend-development/resources/common-patterns.md +331 -0
- package/.claude/skills/frontend-development/resources/complete-examples.md +872 -0
- package/.claude/skills/frontend-development/resources/component-patterns.md +502 -0
- package/.claude/skills/frontend-development/resources/data-fetching.md +767 -0
- package/.claude/skills/frontend-development/resources/file-organization.md +502 -0
- package/.claude/skills/frontend-development/resources/loading-and-error-states.md +501 -0
- package/.claude/skills/frontend-development/resources/performance.md +406 -0
- package/.claude/skills/frontend-development/resources/routing-guide.md +364 -0
- package/.claude/skills/frontend-development/resources/styling-guide.md +428 -0
- package/.claude/skills/frontend-development/resources/typescript-standards.md +418 -0
- package/.claude/skills/git/SKILL.md +100 -0
- package/.claude/skills/git/references/branch-management.md +88 -0
- package/.claude/skills/git/references/commit-standards.md +46 -0
- package/.claude/skills/git/references/gh-cli-guide.md +109 -0
- package/.claude/skills/git/references/safety-protocols.md +69 -0
- package/.claude/skills/git/references/workflow-commit.md +58 -0
- package/.claude/skills/git/references/workflow-merge.md +48 -0
- package/.claude/skills/git/references/workflow-pr.md +58 -0
- package/.claude/skills/git/references/workflow-push.md +52 -0
- package/.claude/skills/gkg/SKILL.md +90 -0
- package/.claude/skills/gkg/references/cli-commands.md +106 -0
- package/.claude/skills/gkg/references/http-api.md +102 -0
- package/.claude/skills/gkg/references/language-support.md +57 -0
- package/.claude/skills/gkg/references/mcp-tools.md +99 -0
- package/.claude/skills/google-adk-python/SKILL.md +132 -0
- package/.claude/skills/google-adk-python/references/agent-types-and-architecture.md +128 -0
- package/.claude/skills/google-adk-python/references/callbacks-plugins-observability.md +117 -0
- package/.claude/skills/google-adk-python/references/deployment-cloud-run-vertex-gke.md +138 -0
- package/.claude/skills/google-adk-python/references/evaluation-testing-cli.md +112 -0
- package/.claude/skills/google-adk-python/references/multi-agent-and-a2a-protocol.md +145 -0
- package/.claude/skills/google-adk-python/references/sessions-state-memory-artifacts.md +131 -0
- package/.claude/skills/google-adk-python/references/tools-and-mcp-integration.md +146 -0
- package/.claude/skills/install.ps1 +1295 -0
- package/.claude/skills/install.sh +1339 -0
- package/.claude/skills/markdown-novel-viewer/SKILL.md +313 -0
- package/.claude/skills/markdown-novel-viewer/assets/directory-browser.css +215 -0
- package/.claude/skills/markdown-novel-viewer/assets/favicon.png +0 -0
- package/.claude/skills/markdown-novel-viewer/assets/novel-theme.css +16 -0
- package/.claude/skills/markdown-novel-viewer/assets/reader.js +746 -0
- package/.claude/skills/markdown-novel-viewer/assets/styles/novel-theme-base.css +54 -0
- package/.claude/skills/markdown-novel-viewer/assets/styles/novel-theme-components.css +83 -0
- package/.claude/skills/markdown-novel-viewer/assets/styles/novel-theme-content.css +175 -0
- package/.claude/skills/markdown-novel-viewer/assets/styles/novel-theme-header.css +217 -0
- package/.claude/skills/markdown-novel-viewer/assets/styles/novel-theme-mermaid.css +128 -0
- package/.claude/skills/markdown-novel-viewer/assets/styles/novel-theme-overlays.css +202 -0
- package/.claude/skills/markdown-novel-viewer/assets/styles/novel-theme-responsive.css +285 -0
- package/.claude/skills/markdown-novel-viewer/assets/styles/novel-theme-sidebar.css +359 -0
- package/.claude/skills/markdown-novel-viewer/assets/styles/novel-theme-variables.css +56 -0
- package/.claude/skills/markdown-novel-viewer/assets/template.html +149 -0
- package/.claude/skills/markdown-novel-viewer/package.json +15 -0
- package/.claude/skills/markdown-novel-viewer/scripts/lib/http-server.cjs +434 -0
- package/.claude/skills/markdown-novel-viewer/scripts/lib/markdown-renderer.cjs +335 -0
- package/.claude/skills/markdown-novel-viewer/scripts/lib/plan-navigator.cjs +571 -0
- package/.claude/skills/markdown-novel-viewer/scripts/lib/port-finder.cjs +48 -0
- package/.claude/skills/markdown-novel-viewer/scripts/lib/process-mgr.cjs +150 -0
- package/.claude/skills/markdown-novel-viewer/scripts/server.cjs +411 -0
- package/.claude/skills/markdown-novel-viewer/scripts/tests/server.test.cjs +283 -0
- package/.claude/skills/markdown-novel-viewer/tests/dashboard-assets.test.cjs +340 -0
- package/.claude/skills/markdown-novel-viewer/tests/dashboard-renderer.test.cjs +404 -0
- package/.claude/skills/markdown-novel-viewer/tests/http-server.test.cjs +271 -0
- package/.claude/skills/markdown-novel-viewer/tests/run-tests.cjs +51 -0
- package/.claude/skills/markdown-novel-viewer/tests/test-framework.cjs +154 -0
- package/.claude/skills/markdown-novel-viewer/tests/verify-xss.cjs +90 -0
- package/.claude/skills/mcp-builder/LICENSE.txt +202 -0
- package/.claude/skills/mcp-builder/SKILL.md +328 -0
- package/.claude/skills/mcp-builder/reference/evaluation.md +602 -0
- package/.claude/skills/mcp-builder/reference/mcp_best_practices.md +915 -0
- package/.claude/skills/mcp-builder/reference/node_mcp_server.md +916 -0
- package/.claude/skills/mcp-builder/reference/python_mcp_server.md +752 -0
- package/.claude/skills/mcp-builder/scripts/connections.py +151 -0
- package/.claude/skills/mcp-builder/scripts/evaluation.py +381 -0
- package/.claude/skills/mcp-builder/scripts/example_evaluation.xml +22 -0
- package/.claude/skills/mcp-builder/scripts/requirements.txt +2 -0
- package/.claude/skills/mcp-management/README.md +219 -0
- package/.claude/skills/mcp-management/SKILL.md +209 -0
- package/.claude/skills/mcp-management/assets/tools.json +3146 -0
- package/.claude/skills/mcp-management/references/configuration.md +114 -0
- package/.claude/skills/mcp-management/references/gemini-cli-integration.md +221 -0
- package/.claude/skills/mcp-management/references/mcp-protocol.md +116 -0
- package/.claude/skills/mcp-management/scripts/.env.example +10 -0
- package/.claude/skills/mcp-management/scripts/cli.ts +195 -0
- package/.claude/skills/mcp-management/scripts/mcp-client.ts +230 -0
- package/.claude/skills/mcp-management/scripts/package.json +20 -0
- package/.claude/skills/mcp-management/scripts/tsconfig.json +15 -0
- package/.claude/skills/media-processing/SKILL.md +91 -0
- package/.claude/skills/media-processing/references/common-workflows.md +132 -0
- package/.claude/skills/media-processing/references/ffmpeg-encoding.md +358 -0
- package/.claude/skills/media-processing/references/ffmpeg-filters.md +503 -0
- package/.claude/skills/media-processing/references/ffmpeg-streaming.md +403 -0
- package/.claude/skills/media-processing/references/format-compatibility.md +375 -0
- package/.claude/skills/media-processing/references/imagemagick-batch.md +612 -0
- package/.claude/skills/media-processing/references/imagemagick-editing.md +623 -0
- package/.claude/skills/media-processing/references/rmbg-background-removal.md +66 -0
- package/.claude/skills/media-processing/references/troubleshooting.md +109 -0
- package/.claude/skills/media-processing/scripts/README.md +111 -0
- package/.claude/skills/media-processing/scripts/batch-remove-background.sh +124 -0
- package/.claude/skills/media-processing/scripts/batch_resize.py +342 -0
- package/.claude/skills/media-processing/scripts/media_convert.py +311 -0
- package/.claude/skills/media-processing/scripts/remove-background.sh +96 -0
- package/.claude/skills/media-processing/scripts/remove-bg-node.js +158 -0
- package/.claude/skills/media-processing/scripts/requirements.txt +24 -0
- package/.claude/skills/media-processing/scripts/tests/.coverage +0 -0
- package/.claude/skills/media-processing/scripts/tests/requirements.txt +2 -0
- package/.claude/skills/media-processing/scripts/tests/test_batch_resize.py +372 -0
- package/.claude/skills/media-processing/scripts/tests/test_media_convert.py +259 -0
- package/.claude/skills/media-processing/scripts/tests/test_video_optimize.py +397 -0
- package/.claude/skills/media-processing/scripts/video_optimize.py +414 -0
- package/.claude/skills/mermaidjs-v11/SKILL.md +115 -0
- package/.claude/skills/mermaidjs-v11/references/cli-usage.md +228 -0
- package/.claude/skills/mermaidjs-v11/references/configuration.md +232 -0
- package/.claude/skills/mermaidjs-v11/references/diagram-types.md +315 -0
- package/.claude/skills/mermaidjs-v11/references/examples.md +344 -0
- package/.claude/skills/mermaidjs-v11/references/integration.md +310 -0
- package/.claude/skills/mintlify/SKILL.md +120 -0
- package/.claude/skills/mintlify/references/ai-features-and-integrations-reference.md +756 -0
- package/.claude/skills/mintlify/references/api-documentation-components-reference.md +873 -0
- package/.claude/skills/mintlify/references/deployment-and-continuous-integration-reference.md +674 -0
- package/.claude/skills/mintlify/references/docs-json-configuration-reference.md +724 -0
- package/.claude/skills/mintlify/references/mdx-components-reference.md +551 -0
- package/.claude/skills/mintlify/references/navigation-structure-and-organization-reference.md +775 -0
- package/.claude/skills/mobile-development/SKILL.md +212 -0
- package/.claude/skills/mobile-development/references/mobile-android.md +604 -0
- package/.claude/skills/mobile-development/references/mobile-best-practices.md +545 -0
- package/.claude/skills/mobile-development/references/mobile-debugging.md +1089 -0
- package/.claude/skills/mobile-development/references/mobile-frameworks.md +465 -0
- package/.claude/skills/mobile-development/references/mobile-ios.md +496 -0
- package/.claude/skills/mobile-development/references/mobile-mindset.md +544 -0
- package/.claude/skills/payment-integration/README.md +217 -0
- package/.claude/skills/payment-integration/SKILL.md +102 -0
- package/.claude/skills/payment-integration/references/creem/api.md +139 -0
- package/.claude/skills/payment-integration/references/creem/checkouts.md +99 -0
- package/.claude/skills/payment-integration/references/creem/licensing.md +136 -0
- package/.claude/skills/payment-integration/references/creem/overview.md +65 -0
- package/.claude/skills/payment-integration/references/creem/sdk.md +161 -0
- package/.claude/skills/payment-integration/references/creem/subscriptions.md +129 -0
- package/.claude/skills/payment-integration/references/creem/webhooks.md +120 -0
- package/.claude/skills/payment-integration/references/implementation-workflows.md +43 -0
- package/.claude/skills/payment-integration/references/multi-provider-order-management-patterns.md +821 -0
- package/.claude/skills/payment-integration/references/paddle/api.md +116 -0
- package/.claude/skills/payment-integration/references/paddle/best-practices.md +130 -0
- package/.claude/skills/payment-integration/references/paddle/overview.md +57 -0
- package/.claude/skills/payment-integration/references/paddle/paddle-js.md +106 -0
- package/.claude/skills/payment-integration/references/paddle/sdk.md +131 -0
- package/.claude/skills/payment-integration/references/paddle/subscriptions.md +118 -0
- package/.claude/skills/payment-integration/references/paddle/webhooks.md +112 -0
- package/.claude/skills/payment-integration/references/polar/benefits.md +396 -0
- package/.claude/skills/payment-integration/references/polar/best-practices.md +902 -0
- package/.claude/skills/payment-integration/references/polar/checkouts.md +266 -0
- package/.claude/skills/payment-integration/references/polar/overview.md +184 -0
- package/.claude/skills/payment-integration/references/polar/products.md +244 -0
- package/.claude/skills/payment-integration/references/polar/sdk.md +436 -0
- package/.claude/skills/payment-integration/references/polar/subscriptions.md +340 -0
- package/.claude/skills/payment-integration/references/polar/webhooks.md +405 -0
- package/.claude/skills/payment-integration/references/sepay/api.md +140 -0
- package/.claude/skills/payment-integration/references/sepay/best-practices.md +939 -0
- package/.claude/skills/payment-integration/references/sepay/overview.md +138 -0
- package/.claude/skills/payment-integration/references/sepay/qr-codes.md +228 -0
- package/.claude/skills/payment-integration/references/sepay/sdk.md +213 -0
- package/.claude/skills/payment-integration/references/sepay/webhooks.md +208 -0
- package/.claude/skills/payment-integration/references/stripe/stripe-best-practices.md +32 -0
- package/.claude/skills/payment-integration/references/stripe/stripe-cli.md +148 -0
- package/.claude/skills/payment-integration/references/stripe/stripe-js.md +116 -0
- package/.claude/skills/payment-integration/references/stripe/stripe-sdks.md +84 -0
- package/.claude/skills/payment-integration/references/stripe/stripe-upgrade.md +175 -0
- package/.claude/skills/payment-integration/scripts/.env.example +20 -0
- package/.claude/skills/payment-integration/scripts/checkout-helper.js +244 -0
- package/.claude/skills/payment-integration/scripts/package.json +17 -0
- package/.claude/skills/payment-integration/scripts/polar-webhook-verify.js +202 -0
- package/.claude/skills/payment-integration/scripts/sepay-webhook-verify.js +193 -0
- package/.claude/skills/payment-integration/scripts/test-scripts.js +237 -0
- package/.claude/skills/planning/SKILL.md +132 -0
- package/.claude/skills/planning/references/codebase-understanding.md +62 -0
- package/.claude/skills/planning/references/output-standards.md +141 -0
- package/.claude/skills/planning/references/plan-organization.md +160 -0
- package/.claude/skills/planning/references/research-phase.md +49 -0
- package/.claude/skills/planning/references/solution-design.md +63 -0
- package/.claude/skills/plans-kanban/SKILL.md +166 -0
- package/.claude/skills/plans-kanban/assets/dashboard-template.html +119 -0
- package/.claude/skills/plans-kanban/assets/dashboard.css +1594 -0
- package/.claude/skills/plans-kanban/assets/dashboard.js +596 -0
- package/.claude/skills/plans-kanban/assets/favicon.png +0 -0
- package/.claude/skills/plans-kanban/package.json +13 -0
- package/.claude/skills/plans-kanban/scripts/lib/dashboard-renderer.cjs +884 -0
- package/.claude/skills/plans-kanban/scripts/lib/http-server.cjs +310 -0
- package/.claude/skills/plans-kanban/scripts/lib/plan-metadata-extractor.cjs +489 -0
- package/.claude/skills/plans-kanban/scripts/lib/plan-parser.cjs +175 -0
- package/.claude/skills/plans-kanban/scripts/lib/plan-scanner.cjs +272 -0
- package/.claude/skills/plans-kanban/scripts/lib/port-finder.cjs +48 -0
- package/.claude/skills/plans-kanban/scripts/lib/process-mgr.cjs +128 -0
- package/.claude/skills/plans-kanban/scripts/server.cjs +260 -0
- package/.claude/skills/problem-solving/SKILL.md +96 -0
- package/.claude/skills/problem-solving/references/attribution.md +69 -0
- package/.claude/skills/problem-solving/references/collision-zone-thinking.md +79 -0
- package/.claude/skills/problem-solving/references/inversion-exercise.md +91 -0
- package/.claude/skills/problem-solving/references/meta-pattern-recognition.md +87 -0
- package/.claude/skills/problem-solving/references/scale-game.md +95 -0
- package/.claude/skills/problem-solving/references/simplification-cascades.md +80 -0
- package/.claude/skills/problem-solving/references/when-stuck.md +72 -0
- package/.claude/skills/react-best-practices/AGENTS.md +2249 -0
- package/.claude/skills/react-best-practices/README.md +123 -0
- package/.claude/skills/react-best-practices/SKILL.md +121 -0
- package/.claude/skills/react-best-practices/metadata.json +15 -0
- package/.claude/skills/react-best-practices/rules/_sections.md +46 -0
- package/.claude/skills/react-best-practices/rules/_template.md +28 -0
- package/.claude/skills/react-best-practices/rules/advanced-event-handler-refs.md +55 -0
- package/.claude/skills/react-best-practices/rules/advanced-use-latest.md +49 -0
- package/.claude/skills/react-best-practices/rules/async-api-routes.md +38 -0
- package/.claude/skills/react-best-practices/rules/async-defer-await.md +80 -0
- package/.claude/skills/react-best-practices/rules/async-dependencies.md +36 -0
- package/.claude/skills/react-best-practices/rules/async-parallel.md +28 -0
- package/.claude/skills/react-best-practices/rules/async-suspense-boundaries.md +99 -0
- package/.claude/skills/react-best-practices/rules/bundle-barrel-imports.md +59 -0
- package/.claude/skills/react-best-practices/rules/bundle-conditional.md +31 -0
- package/.claude/skills/react-best-practices/rules/bundle-defer-third-party.md +49 -0
- package/.claude/skills/react-best-practices/rules/bundle-dynamic-imports.md +35 -0
- package/.claude/skills/react-best-practices/rules/bundle-preload.md +50 -0
- package/.claude/skills/react-best-practices/rules/client-event-listeners.md +74 -0
- package/.claude/skills/react-best-practices/rules/client-swr-dedup.md +56 -0
- package/.claude/skills/react-best-practices/rules/js-batch-dom-css.md +82 -0
- package/.claude/skills/react-best-practices/rules/js-cache-function-results.md +80 -0
- package/.claude/skills/react-best-practices/rules/js-cache-property-access.md +28 -0
- package/.claude/skills/react-best-practices/rules/js-cache-storage.md +70 -0
- package/.claude/skills/react-best-practices/rules/js-combine-iterations.md +32 -0
- package/.claude/skills/react-best-practices/rules/js-early-exit.md +50 -0
- package/.claude/skills/react-best-practices/rules/js-hoist-regexp.md +45 -0
- package/.claude/skills/react-best-practices/rules/js-index-maps.md +37 -0
- package/.claude/skills/react-best-practices/rules/js-length-check-first.md +49 -0
- package/.claude/skills/react-best-practices/rules/js-min-max-loop.md +82 -0
- package/.claude/skills/react-best-practices/rules/js-set-map-lookups.md +24 -0
- package/.claude/skills/react-best-practices/rules/js-tosorted-immutable.md +57 -0
- package/.claude/skills/react-best-practices/rules/rendering-activity.md +26 -0
- package/.claude/skills/react-best-practices/rules/rendering-animate-svg-wrapper.md +47 -0
- package/.claude/skills/react-best-practices/rules/rendering-conditional-render.md +40 -0
- package/.claude/skills/react-best-practices/rules/rendering-content-visibility.md +38 -0
- package/.claude/skills/react-best-practices/rules/rendering-hoist-jsx.md +46 -0
- package/.claude/skills/react-best-practices/rules/rendering-hydration-no-flicker.md +82 -0
- package/.claude/skills/react-best-practices/rules/rendering-svg-precision.md +28 -0
- package/.claude/skills/react-best-practices/rules/rerender-defer-reads.md +39 -0
- package/.claude/skills/react-best-practices/rules/rerender-dependencies.md +45 -0
- package/.claude/skills/react-best-practices/rules/rerender-derived-state.md +29 -0
- package/.claude/skills/react-best-practices/rules/rerender-functional-setstate.md +74 -0
- package/.claude/skills/react-best-practices/rules/rerender-lazy-state-init.md +58 -0
- package/.claude/skills/react-best-practices/rules/rerender-memo.md +44 -0
- package/.claude/skills/react-best-practices/rules/rerender-transitions.md +40 -0
- package/.claude/skills/react-best-practices/rules/server-after-nonblocking.md +73 -0
- package/.claude/skills/react-best-practices/rules/server-cache-lru.md +41 -0
- package/.claude/skills/react-best-practices/rules/server-cache-react.md +26 -0
- package/.claude/skills/react-best-practices/rules/server-parallel-fetching.md +79 -0
- package/.claude/skills/react-best-practices/rules/server-serialization.md +38 -0
- package/.claude/skills/remotion/SKILL.md +43 -0
- package/.claude/skills/remotion/rules/3d.md +86 -0
- package/.claude/skills/remotion/rules/animations.md +29 -0
- package/.claude/skills/remotion/rules/assets/charts-bar-chart.tsx +173 -0
- package/.claude/skills/remotion/rules/assets/text-animations-typewriter.tsx +100 -0
- package/.claude/skills/remotion/rules/assets/text-animations-word-highlight.tsx +108 -0
- package/.claude/skills/remotion/rules/assets.md +78 -0
- package/.claude/skills/remotion/rules/audio.md +172 -0
- package/.claude/skills/remotion/rules/calculate-metadata.md +104 -0
- package/.claude/skills/remotion/rules/can-decode.md +75 -0
- package/.claude/skills/remotion/rules/charts.md +58 -0
- package/.claude/skills/remotion/rules/compositions.md +146 -0
- package/.claude/skills/remotion/rules/display-captions.md +126 -0
- package/.claude/skills/remotion/rules/extract-frames.md +229 -0
- package/.claude/skills/remotion/rules/fonts.md +152 -0
- package/.claude/skills/remotion/rules/get-audio-duration.md +58 -0
- package/.claude/skills/remotion/rules/get-video-dimensions.md +68 -0
- package/.claude/skills/remotion/rules/get-video-duration.md +58 -0
- package/.claude/skills/remotion/rules/gifs.md +138 -0
- package/.claude/skills/remotion/rules/images.md +130 -0
- package/.claude/skills/remotion/rules/import-srt-captions.md +67 -0
- package/.claude/skills/remotion/rules/lottie.md +68 -0
- package/.claude/skills/remotion/rules/measuring-dom-nodes.md +35 -0
- package/.claude/skills/remotion/rules/measuring-text.md +143 -0
- package/.claude/skills/remotion/rules/sequencing.md +106 -0
- package/.claude/skills/remotion/rules/tailwind.md +11 -0
- package/.claude/skills/remotion/rules/text-animations.md +20 -0
- package/.claude/skills/remotion/rules/timing.md +179 -0
- package/.claude/skills/remotion/rules/transcribe-captions.md +19 -0
- package/.claude/skills/remotion/rules/transitions.md +122 -0
- package/.claude/skills/remotion/rules/trimming.md +53 -0
- package/.claude/skills/remotion/rules/videos.md +171 -0
- package/.claude/skills/repomix/SKILL.md +247 -0
- package/.claude/skills/repomix/references/configuration.md +211 -0
- package/.claude/skills/repomix/references/usage-patterns.md +232 -0
- package/.claude/skills/repomix/scripts/.coverage +0 -0
- package/.claude/skills/repomix/scripts/README.md +179 -0
- package/.claude/skills/repomix/scripts/repomix_batch.py +455 -0
- package/.claude/skills/repomix/scripts/repos.example.json +15 -0
- package/.claude/skills/repomix/scripts/requirements.txt +15 -0
- package/.claude/skills/repomix/scripts/tests/test_repomix_batch.py +531 -0
- package/.claude/skills/research/SKILL.md +170 -0
- package/.claude/skills/scout/SKILL.md +79 -0
- package/.claude/skills/scout/references/external-scouting.md +140 -0
- package/.claude/skills/scout/references/internal-scouting.md +119 -0
- package/.claude/skills/sequential-thinking/.env.example +8 -0
- package/.claude/skills/sequential-thinking/README.md +183 -0
- package/.claude/skills/sequential-thinking/SKILL.md +94 -0
- package/.claude/skills/sequential-thinking/package.json +31 -0
- package/.claude/skills/sequential-thinking/references/advanced-strategies.md +79 -0
- package/.claude/skills/sequential-thinking/references/advanced-techniques.md +76 -0
- package/.claude/skills/sequential-thinking/references/core-patterns.md +95 -0
- package/.claude/skills/sequential-thinking/references/examples-api.md +88 -0
- package/.claude/skills/sequential-thinking/references/examples-architecture.md +94 -0
- package/.claude/skills/sequential-thinking/references/examples-debug.md +90 -0
- package/.claude/skills/sequential-thinking/scripts/format-thought.js +159 -0
- package/.claude/skills/sequential-thinking/scripts/process-thought.js +236 -0
- package/.claude/skills/sequential-thinking/tests/format-thought.test.js +133 -0
- package/.claude/skills/sequential-thinking/tests/process-thought.test.js +215 -0
- package/.claude/skills/shader/SKILL.md +112 -0
- package/.claude/skills/shader/references/glsl-cellular-voronoi-worley-noise-patterns.md +142 -0
- package/.claude/skills/shader/references/glsl-colors-rgb-hsb-gradients-mixing-color-spaces.md +143 -0
- package/.claude/skills/shader/references/glsl-fbm-fractional-brownian-motion-turbulence-octaves.md +146 -0
- package/.claude/skills/shader/references/glsl-fundamentals-data-types-vectors-precision-coordinates.md +104 -0
- package/.claude/skills/shader/references/glsl-noise-random-perlin-simplex-cellular-voronoi.md +115 -0
- package/.claude/skills/shader/references/glsl-pattern-symmetry-truchet-domain-warping.md +134 -0
- package/.claude/skills/shader/references/glsl-patterns-tiling-fract-matrices-transformations.md +133 -0
- package/.claude/skills/shader/references/glsl-procedural-textures-clouds-marble-wood-terrain.md +144 -0
- package/.claude/skills/shader/references/glsl-shader-builtin-functions-complete-api-reference.md +112 -0
- package/.claude/skills/shader/references/glsl-shapes-polygon-star-polar-sdf-combinations.md +124 -0
- package/.claude/skills/shader/references/glsl-shapes-sdf-circles-rectangles-polar-distance-fields.md +106 -0
- package/.claude/skills/shader/references/glsl-shaping-functions-step-smoothstep-curves-interpolation.md +141 -0
- package/.claude/skills/shopify/README.md +66 -0
- package/.claude/skills/shopify/SKILL.md +319 -0
- package/.claude/skills/shopify/references/app-development.md +470 -0
- package/.claude/skills/shopify/references/extensions.md +493 -0
- package/.claude/skills/shopify/references/themes.md +498 -0
- package/.claude/skills/shopify/scripts/.coverage +0 -0
- package/.claude/skills/shopify/scripts/requirements.txt +19 -0
- package/.claude/skills/shopify/scripts/shopify_init.py +423 -0
- package/.claude/skills/shopify/scripts/tests/.coverage +0 -0
- package/.claude/skills/shopify/scripts/tests/test_shopify_init.py +385 -0
- package/.claude/skills/skill-creator/LICENSE.txt +202 -0
- package/.claude/skills/skill-creator/SKILL.md +309 -0
- package/.claude/skills/skill-creator/references/metadata-quality-criteria.md +76 -0
- package/.claude/skills/skill-creator/references/plugin-marketplace-hosting.md +101 -0
- package/.claude/skills/skill-creator/references/plugin-marketplace-overview.md +55 -0
- package/.claude/skills/skill-creator/references/plugin-marketplace-schema.md +88 -0
- package/.claude/skills/skill-creator/references/plugin-marketplace-sources.md +103 -0
- package/.claude/skills/skill-creator/references/plugin-marketplace-troubleshooting.md +80 -0
- package/.claude/skills/skill-creator/references/script-quality-criteria.md +106 -0
- package/.claude/skills/skill-creator/references/structure-organization-criteria.md +114 -0
- package/.claude/skills/skill-creator/references/token-efficiency-criteria.md +74 -0
- package/.claude/skills/skill-creator/references/validation-checklist.md +83 -0
- package/.claude/skills/skill-creator/scripts/encoding_utils.py +36 -0
- package/.claude/skills/skill-creator/scripts/init_skill.py +308 -0
- package/.claude/skills/skill-creator/scripts/package_skill.py +115 -0
- package/.claude/skills/skill-creator/scripts/quick_validate.py +69 -0
- package/.claude/skills/template-skill/SKILL.md +6 -0
- package/.claude/skills/threejs/SKILL.md +141 -0
- package/.claude/skills/threejs/data/api-reference.csv +61 -0
- package/.claude/skills/threejs/data/categories.csv +14 -0
- package/.claude/skills/threejs/data/examples-all.csv +557 -0
- package/.claude/skills/threejs/data/use-cases.csv +21 -0
- package/.claude/skills/threejs/references/00-fundamentals.md +487 -0
- package/.claude/skills/threejs/references/01-getting-started.md +177 -0
- package/.claude/skills/threejs/references/02-loaders.md +169 -0
- package/.claude/skills/threejs/references/03-textures.md +170 -0
- package/.claude/skills/threejs/references/04-cameras.md +195 -0
- package/.claude/skills/threejs/references/05-lights.md +183 -0
- package/.claude/skills/threejs/references/06-animations.md +214 -0
- package/.claude/skills/threejs/references/07-math.md +260 -0
- package/.claude/skills/threejs/references/08-interaction.md +267 -0
- package/.claude/skills/threejs/references/09-postprocessing.md +240 -0
- package/.claude/skills/threejs/references/10-controls.md +259 -0
- package/.claude/skills/threejs/references/11-materials-advanced.md +270 -0
- package/.claude/skills/threejs/references/11-materials.md +519 -0
- package/.claude/skills/threejs/references/12-performance.md +269 -0
- package/.claude/skills/threejs/references/13-node-materials.md +298 -0
- package/.claude/skills/threejs/references/14-physics-vr.md +304 -0
- package/.claude/skills/threejs/references/15-specialized-loaders.md +333 -0
- package/.claude/skills/threejs/references/16-webgpu.md +302 -0
- package/.claude/skills/threejs/references/17-shader.md +641 -0
- package/.claude/skills/threejs/references/18-geometry.md +547 -0
- package/.claude/skills/threejs/scripts/core.py +236 -0
- package/.claude/skills/threejs/scripts/extract_examples.py +688 -0
- package/.claude/skills/threejs/scripts/generate_csv_from_json.py +135 -0
- package/.claude/skills/threejs/scripts/search.py +77 -0
- package/.claude/skills/ui-styling/LICENSE.txt +202 -0
- package/.claude/skills/ui-styling/SKILL.md +321 -0
- package/.claude/skills/ui-styling/canvas-fonts/ArsenalSC-OFL.txt +93 -0
- package/.claude/skills/ui-styling/canvas-fonts/ArsenalSC-Regular.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/BigShoulders-Bold.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/BigShoulders-OFL.txt +93 -0
- package/.claude/skills/ui-styling/canvas-fonts/BigShoulders-Regular.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/Boldonse-OFL.txt +93 -0
- package/.claude/skills/ui-styling/canvas-fonts/Boldonse-Regular.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/BricolageGrotesque-Bold.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/BricolageGrotesque-OFL.txt +93 -0
- package/.claude/skills/ui-styling/canvas-fonts/BricolageGrotesque-Regular.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/CrimsonPro-Bold.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/CrimsonPro-Italic.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/CrimsonPro-OFL.txt +93 -0
- package/.claude/skills/ui-styling/canvas-fonts/CrimsonPro-Regular.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/DMMono-OFL.txt +93 -0
- package/.claude/skills/ui-styling/canvas-fonts/DMMono-Regular.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/EricaOne-OFL.txt +94 -0
- package/.claude/skills/ui-styling/canvas-fonts/EricaOne-Regular.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/GeistMono-Bold.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/GeistMono-OFL.txt +93 -0
- package/.claude/skills/ui-styling/canvas-fonts/GeistMono-Regular.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/Gloock-OFL.txt +93 -0
- package/.claude/skills/ui-styling/canvas-fonts/Gloock-Regular.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/IBMPlexMono-Bold.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/IBMPlexMono-OFL.txt +93 -0
- package/.claude/skills/ui-styling/canvas-fonts/IBMPlexMono-Regular.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/IBMPlexSerif-Bold.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/IBMPlexSerif-BoldItalic.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/IBMPlexSerif-Italic.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/IBMPlexSerif-Regular.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/InstrumentSans-Bold.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/InstrumentSans-BoldItalic.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/InstrumentSans-Italic.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/InstrumentSans-OFL.txt +93 -0
- package/.claude/skills/ui-styling/canvas-fonts/InstrumentSans-Regular.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/InstrumentSerif-Italic.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/InstrumentSerif-Regular.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/Italiana-OFL.txt +93 -0
- package/.claude/skills/ui-styling/canvas-fonts/Italiana-Regular.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/JetBrainsMono-Bold.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/JetBrainsMono-OFL.txt +93 -0
- package/.claude/skills/ui-styling/canvas-fonts/JetBrainsMono-Regular.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/Jura-Light.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/Jura-Medium.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/Jura-OFL.txt +93 -0
- package/.claude/skills/ui-styling/canvas-fonts/LibreBaskerville-OFL.txt +93 -0
- package/.claude/skills/ui-styling/canvas-fonts/LibreBaskerville-Regular.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/Lora-Bold.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/Lora-BoldItalic.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/Lora-Italic.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/Lora-OFL.txt +93 -0
- package/.claude/skills/ui-styling/canvas-fonts/Lora-Regular.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/NationalPark-Bold.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/NationalPark-OFL.txt +93 -0
- package/.claude/skills/ui-styling/canvas-fonts/NationalPark-Regular.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/NothingYouCouldDo-OFL.txt +93 -0
- package/.claude/skills/ui-styling/canvas-fonts/NothingYouCouldDo-Regular.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/Outfit-Bold.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/Outfit-OFL.txt +93 -0
- package/.claude/skills/ui-styling/canvas-fonts/Outfit-Regular.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/PixelifySans-Medium.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/PixelifySans-OFL.txt +93 -0
- package/.claude/skills/ui-styling/canvas-fonts/PoiretOne-OFL.txt +93 -0
- package/.claude/skills/ui-styling/canvas-fonts/PoiretOne-Regular.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/RedHatMono-Bold.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/RedHatMono-OFL.txt +93 -0
- package/.claude/skills/ui-styling/canvas-fonts/RedHatMono-Regular.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/Silkscreen-OFL.txt +93 -0
- package/.claude/skills/ui-styling/canvas-fonts/Silkscreen-Regular.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/SmoochSans-Medium.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/SmoochSans-OFL.txt +93 -0
- package/.claude/skills/ui-styling/canvas-fonts/Tektur-Medium.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/Tektur-OFL.txt +93 -0
- package/.claude/skills/ui-styling/canvas-fonts/Tektur-Regular.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/WorkSans-Bold.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/WorkSans-BoldItalic.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/WorkSans-Italic.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/WorkSans-OFL.txt +93 -0
- package/.claude/skills/ui-styling/canvas-fonts/WorkSans-Regular.ttf +0 -0
- package/.claude/skills/ui-styling/canvas-fonts/YoungSerif-OFL.txt +93 -0
- package/.claude/skills/ui-styling/canvas-fonts/YoungSerif-Regular.ttf +0 -0
- package/.claude/skills/ui-styling/references/canvas-design-system.md +320 -0
- package/.claude/skills/ui-styling/references/shadcn-accessibility.md +471 -0
- package/.claude/skills/ui-styling/references/shadcn-components.md +424 -0
- package/.claude/skills/ui-styling/references/shadcn-theming.md +373 -0
- package/.claude/skills/ui-styling/references/tailwind-customization.md +483 -0
- package/.claude/skills/ui-styling/references/tailwind-responsive.md +382 -0
- package/.claude/skills/ui-styling/references/tailwind-utilities.md +455 -0
- package/.claude/skills/ui-styling/scripts/.coverage +0 -0
- package/.claude/skills/ui-styling/scripts/requirements.txt +17 -0
- package/.claude/skills/ui-styling/scripts/shadcn_add.py +292 -0
- package/.claude/skills/ui-styling/scripts/tailwind_config_gen.py +456 -0
- package/.claude/skills/ui-styling/scripts/tests/coverage-ui.json +1 -0
- package/.claude/skills/ui-styling/scripts/tests/requirements.txt +3 -0
- package/.claude/skills/ui-styling/scripts/tests/test_shadcn_add.py +266 -0
- package/.claude/skills/ui-styling/scripts/tests/test_tailwind_config_gen.py +336 -0
- package/.claude/skills/ui-ux-pro-max/SKILL.md +351 -0
- package/.claude/skills/ui-ux-pro-max/data/charts.csv +26 -0
- package/.claude/skills/ui-ux-pro-max/data/colors.csv +97 -0
- package/.claude/skills/ui-ux-pro-max/data/icons.csv +101 -0
- package/.claude/skills/ui-ux-pro-max/data/landing.csv +31 -0
- package/.claude/skills/ui-ux-pro-max/data/products.csv +97 -0
- package/.claude/skills/ui-ux-pro-max/data/prompts.csv +24 -0
- package/.claude/skills/ui-ux-pro-max/data/react-performance.csv +45 -0
- package/.claude/skills/ui-ux-pro-max/data/stacks/flutter.csv +53 -0
- package/.claude/skills/ui-ux-pro-max/data/stacks/html-tailwind.csv +56 -0
- package/.claude/skills/ui-ux-pro-max/data/stacks/nextjs.csv +53 -0
- package/.claude/skills/ui-ux-pro-max/data/stacks/nuxt-ui.csv +51 -0
- package/.claude/skills/ui-ux-pro-max/data/stacks/nuxtjs.csv +59 -0
- package/.claude/skills/ui-ux-pro-max/data/stacks/react-native.csv +52 -0
- package/.claude/skills/ui-ux-pro-max/data/stacks/react.csv +54 -0
- package/.claude/skills/ui-ux-pro-max/data/stacks/shadcn.csv +61 -0
- package/.claude/skills/ui-ux-pro-max/data/stacks/svelte.csv +54 -0
- package/.claude/skills/ui-ux-pro-max/data/stacks/swiftui.csv +51 -0
- package/.claude/skills/ui-ux-pro-max/data/stacks/vue.csv +50 -0
- package/.claude/skills/ui-ux-pro-max/data/styles.csv +59 -0
- package/.claude/skills/ui-ux-pro-max/data/typography.csv +58 -0
- package/.claude/skills/ui-ux-pro-max/data/ui-reasoning.csv +101 -0
- package/.claude/skills/ui-ux-pro-max/data/ux-guidelines.csv +100 -0
- package/.claude/skills/ui-ux-pro-max/data/web-interface.csv +31 -0
- package/.claude/skills/ui-ux-pro-max/scripts/core.py +257 -0
- package/.claude/skills/ui-ux-pro-max/scripts/design_system.py +494 -0
- package/.claude/skills/ui-ux-pro-max/scripts/search.py +84 -0
- package/.claude/skills/web-design-guidelines/SKILL.md +36 -0
- package/.claude/skills/web-frameworks/SKILL.md +324 -0
- package/.claude/skills/web-frameworks/references/nextjs-app-router.md +465 -0
- package/.claude/skills/web-frameworks/references/nextjs-data-fetching.md +459 -0
- package/.claude/skills/web-frameworks/references/nextjs-optimization.md +511 -0
- package/.claude/skills/web-frameworks/references/nextjs-server-components.md +495 -0
- package/.claude/skills/web-frameworks/references/remix-icon-integration.md +603 -0
- package/.claude/skills/web-frameworks/references/turborepo-caching.md +551 -0
- package/.claude/skills/web-frameworks/references/turborepo-pipelines.md +517 -0
- package/.claude/skills/web-frameworks/references/turborepo-setup.md +542 -0
- package/.claude/skills/web-frameworks/scripts/.coverage +0 -0
- package/.claude/skills/web-frameworks/scripts/__init__.py +0 -0
- package/.claude/skills/web-frameworks/scripts/nextjs_init.py +547 -0
- package/.claude/skills/web-frameworks/scripts/requirements.txt +16 -0
- package/.claude/skills/web-frameworks/scripts/tests/coverage-web.json +1 -0
- package/.claude/skills/web-frameworks/scripts/tests/requirements.txt +3 -0
- package/.claude/skills/web-frameworks/scripts/tests/test_nextjs_init.py +319 -0
- package/.claude/skills/web-frameworks/scripts/tests/test_turborepo_migrate.py +374 -0
- package/.claude/skills/web-frameworks/scripts/turborepo_migrate.py +394 -0
- package/.claude/skills/web-testing/SKILL.md +96 -0
- package/.claude/skills/web-testing/references/accessibility-testing.md +84 -0
- package/.claude/skills/web-testing/references/api-testing.md +78 -0
- package/.claude/skills/web-testing/references/ci-cd-testing-workflows.md +121 -0
- package/.claude/skills/web-testing/references/component-testing.md +94 -0
- package/.claude/skills/web-testing/references/contract-testing.md +146 -0
- package/.claude/skills/web-testing/references/cross-browser-checklist.md +72 -0
- package/.claude/skills/web-testing/references/database-testing.md +139 -0
- package/.claude/skills/web-testing/references/e2e-testing-playwright.md +119 -0
- package/.claude/skills/web-testing/references/functional-testing-checklist.md +88 -0
- package/.claude/skills/web-testing/references/interactive-testing-patterns.md +89 -0
- package/.claude/skills/web-testing/references/load-testing-k6.md +93 -0
- package/.claude/skills/web-testing/references/mobile-gesture-testing.md +85 -0
- package/.claude/skills/web-testing/references/performance-core-web-vitals.md +124 -0
- package/.claude/skills/web-testing/references/playwright-component-testing.md +115 -0
- package/.claude/skills/web-testing/references/pre-release-checklist.md +75 -0
- package/.claude/skills/web-testing/references/security-checklists.md +81 -0
- package/.claude/skills/web-testing/references/security-testing-overview.md +92 -0
- package/.claude/skills/web-testing/references/shadow-dom-testing.md +70 -0
- package/.claude/skills/web-testing/references/test-data-management.md +131 -0
- package/.claude/skills/web-testing/references/test-flakiness-mitigation.md +86 -0
- package/.claude/skills/web-testing/references/testing-pyramid-strategy.md +76 -0
- package/.claude/skills/web-testing/references/unit-integration-testing.md +138 -0
- package/.claude/skills/web-testing/references/visual-regression.md +92 -0
- package/.claude/skills/web-testing/references/vulnerability-payloads.md +93 -0
- package/.claude/skills/web-testing/scripts/analyze-test-results.js +280 -0
- package/.claude/skills/web-testing/scripts/init-playwright.js +233 -0
- package/.claude/statusline.cjs +571 -0
- package/.claude/statusline.ps1 +307 -0
- package/.claude/statusline.sh +237 -0
- package/.commitlintrc.json +27 -0
- package/.coverage +0 -0
- package/.env.example +26 -0
- package/.github/workflows/branch-protection.yml +33 -0
- package/.github/workflows/release-beta.yml +63 -0
- package/.github/workflows/release.yml +63 -0
- package/.github/workflows/sync-dev-after-release.yml +32 -0
- package/.github/workflows/sync-main-to-dev.yml +35 -0
- package/.husky/commit-msg +12 -0
- package/.releaserc.beta-config.json +136 -0
- package/.releaserc.cjs +183 -0
- package/.releaserc.production.json +132 -0
- package/.repomixignore +22 -0
- package/AGENTS.md +61 -0
- package/CHANGELOG.md +2928 -0
- package/CLAUDE.md +88 -0
- package/GEMINI.md +75 -0
- package/LICENSE +18 -0
- package/README-MIRROR.md +174 -0
- package/README.md +602 -0
- package/TEST-MANIFEST.md +220 -0
- package/docs/assets/demo-landing-page-2.png +0 -0
- package/docs/assets/demo-landing-page-3.png +0 -0
- package/docs/assets/demo-landing-page.jpg +0 -0
- package/docs/assets/generated_generated_0.png +0 -0
- package/docs/assets/image-generation-test-report.md +223 -0
- package/docs/assets/imagen-correction-summary.md +161 -0
- package/docs/assets/imagen4_generated_1763658214_0.png +0 -0
- package/docs/assets/imagen4_generated_1763658238_0.png +0 -0
- package/docs/assets/imagen4_generated_1763658255_0.png +0 -0
- package/docs/assets/model-support-status.md +338 -0
- package/docs/assets/multimodal-generation-comprehensive-report.md +369 -0
- package/docs/assets/veo-video-generation-test-report.md +139 -0
- package/docs/assets/veo_generated_1763658722.mp4 +0 -0
- package/docs/assets/veo_generated_1763659088.mp4 +0 -0
- package/docs/code-standards.md +946 -0
- package/docs/codebase-summary.md +365 -0
- package/docs/infographics/cpg-marketing-2026-landscape.png +0 -0
- package/docs/infographics/cpg-marketing-2026-vietnam-creative.png +0 -0
- package/docs/infographics/cpg-marketing-2026-vietnam-search.png +0 -0
- package/docs/infographics/cpg-marketing-2026-vietnam-wild.png +0 -0
- package/docs/journals/2025-11-11-planning-skill-never-started.md +86 -0
- package/docs/journals/2025-11-11-windows-statusline-complete.md +71 -0
- package/docs/journals/2025-11-14-aesthetic-skill-ambitious-planning.md +107 -0
- package/docs/journals/2025-11-14-docs-commands-optimization-stuck.md +137 -0
- package/docs/journals/2510181655-massive-skills-integration-technical-debt.md +75 -0
- package/docs/journals/2510181700-obsession-with-conciseness.md +89 -0
- package/docs/journals/2510181710-git-workflow-evolution.md +108 -0
- package/docs/journals/2510181720-release-automation-reality-check.md +134 -0
- package/docs/journals/251106135700-wrong-about-agent-skills.md +184 -0
- package/docs/journals/251212-ck-name-pattern-refactor.md +70 -0
- package/docs/journals/INDEX.md +81 -0
- package/docs/project-overview-pdr.md +585 -0
- package/docs/project-roadmap.md +534 -0
- package/docs/referecences/claude-cli-usage-limits-api.md +522 -0
- package/docs/stlck-installation-guide.md +157 -0
- package/docs/system-architecture.md +1029 -0
- package/guide/COMMANDS.md +403 -0
- package/guide/COMMANDS.yaml +403 -0
- package/guide/ENVIRONMENT_RESOLVER.md +255 -0
- package/guide/SKILLS.md +234 -0
- package/guide/SKILLS.yaml +386 -0
- package/install-stlck.sh +163 -0
- package/package.json +18 -0
- package/plans/templates/bug-fix-template.md +69 -0
- package/plans/templates/feature-implementation-template.md +84 -0
- package/plans/templates/refactor-template.md +82 -0
- package/plans/templates/template-usage-guide.md +58 -0
- package/scripts/commands_data.yaml +363 -0
- package/scripts/generate-opencode.py +914 -0
- package/scripts/generate-release-manifest.cjs +201 -0
- package/scripts/generate_catalogs.py +168 -0
- package/scripts/prepare-release-assets.cjs +158 -0
- package/scripts/send-discord-release.cjs +204 -0
- package/scripts/skills_data.yaml +370 -0
- package/scripts/win_compat.py +57 -0
- package/shader.zip +0 -0
- package/tests/test-scout-block.ps1 +60 -0
- package/tests/test-scout-block.sh +117 -0
|
@@ -0,0 +1,3592 @@
|
|
|
1
|
+
"id","title","category","description","prompt","author","source"
|
|
2
|
+
"1","Wide quote card with portrait and Chinese/English customization","","A prompt for generating a wide quote card featuring a famous person’s portrait, with a brown background, light-gold serif quote text, and layout where text occupies two-thirds and the person one-third. The quote text and author are parameterized for reuse.","A wide quote card featuring a famous person, with a brown background and a light-gold serif font for the quote: “{argument name=""famous_quote"" default=""Stay Hungry, Stay Foolish""}” and smaller text: “—{argument name=""author"" default=""Steve Jobs""}.” There is a large, subtle quotation mark before the text. The portrait of the person is on the left, the text on the right. The text occupies two-thirds of the image and the portrait one-third, with a slight gradient transition effect on the portrait.","Nicolechan","https://x.com/stark_nico99/status/1991718646570426763"
|
|
3
|
+
"2","Premium liquid glass Bento grid product infographic with 8 modules","","Create an Infographics with bento grid 8 module layout, user can specify any product name in Food, Medicine, tech etc category, choose language, Background style, Hero grid style","Input Variable: [insert product name]
|
|
4
|
+
Language: [insert language]
|
|
5
|
+
|
|
6
|
+
System Instruction:
|
|
7
|
+
Create an image of premium liquid glass Bento grid product infographic with 8 modules (card 2 to 8 show text titles only).
|
|
8
|
+
1) Product Analysis:
|
|
9
|
+
→ Identify product's dominant natural color → ""hero color""
|
|
10
|
+
→ Identify category: FOOD / MEDICINE / TECH
|
|
11
|
+
2) Color Palette (derived from hero):
|
|
12
|
+
→ Product + accents: full saturation hero color
|
|
13
|
+
→ Icons, borders: muted hero (30-40% saturation, never black)
|
|
14
|
+
3) Visual Style:
|
|
15
|
+
→ Hero product: real photography (authentic, premium), 3D Glass version [choose one]
|
|
16
|
+
→ Cards: Apple liquid glass (85-90% transparent) with Whisper-thin borders and Subtle drop shadow for floating depth and reflecting the background color
|
|
17
|
+
→ Background stays behind cards and high blur where cards are [choose one]:
|
|
18
|
+
- Ethereal: product essence, light caustics, abstract glow
|
|
19
|
+
- Macro: product texture close-up, heavily blurred
|
|
20
|
+
- Pattern: product repeated softly at 10-15% opacity
|
|
21
|
+
- Context: relevant environment, blurred + desaturated
|
|
22
|
+
→ Add subtle motion effect
|
|
23
|
+
→ Asymmetric Bento grid, 16:9 landscape
|
|
24
|
+
→ Hero card: 28-30% | Info modules: 70-72%
|
|
25
|
+
4) Module Content (8 Cards):
|
|
26
|
+
M1 — Hero: Product displayed as real photo / 3D glass / stylized interpretation (choose one)in beautiful form + product name label
|
|
27
|
+
M2 — Core Benefits: 4 unique benefits + hero-color icons
|
|
28
|
+
M3 — How to Use: 4 usage methods + icons
|
|
29
|
+
M4 — Key Metrics: 5 EXACT data points
|
|
30
|
+
Format: [icon] [Label] [Bold Value] [Unit]
|
|
31
|
+
FOOD: Calories: [X] kcal/100g, Carbs: [X]g (fiber [X]g, sugar [X]g), Protein: [X]g, [Key Vitamin]: [X]mg ([X]% DV), [Key Mineral]: [X]mg ([X]% DV)
|
|
32
|
+
MEDICINE:Active: [name], Strength: [X] mg, Onset: [X] min, Duration: [X] hrs, Half-life: [X] hrs
|
|
33
|
+
TECH:Chip: [model], Battery: [X] hrs, Weight: [X]g,[Key spec]: [value], Connectivity: [protocols]
|
|
34
|
+
M5 — Who It's For: 4 recommended groups with green checkmark icons | 3 caution groups with amber warning icons
|
|
35
|
+
M6 — Important Notes: 4 precautions + warning icons
|
|
36
|
+
M7 — Quick Reference:
|
|
37
|
+
→ FOOD: Glycemic Index + dietary tags with icons
|
|
38
|
+
→ MEDICINE: Side effects + severity with icons
|
|
39
|
+
→ TECH: Compatibility + certifications with icons
|
|
40
|
+
M8 — Did You Know: 3 facts (origin, science, global stat) + icons
|
|
41
|
+
Output: 1 image, 16:9 landscape, ultra-premium liquid glass infographic.","Mansi Sanghani","https://x.com/MansiSanghani1/status/2013550795224961492"
|
|
42
|
+
"3","Hand-drawn style header image prompt from photo","","Prompt for a hand-drawn style header image of a person introducing Nano Banana Pro","Completely recreate the uploaded person.
|
|
43
|
+
Make it a header image for a note article where that person introduces “Nano Banana Pro”.
|
|
44
|
+
Aspect ratio: horizontal 16:9.
|
|
45
|
+
Style and colors: simple, hand-drawn style, italic, with a blue and green gradient.
|
|
46
|
+
Title text: “In-depth explanation of Google’s new AI ‘Nano Banana Pro’”.","セミナー講師専門AIコンシェルジュ|工藤 晶","https://x.com/akirakudo_ai/status/1992096860765561190"
|
|
47
|
+
"4","Watercolor map of Germany with labeled states","Language-DE","A German prompt to generate a watercolor-style map of Germany where all federal states are labeled in ballpoint pen, useful for educational or infographic-style maps.","Generate a map of Germany in watercolor style, on which all federal states are labeled in ballpoint pen.","Florian Gallwitz","https://x.com/FlorianGallwitz/status/1991796624646091091"
|
|
48
|
+
"5","New Year's Day Special: Four-Panel Puzzle for 2026 Blessing","","A detailed multi-panel prompt for Nano Banana Pro, creating a 2x2 grid photo collage where a single female character, in four different outfits and settings, pieces together a puzzle that spells '2026 New Year's Day Happy' in the center. The prompt specifies precise facial feature retention, clothing details, background elements, and photographic parameters for a fashion magazine style.","[Key: Maintain precise facial features, retain original face structure, the character in the image must be completely consistent with the uploaded reference image] High-end photo studio 2x2 grid photo. Top-left panel (Navy Blue background): The character wears a navy blue uniform-style dress, decorated with gold buttons, vintage curls with a blue beret and pearl earrings. She holds up a huge puzzle piece (top-left piece, with the number ""20"" on it) with both hands, moving it towards the center of the frame. Her eyes are focused on the central puzzle area, her expression is serious, with a slight smile. The background features navy stripes, an anchor, and the text ""Set Sail for the New Year"". Top-right panel (Cherry Blossom Pink background): The same woman wears a pink lace dress, a pearl necklace, a princess hairstyle with a pink rose hairpin and crystal earrings. She holds up the top-right puzzle piece (with the number ""26"" on it) with both hands, moving it towards the center to connect with the top-left piece. Her eyes look at the puzzle seam, her expression is focused and expectant, and her body leans forward. The background features pink cherry blossoms, the text ""Beautiful Encounter"", butterflies, and petals. Bottom-left panel (Mint Green background): The same woman wears a mint green cotton and linen dress, in an artistic style, with natural long hair, a green hairband, and wooden earrings. She holds up the bottom-left puzzle piece (with the text ""New Year's Day"" on it) with both hands, moving it upwards to connect with the top-left piece. Her eyes look at the puzzle, her expression is serious, and her mouth is slightly pursed. The background features green plants, the text ""Hope Grows"", new sprouts, and leaves. Bottom-right panel (Lemon Yellow background): The same woman wears a yellow dress with a sunflower pattern, pigtails with yellow bows. She pushes in the last bottom-right puzzle piece (with the text ""Happy"" on it) to complete the puzzle. The four pieces perfectly form the complete pattern ""2026 New Year's Day Happy"" in the center of the frame. She tilts her head back, looking at the completed puzzle, her face beaming with a successful, joyful smile. The center of the frame bursts with golden light and confetti. The background features a yellow sun, the text ""Complete Success"", smiley faces, and sunflowers. The puzzle pieces converge from the four corners to the center to form a complete picture. Clear makeup, bright ring light, 85mm lens, f/1.8 aperture, four-panel composition with puzzle interaction, fashion magazine style.","松果先森","https://x.com/songguoxiansen/status/2005822648027091031"
|
|
49
|
+
"6","Vintage Patent Document for an Invention","","A prompt designed to generate an image of a vintage United States patent document from the late 1800s. It specifies details like precise technical drawings, handwritten annotations, aged paper texture, foxing stains, an embossed seal, and a wax stamp, making it ideal for historical or archival aesthetics.","A vintage patent document for {argument name=""invention"" default=""INVENTION""}, styled after late 1800s United States Patent Office filings. The page features precise technical drawings with numbered callouts (Fig. 1, Fig. 2, Fig. 3) showing front, side, and exploded views. Handwritten annotations in fountain-pen ink describe mechanisms. The paper is aged ivory with foxing stains and soft fold creases. An official embossed seal and red wax stamp appear in the corner. A hand-signed inventor's name and date appear at the bottom. The entire image feels like a recovered archival document—authoritative, historic, and slightly mysterious.","Alexandra Aisling","https://x.com/AllaAisling/status/2004212035333365763"
|
|
50
|
+
"7","Chalkboard-style AI news summary","","A Japanese prompt for turning AI news content into a hand-drawn, teacher-style chalkboard diagram with explanations.","Using the following content, summarize the news in a chalkboard-style, hand‑written look, and break it down with diagrams and easy‑to‑understand expressions as if a teacher had written it.
|
|
51
|
+
—-
|
|
52
|
+
Search results from Grok","ひでもん | AI開発@ニュース発信","https://x.com/okknews/status/1992173611520868372"
|
|
53
|
+
"8","Detailed mirror-selfie otaku room scene","","A very detailed Nano Banana prompt describing a female mirror selfie in a blue-toned otaku computer corner, with full specifications for character, environment, lighting, camera, and negative prompts.","### Scene
|
|
54
|
+
Mirror selfie in an otaku-style computer corner, blue color tone.
|
|
55
|
+
|
|
56
|
+
### Subject
|
|
57
|
+
* Gender expression: female
|
|
58
|
+
* Age: around 25
|
|
59
|
+
* Ethnicity: East Asian
|
|
60
|
+
* Body type: slim, with a defined waist; natural body proportions
|
|
61
|
+
* Skin tone: light neutral tone
|
|
62
|
+
* Hairstyle:
|
|
63
|
+
* Length: waist-length hair
|
|
64
|
+
* Style: straight with slightly curled ends
|
|
65
|
+
* Color: medium brown
|
|
66
|
+
* Pose:
|
|
67
|
+
* Stance: standing in a slight contrapposto pose
|
|
68
|
+
* Right hand: holding a smartphone in front of her face (identity hidden)
|
|
69
|
+
* Left arm: naturally hanging down alongside the torso
|
|
70
|
+
* Torso: body leaning slightly back; waist and abdomen exposed
|
|
71
|
+
* Clothing:
|
|
72
|
+
* Top: light blue cropped knit cardigan, top two buttons fastened; a blue French-style bra faintly visible
|
|
73
|
+
* Bottom: denim ultra-short shorts, with a blue satin ribbon bow on each side of the hips
|
|
74
|
+
* Socks: blue and white horizontal striped over-the-knee socks
|
|
75
|
+
* Accessory: a blue cute mascot phone case
|
|
76
|
+
|
|
77
|
+
### Environment
|
|
78
|
+
* Description: bedroom computer corner seen through a wall-mounted mirror
|
|
79
|
+
* Furnishings:
|
|
80
|
+
* White desk
|
|
81
|
+
* Single monitor showing a soft blue wallpaper (no readable text)
|
|
82
|
+
* Mechanical keyboard with white keycaps on a blue desk mat
|
|
83
|
+
* Mouse on a small blue mouse pad
|
|
84
|
+
* PC tower on the right side with blue case lighting
|
|
85
|
+
* Three anime figures on or near the PC tower
|
|
86
|
+
* A poster of a pagoda on the wall
|
|
87
|
+
* Cat-shaped desk lamp with blue accents
|
|
88
|
+
* A transparent glass of water
|
|
89
|
+
* A tall green leafy plant by the window (on the left side of the frame)
|
|
90
|
+
* Color replacement: replace all originally pink elements (clothes and room decor) with blue tones (baby blue to sky blue/periwinkle blue).
|
|
91
|
+
|
|
92
|
+
### Lighting
|
|
93
|
+
* Light source: daylight coming from a large window on the left side of the camera, through sheer curtains
|
|
94
|
+
* Light quality: soft, diffused light
|
|
95
|
+
* White balance (K): 5200
|
|
96
|
+
|
|
97
|
+
### Camera
|
|
98
|
+
* Mode: smartphone rear camera shooting via the mirror (no portrait/bokeh mode)
|
|
99
|
+
* Equivalent focal length (mm): 26
|
|
100
|
+
* Distances (m):
|
|
101
|
+
* Subject to mirror: 0.6
|
|
102
|
+
* Camera to mirror: 0.5
|
|
103
|
+
* Exposure:
|
|
104
|
+
* Aperture (f): 1.8
|
|
105
|
+
* ISO: 100
|
|
106
|
+
* Shutter speed (s): 0.01
|
|
107
|
+
* Exposure compensation (EV): -0.3
|
|
108
|
+
* Focus: focus on the torso and shorts in the mirror image
|
|
109
|
+
* Depth of field: natural smartphone deep depth of field; background clearly visible with no artificial blur
|
|
110
|
+
* Composition:
|
|
111
|
+
* Aspect ratio: 1:1
|
|
112
|
+
* Crop: from the top of the head to mid-thigh; include the desk, monitor, PC tower, and plant in the frame
|
|
113
|
+
* Angle: slightly high angle from the mirror’s point of view
|
|
114
|
+
* Composition note: keep the subject centered; to avoid wide-angle edge distortion, have her stand a bit further away and crop to a square later.
|
|
115
|
+
|
|
116
|
+
### Negative prompts
|
|
117
|
+
* Any appearance of pink/magenta anywhere
|
|
118
|
+
* Beauty filters/over-smoothed skin; poreless skin look
|
|
119
|
+
* Exaggerated or distorted anatomy
|
|
120
|
+
* NSFW, see-through fabrics, wardrobe malfunctions
|
|
121
|
+
* Logos, brand names, or readable user interface text
|
|
122
|
+
* Fake portrait-mode blur, CGI/illustration feel","宝玉","https://x.com/dotey/status/1976485558319722711"
|
|
123
|
+
"9","Edo-period Ukiyo-e reinterpretation of a modern scene","","A highly-structured image prompt to depict a modern-day scene reimagined as an Edo-period Japanese Ukiyo-e woodblock print, with detailed guidance on anachronistic tech, composition, texture, and color.","A Japanese Edo-period Ukiyo-e woodblock print. The overall feeling is a surreal collaboration between masters like Hokusai and Hiroshige, reimagining modern technology through an ancient lens.
|
|
124
|
+
|
|
125
|
+
**The scene:** {argument name=""modern scene"" default=""a busy Shibuya scramble crossing""}
|
|
126
|
+
|
|
127
|
+
**Edo transformation logic:**
|
|
128
|
+
Characters wear Edo-era kimono but perform modern actions. All technology is transformed into surreal Edo equivalents:
|
|
129
|
+
* Smartphones are glowing, illustrated paper scrolls being read intently.
|
|
130
|
+
* Metro stations and trains are giant articulated wooden centipede carriages shuffling through crowds.
|
|
131
|
+
* Skyscrapers are reimagined as endless, towering wooden pagodas reaching into dramatic clouds.
|
|
132
|
+
* Robots and mecha appear as giant, armored woodblock golems.
|
|
133
|
+
|
|
134
|
+
The composition uses a flattened perspective with large, bold, hand-carved ink outlines. The background features heavily stylized Ukiyo-e wave patterns and dramatic, swirling clouds, with a distant Mt. Fuji visible on the horizon.
|
|
135
|
+
|
|
136
|
+
The image must look like a physical print, not a digital painting.
|
|
137
|
+
* Texture: strong visible wood grain texture and rough paper fibers throughout the piece.
|
|
138
|
+
* Printing imperfections: pigment bleeding is evident. Simulate hand-pressed plates with slight color misalignment for authenticity.
|
|
139
|
+
* Color palette: strictly limited to traditional mineral pigments, with dominant use of Prussian blue, vermilion red, and muted yellow ochre.
|
|
140
|
+
* Lighting: soft, flat, shadow-free lighting with no digital gradients.
|
|
141
|
+
|
|
142
|
+
Aspect ratio is 3:4 vertical poster. Include vertical Japanese calligraphy describing the scene and a traditional red artist seal stamp in a corner.","VoxcatAI","https://x.com/VoxcatAI/status/1995497350543110411"
|
|
143
|
+
"10","Profile / Avatar - Nightlife Selfie Flash Editorial Portrait","","A highly specific JSON prompt for generating an ultra-photorealistic close-up selfie portrait taken at night using direct phone flash, achieving a candid but editorial look. It mandates strict face identity lock, details the subject's appearance (jet-black hair, pearl head chain), and specifies the lighting and background (dim lounge, bokeh highlights).","{
|
|
144
|
+
""generation_request"": {
|
|
145
|
+
""meta_data"": {
|
|
146
|
+
""tool"": ""NanoBanana Pro"",
|
|
147
|
+
""task_type"": ""photoreal_selfie_flash_nightlife_editorial"",
|
|
148
|
+
""version"": ""v1.0_PEARL_HEADCHAIN_SELFIE_FLASH_NO_AI_LOOK_NO_TEXT"",
|
|
149
|
+
""priority"": ""highest""
|
|
150
|
+
},
|
|
151
|
+
|
|
152
|
+
""references"": {
|
|
153
|
+
""reference_image_1"": {
|
|
154
|
+
""source"": ""UPLOAD_REFERENCE_IMAGE (OPTIONAL)"",
|
|
155
|
+
""purpose"": ""FACE_IDENTITY_AND_GLAM_STYLE_LOCK"",
|
|
156
|
+
""strict_lock"": true,
|
|
157
|
+
""face_similarity_priority"": ""MAX"",
|
|
158
|
+
""no_identity_blending"": true,
|
|
159
|
+
""no_beautify"": true,
|
|
160
|
+
""no_age_shift"": true,
|
|
161
|
+
""preserve_skin_texture"": true,
|
|
162
|
+
""preserve_facial_proportions"": true,
|
|
163
|
+
""preserve_expression"": true
|
|
164
|
+
}
|
|
165
|
+
},
|
|
166
|
+
|
|
167
|
+
""output_settings"": {
|
|
168
|
+
""aspect_ratio"": ""4:5"",
|
|
169
|
+
""orientation"": ""portrait"",
|
|
170
|
+
""resolution_target"": ""ultra_high_res"",
|
|
171
|
+
""render_style"": ""flash_candid_editorial"",
|
|
172
|
+
""sharpness"": ""flash_crisp_face_soft_background"",
|
|
173
|
+
""film_grain"": ""subtle_35mm"",
|
|
174
|
+
""color_grade"": ""warm_night_flash_neutral_skin"",
|
|
175
|
+
""dynamic_range"": ""natural_not_hdr"",
|
|
176
|
+
""skin_rendering"": ""real_texture_editorial_finish""
|
|
177
|
+
},
|
|
178
|
+
|
|
179
|
+
""creative_prompt"": {
|
|
180
|
+
""scene_summary"": ""Ultra-photorealistic close-up selfie portrait at night with direct phone flash. A glamorous young woman with long straight jet-black hair looks into the camera with a confident, slightly pouty expression. She wears an intricate pearl-and-crystal head chain (net pattern) draped over the hairline with small dangling drops, plus long pearl drop earrings. Outfit is an elegant ivory shimmer halter dress with modest coverage and realistic fabric folds. The overall look is luxury nightlife, candid but editorial, with clean skin texture and perfect facial structure."",
|
|
181
|
+
|
|
182
|
+
""environment"": {
|
|
183
|
+
""location"": ""dim indoor-outdoor lounge / villa entrance at night"",
|
|
184
|
+
""background"": ""dark wood beams, soft ambient practical lights, shallow depth of field, bokeh highlights"",
|
|
185
|
+
""lighting"": ""dominant direct phone flash as key, minimal ambient fill, realistic specular highlights on pearls""
|
|
186
|
+
},
|
|
187
|
+
|
|
188
|
+
""subject"": {
|
|
189
|
+
""appearance"": {
|
|
190
|
+
""hair"": ""long straight black hair, glossy but natural, visible strands, no waxy look"",
|
|
191
|
+
""makeup"": ""soft glam, sharp eyeliner, defined brows, subtle blush, glossy nude lips, realistic pores"",
|
|
192
|
+
""skin"": ""real skin texture, no smoothing, no plastic finish""
|
|
193
|
+
},
|
|
194
|
+
""accessories"": {
|
|
195
|
+
""headpiece"": ""pearl-and-crystal lattice head chain, symmetrical net pattern across the top of the head, small dangling pearl drops at the forehead and sides, realistic sparkle"",
|
|
196
|
+
""earrings"": ""long pearl drop earrings, elegant, realistic reflections""
|
|
197
|
+
},
|
|
198
|
+
""wardrobe"": {
|
|
199
|
+
""dress"": ""ivory shimmer halter dress, elegant neckline, modest coverage, realistic drape and micro-glitter""
|
|
200
|
+
},
|
|
201
|
+
""pose"": ""selfie angle, arms extended toward camera, shoulders relax""
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
}","Özge Döner","https://x.com/astronomerozge1/status/2013350554542498168"
|
|
206
|
+
"11","Profile / Avatar - Pixar-Style 3D Avatar Generation","","A prompt designed to convert an uploaded profile picture into a high-quality 3D avatar using a Pixar-style aesthetic, emphasizing cheerful expression, smooth textures, and exaggerated, cute proportions.","Create a high-quality 3D avatar of the person in the uploaded image with a cheerful, expressive face. The character should have a warm smile, bright eyes, and soft facial features that feel friendly and approachable. Render in a Pixar-style aesthetic with smooth textures, subtle skin shading, and slightly exaggerated proportions for a cute, animated look. Lighting should be soft and even, creating a clean studio look with gentle shadows for depth.","Heisenberg","https://x.com/rovvmut_/status/2013295220440654142"
|
|
207
|
+
"12","Profile / Avatar - Hyper-Realistic Gym Mirror Selfie Prompt (iPhone 17 Pro Simulation)","","A highly technical prompt for Gemini Nano Banana Pro designed to simulate a raw, high-contrast gym mirror selfie taken with an ultra-wide-angle iPhone 17 Pro lens. It mandates extreme bio-fidelity, sharp focus across all planes (no bokeh), aggressive anatomical tapering, and realistic textural details on clothing and skin, aiming for an unedited social media dump aesthetic.","(Vertical 9:16 smartphone aspect ratio). A raw, high-contrast [Gym Interior Mirror Capture] taken with an iPhone 17 Pro using the 0.5x ultra-wide-angle lens. NO ARTIFICIAL BOKEH. Every focal plane remains SHARP and in focus, from the subject's skin to the distant gym equipment.
|
|
208
|
+
Subject & Identity Locking:
|
|
209
|
+
•Identity: Strictly preserve the exact heart-shaped facial structure and unique features of the woman in Image 1 (Selfie).
|
|
210
|
+
•Bio-Fidelity: Render high-fidelity ""TrueLens"" biological physics: visible micro-pores, a natural ""satin-finish"" night hydration glow, and fine vellus hair catching the overhead light ONLY along the jawline.
|
|
211
|
+
•Silhouette Calibration (MAXIMUM UFF-FACTOR): Prioritize a dominant structural upper-torso volume and substantial, thick-toned anatomical depth in the lower extremities. Focus on an aggressive architectural tapering at the midsection to maximize the S-curve geometry.
|
|
212
|
+
Outfit & Textural Interaction:
|
|
213
|
+
•Clothing: A high-density, matte-black technical textile tee and matching high-tension minimalist athletic shorts.
|
|
214
|
+
•Tension: The technical fabric exhibits extreme mechanical tension and a vacuum-tight fit, creating realistic textural expansion and ""tension lines"" where the material contours to her fit silhouette.
|
|
215
|
+
•Matter Physics: White high-density cotton crew socks showing realistic textural contact and weight distribution against the tiled floor.
|
|
216
|
+
Pose & Composition:
|
|
217
|
+
•Pose: A 3/4 side-profile mirror selfie. She is standing with an axial rotation of the torso toward the mirror, arching her spine and popping her hip to highlight the symmetrical 3D volume of her physique.
|
|
218
|
+
•Action: Her RIGHT HAND holds a smartphone with a decorative casing, capturing the full-body ""fit-check"" reflection.
|
|
219
|
+
•UI Overlay: A white digital clock timestamp in the top-left corner reads ""8:33 PM"" in a simple sans-serif font.
|
|
220
|
+
Environment & Social Realism:
|
|
221
|
+
•Lighting: Direct, harsh overhead industrial lighting creating high-contrast specular highlights and deep, defining shadows that amplify her 3D form.
|
|
222
|
+
•Background (SHARP): A detailed commercial gym interior. A vibrant neon-green structural pillar, a white tiled floor with visible grout lines, and dark athletic benches are all perfectly IN FOCUS. No artificial blur.
|
|
223
|
+
Quality: Raw unedited social-media dump aesthetic, high dynamic range, visible digital grain in the deep shadows (ISO 1600 style), 8k resolution. Everything is sharp, detailed, and physically real.","Dan Reed","https://x.com/daaaaanc/status/2013280839228866742"
|
|
224
|
+
"13","Profile / Avatar - Avatar Girl Studio Portrait Transformation Prompt","","A detailed JSON prompt for generating a photorealistic studio portrait of a woman, transforming her human ears into elegant fantasy avatar ears while strictly locking her identity, skin texture, and facial proportions based on a reference image.","{
|
|
225
|
+
""JOB_TYPE"": ""image_generation"",
|
|
226
|
+
""LANGUAGE"": ""en"",
|
|
227
|
+
""REFERENCE_IMAGES"": {
|
|
228
|
+
""REF_1_SUBJECT_IDENTITY"": ""Use the FIRST reference image as the ONLY source for the woman's identity (face, skin texture, freckles, eye area, nose, lips, jawline, proportions). Keep her identity unchanged."",
|
|
229
|
+
""REF_2_OPTIONAL"": ""If a second reference is used, it is ONLY for mood/lighting. Do not change identity.""
|
|
230
|
+
},
|
|
231
|
+
""LOCKS"": {
|
|
232
|
+
""IDENTITY_LOCK"": ""The woman’s identity MUST match REF_1 exactly. Do not change age, ethnicity, facial structure, freckles pattern, eye shape, nose, lips, or skin texture."",
|
|
233
|
+
""STUDIO_LOCK"": ""Must look like a professional studio portrait with a pure white seamless background."",
|
|
234
|
+
""FRAMING_LOCK"": ""Waist-up portrait. Head fully visible. Centered composition.""
|
|
235
|
+
},
|
|
236
|
+
""SCENE"": {
|
|
237
|
+
""SETTING"": ""professional photo studio"",
|
|
238
|
+
""BACKGROUND"": ""pure white seamless backdrop, clean and shadow-minimized"",
|
|
239
|
+
""LIGHTING"": ""softbox key light + gentle fill, high-key studio lighting, even exposure, soft shadows"",
|
|
240
|
+
""CAMERA"": {
|
|
241
|
+
""SHOT_TYPE"": ""waist-up portrait"",
|
|
242
|
+
""ANGLE"": ""eye-level"",
|
|
243
|
+
""LENS_LOOK"": ""portrait lens look, natural perspective, sharp focus on eyes"",
|
|
244
|
+
""QUALITY"": ""ultra high resolution, crisp details, natural skin texture""
|
|
245
|
+
}
|
|
246
|
+
},
|
|
247
|
+
""SUBJECT"": {
|
|
248
|
+
""POSE"": ""neutral relaxed posture, shoulders natural, head slightly tilted if needed, calm confident expression"",
|
|
249
|
+
""GAZE"": ""looking into the camera"",
|
|
250
|
+
""CLOTHING"": ""simple minimal top (neutral tone), no logos, studio-appropriate""
|
|
251
|
+
},
|
|
252
|
+
""TRANSFORMATIONS"": {
|
|
253
|
+
""AVATAR_EARS"": {
|
|
254
|
+
""DESCRIPTION"": ""Replace human ears with elegant fantasy avatar ears: elongated, slightly pointed, smooth organic shape, natural attachment to the head, realistic skin blending and shading, symmetrical, proportional to the face.""
|
|
255
|
+
},
|
|
256
|
+
""HAIR"": {
|
|
257
|
+
""COLOR"": ""{argument name=""hair color"" default=""near-white silver gray (very light), cool-toned""}"",
|
|
258
|
+
""STYLE"": ""neatly done rasta braids (dreadlock braids), thin-to-medium thickness, clean scalp parting lines, tidy edges, professional braiding, consistent braid length, natural fall around head and shoulders"",
|
|
259
|
+
""DETAILS"": ""high strand definition, no frizz, realistic fiber texture""
|
|
260
|
+
}
|
|
261
|
+
},
|
|
262
|
+
""RENDERING_STYLE"": {
|
|
263
|
+
""LOOK"": ""photorealistic studio portrait with subtle fantasy features"",
|
|
264
|
+
""SKIN"": ""keep natural pores and freckles, no plastic skin, no over-smoothing"",
|
|
265
|
+
""COLOR_GRADING"": ""clean neutral, high-key studio tones""
|
|
266
|
+
},
|
|
267
|
+
""NEGATIVE_PROMPT"": [
|
|
268
|
+
""different person"",
|
|
269
|
+
""face changed"",
|
|
270
|
+
""extra ears"",
|
|
271
|
+
""deformed ears"",
|
|
272
|
+
""asymmetrical ears"",
|
|
273
|
+
""blurry"",
|
|
274
|
+
""low resolution"",
|
|
275
|
+
""cartoon"",
|
|
276
|
+
""anime"",
|
|
277
|
+
""over-smooth skin"",
|
|
278
|
+
""heavy makeup"",
|
|
279
|
+
""harsh shadows"",
|
|
280
|
+
""colored background"",
|
|
281
|
+
""busy background"",
|
|
282
|
+
""text"",
|
|
283
|
+
""watermark"",
|
|
284
|
+
""logo"",
|
|
285
|
+
""cropped head"",
|
|
286
|
+
""out of frame""
|
|
287
|
+
],
|
|
288
|
+
""OUTPUT"": {
|
|
289
|
+
""ASPECT_RATIO"": ""1:1"",
|
|
290
|
+
""STYLE_STRENGTH"": ""medium"",
|
|
291
|
+
""REA","manolya","https://x.com/manolyaai/status/2013230284175495545"
|
|
292
|
+
"14","Profile / Avatar - iPhone 15 Pro Candid Beach Selfie Prompt","","An extremely detailed, structured JSON prompt for Nano Banana Pro, simulating a candid, high-angle selfie taken with an iPhone 15 Pro on a bright beach. The prompt specifies hyper-realistic subject details (porcelain doll features, specific clothing, and expression) and technical constraints, including lighting, environment, and a negative prompt list.","{
|
|
293
|
+
""format"": {
|
|
294
|
+
""type"": ""editorial"",
|
|
295
|
+
""intent"": ""candid/selfie/accidental"",
|
|
296
|
+
""aspect_ratio"": ""9:16"",
|
|
297
|
+
""resolution"": ""4K""
|
|
298
|
+
},
|
|
299
|
+
""camera_system"": {
|
|
300
|
+
""body"": ""iPhone 15 Pro"",
|
|
301
|
+
""lens"": ""Main Camera"",
|
|
302
|
+
""focal_length"": ""24mm"",
|
|
303
|
+
""associative_traits"": ""computational photography, deep depth of field, sharp digital readout, auto-exposure""
|
|
304
|
+
},
|
|
305
|
+
""subject"": {
|
|
306
|
+
""identity"": ""young woman with specific porcelain doll features"",
|
|
307
|
+
""physical_details"": ""flawless pale skin, large round icy blue eyes with defined lashes, small defined nose, pouty neutral mouth, platinum blonde hair in two tight braids, vibrant blue manicured nails"",
|
|
308
|
+
""clothing"": ""light blue form-fitting top with a very deep, wide plunging V-neckline revealing significant cleavage"",
|
|
309
|
+
""action"": ""high-angle selfie POV, shielding eyes with one hand against bright coastal light, looking up at camera"",
|
|
310
|
+
""expression"": ""neutral, wide-eyed, deadpan, vacant doll-like stare""
|
|
311
|
+
},
|
|
312
|
+
""lighting"": {
|
|
313
|
+
""source"": ""bright natural coastal daylight + sand bounce"",
|
|
314
|
+
""direction"": ""overhead and omnidirectional fill"",
|
|
315
|
+
""quality"": ""soft, diffused but very bright"",
|
|
316
|
+
""color_temp"": ""neutral daylight (5500K)"",
|
|
317
|
+
""fill"": ""maximum fill from bright white sand reflection"",
|
|
318
|
+
""distribution"": ""even illumination, few shadows, flattering on skin texture"",
|
|
319
|
+
""intent"": ""bright beach day""
|
|
320
|
+
},
|
|
321
|
+
""environment"": {
|
|
322
|
+
""setting"": ""sandy beach during the day"",
|
|
323
|
+
""hero_materials"": [
|
|
324
|
+
{
|
|
325
|
+
""material"": ""sand"",
|
|
326
|
+
""micro_detail"": ""fine white grains, highly reflective""
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
""material"": ""fabric"",
|
|
330
|
+
""micro_detail"": ""light blue swimwear/stretch cotton blend""
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
""material"": ""skin"",
|
|
334
|
+
""micro_detail"": ""smooth, poreless, porcelain texture, slightly dewy from heat""
|
|
335
|
+
}
|
|
336
|
+
],
|
|
337
|
+
""objects"": ""ocean horizon line blurred in far background, expansive sand"",
|
|
338
|
+
""state"": ""bright, sunny, coastal""
|
|
339
|
+
},
|
|
340
|
+
""technical_finish"": {
|
|
341
|
+
""film_stock"": ""Digital Source"",
|
|
342
|
+
""exposure"": ""brightly exposed (high key)"",
|
|
343
|
+
""grain"": ""none/digital noise"",
|
|
344
|
+
""tone_curve"": ""linear neutral"",
|
|
345
|
+
""color_science"": ""pastel palette (light blues, white sand, pale skin), natural daylight colors""
|
|
346
|
+
},
|
|
347
|
+
""constraints"": {
|
|
348
|
+
""avoid"": [
|
|
349
|
+
""snow"",
|
|
350
|
+
""winter clothes"",
|
|
351
|
+
""red nails"",
|
|
352
|
+
""black top"",
|
|
353
|
+
""modest neckline"",
|
|
354
|
+
""heavy shadows""
|
|
355
|
+
],
|
|
356
|
+
""must_include"": [
|
|
357
|
+
""blue nails"",
|
|
358
|
+
""light blue top"",
|
|
359
|
+
""deep cleavage"",
|
|
360
|
+
""beach background"",
|
|
361
|
+
""porcelain doll features""
|
|
362
|
+
]
|
|
363
|
+
}
|
|
364
|
+
}","Emily","https://x.com/IamEmily2050/status/2013189624848633963"
|
|
365
|
+
"15","Profile / Avatar - Selfie to Professional LinkedIn Headshot Conversion","","A prompt instructing the AI to convert an uploaded selfie into a professional LinkedIn headshot. It specifies a softly blurred office background with large windows, clean and realistic style, subtle retouching, and soft daylight, while strictly maintaining the facial features and hairstyle from the original image.","Turn this selfie into a professional LinkedIn headshot of a man. Background: softly blurred office with big windows. Style: clean, realistic, subtle retouching, no heavy filters. Lighting: soft daylight from the front. Constraints: keep facial features and hairstyle accurate, no text.","Snow","https://x.com/iamrealsnow/status/2013187622299156726"
|
|
366
|
+
"16","Profile / Avatar - Image-to-Image Winter Alpine Portrait","","A structured prompt for Gemini Nano Banana Pro using the Stable Diffusion XL model for image-to-image generation. It requires an uploaded reference image to preserve the subject's identity and generates an ultra-realistic outdoor winter portrait on an alpine balcony, specifying platinum blonde pigtails, a playful expression, and crisp natural winter daylight.","{
|
|
367
|
+
""type"": ""image_to_image"",
|
|
368
|
+
""model"": ""stable-diffusion-xl"",
|
|
369
|
+
""prompt"": ""Use the uploaded image as the main reference and keep the same person, face structure, skin tone, and identity. Create an ultra-realistic outdoor winter portrait on a wooden balcony in snowy alpine mountains. The person is leaning slightly forward toward the camera with a playful kiss-pout expression. Platinum blonde hair styled into two long braided pigtails. Wearing a fitted black long-sleeve top and black pants. Stylish black rectangular sunglasses. Natural fair skin texture with realistic pores and highlights. Background includes snow-covered mountains, pine trees, wooden cabins, and a clear blue winter sky. Fresh snow visible on the balcony railing. A white coffee cup placed casually on the wooden railing. Bright natural winter daylight, crisp sunlight, realistic shadows. Shot with a wide-angle lens, travel lifestyle photography, Instagram aesthetic, ultra-detailed, hyper-realistic, professional photo."",
|
|
370
|
+
""negative_prompt"": ""blurry, low quality, distorted face, wrong identity, extra fingers, extra limbs, bad anatomy, cartoon, anime, CGI, plastic skin, overexposed snow, watermark, logo, text"",
|
|
371
|
+
""settings"": {
|
|
372
|
+
""denoise_strength"": 0.5,
|
|
373
|
+
""cfg_scale"": 7,
|
|
374
|
+
""steps"": 30,
|
|
375
|
+
""sampler"": ""DPM++ 2M Karras"",
|
|
376
|
+
""aspect_ratio"": ""3:4"",
|
|
377
|
+
""seed"": -1
|
|
378
|
+
}
|
|
379
|
+
}","Sudee🥀","https://x.com/NameIsSudee/status/2013182092331589997"
|
|
380
|
+
"17","Profile / Avatar - E-Girl Mirror Selfie in Golden Hour Lighting","","A detailed JSON prompt for Gemini Nano Banana Pro, focusing on generating a photorealistic mirror selfie of a woman in 'e-girl' or 'soft grunge' aesthetic. It specifies platinum blonde hair, a white satin corset with a cartoon print, and the environment of an indoor hallway bathed in warm golden hour sunlight.","{
|
|
381
|
+
""prompt_description"": {
|
|
382
|
+
""subject"": {
|
|
383
|
+
""type"": ""woman"",
|
|
384
|
+
""hair"": ""long, straight, platinum blonde"",
|
|
385
|
+
""features"": ""light skin tone, soft makeup, finger resting on lip"",
|
|
386
|
+
""tattoos"": ""small text tattoo on chest, 'XXX' tattoo on wrist""
|
|
387
|
+
},
|
|
388
|
+
""outfit"": {
|
|
389
|
+
""top"": ""white satin corset with pink cartoon/anime print ({argument name=""cartoon character"" default=""My Melody""} style), lace trim, ribbon tie front"",
|
|
390
|
+
""bottom"": ""black pleated mini skirt, raw hem"",
|
|
391
|
+
""accessories"": ""black lace-top thigh-high stockings, fishnet tights"",
|
|
392
|
+
""phone_case"": ""graphic black and white anime style illustration""
|
|
393
|
+
},
|
|
394
|
+
""pose"": {
|
|
395
|
+
""type"": ""mirror selfie"",
|
|
396
|
+
""stance"": ""standing, one hip popped"",
|
|
397
|
+
""hand_position"": ""holding phone with right hand, left hand touching lip""
|
|
398
|
+
},
|
|
399
|
+
""environment"": {
|
|
400
|
+
""location"": ""indoor hallway or bedroom"",
|
|
401
|
+
""background"": ""white walls, grey tiled floor, framed posters on wall"",
|
|
402
|
+
""lighting"": ""warm golden hour sunlight, soft shadows"",
|
|
403
|
+
""decor"": ""minimalist, potted plant in background""
|
|
404
|
+
},
|
|
405
|
+
""style"": {
|
|
406
|
+
""aesthetic"": ""e-girl, soft grunge, coquette, trendy"",
|
|
407
|
+
""camera_angle"": ""eye level, reflection"",
|
|
408
|
+
""quality"": ""high definition, photorealistic, vivid colors""
|
|
409
|
+
}
|
|
410
|
+
}
|
|
411
|
+
}","Mira","https://x.com/xmiiru_/status/2013095567547666866"
|
|
412
|
+
"18","Profile / Avatar - Self-Portrait Generation Prompt (Placeholder)","","A placeholder prompt used in a workflow for generating self-portraits using Gemini Nano Banana Pro. The workflow involves uploading clear photos of the user's face and then using this prompt to generate the image.","Generate a photorealistic portrait of the uploaded subject in the style of a {argument name=""style"" default=""cinematic fashion editorial""} with {argument name=""lighting"" default=""dramatic studio lighting""} and a {argument name=""background"" default=""minimalist dark background""}.","七表哥","https://x.com/seven_cuz/status/2013092400701608349"
|
|
413
|
+
"19","Profile / Avatar - E-Girl Mirror Selfie in Golden Hour Lighting (Duplicate)","","A detailed JSON prompt for Gemini Nano Banana Pro, focusing on generating a photorealistic mirror selfie of a woman in 'e-girl' or 'soft grunge' aesthetic. It specifies platinum blonde hair, a white satin corset with a cartoon print, and the environment of an indoor hallway bathed in warm golden hour sunlight. (Duplicate of 2013095567547666866)","{
|
|
414
|
+
""prompt_description"": {
|
|
415
|
+
""subject"": {
|
|
416
|
+
""type"": ""woman"",
|
|
417
|
+
""hair"": ""long, straight, platinum blonde"",
|
|
418
|
+
""features"": ""light skin tone, soft makeup, finger resting on lip"",
|
|
419
|
+
""tattoos"": ""small text tattoo on chest, 'XXX' tattoo on wrist""
|
|
420
|
+
},
|
|
421
|
+
""outfit"": {
|
|
422
|
+
""top"": ""white satin corset with pink cartoon/anime print ({argument name=""cartoon character"" default=""My Melody""} style), lace trim, ribbon tie front"",
|
|
423
|
+
""bottom"": ""black pleated mini skirt, raw hem"",
|
|
424
|
+
""accessories"": ""black lace-top thigh-high stockings, fishnet tights"",
|
|
425
|
+
""phone_case"": ""graphic black and white anime style illustration""
|
|
426
|
+
},
|
|
427
|
+
""pose"": {
|
|
428
|
+
""type"": ""mirror selfie"",
|
|
429
|
+
""stance"": ""standing, one hip popped"",
|
|
430
|
+
""hand_position"": ""holding phone with right hand, left hand touching lip""
|
|
431
|
+
},
|
|
432
|
+
""environment"": {
|
|
433
|
+
""location"": ""indoor hallway or bedroom"",
|
|
434
|
+
""background"": ""white walls, grey tiled floor, framed posters on wall"",
|
|
435
|
+
""lighting"": ""warm golden hour sunlight, soft shadows"",
|
|
436
|
+
""decor"": ""minimalist, potted plant in background""
|
|
437
|
+
},
|
|
438
|
+
""style"": {
|
|
439
|
+
""aesthetic"": ""e-girl, soft grunge, coquette, trendy"",
|
|
440
|
+
""camera_angle"": ""eye level, reflection"",
|
|
441
|
+
""quality"": ""high definition, photorealistic, vivid colors""
|
|
442
|
+
}
|
|
443
|
+
}
|
|
444
|
+
}","Sudee🥀","https://x.com/NameIsSudee/status/2013083792937009531"
|
|
445
|
+
"20","Profile / Avatar - Low-Light Phone Selfie with Screen Glow","","A detailed text prompt for Nano Banana Pro to generate a vertical, realistic, low-light phone selfie in a dim bedroom, emphasizing the cool bluish-purple screen glow on the face and a sleepy, lo-fi aesthetic, requiring the use of a reference face.","Vertical, realistic low-light phone selfie in a dim bedroom at night. Same face as reference (no changes). Cool bluish-purple screen glow lighting on a pale face; background mostly dark with beige blackout curtains on the left. Sleepy, cozy, late-night lo-fi vibe.
|
|
446
|
+
Close-up, slightly low angle. Subject lying on stomach, propped on a grey pillow with subtle pattern. Messy black bedhead hair with wispy bangs. Soft, dreamy/blank stare, mouth slightly open. Hand near face, index finger touching lowerlip.
|
|
447
|
+
Wearing a {argument name=""clothing item"" default=""black sleeveless camisole""}; thin lace strap visible, left shoulder bare. Soft focus, visible grain/noise, high contrast between lit face and dark background.
|
|
448
|
+
Negative Prompt:
|
|
449
|
+
bright daylight, sunshine, studio/flash lighting, warm/orange tones, outdoor, sharp focus, professional camera, 4k clean, smooth skin, heavy makeup, cartoon, anime, 3D render, deformed hands, extra/missing fingers, out-of-focus face.","Kevin Hudson","https://x.com/fnjialun/status/2012914967117541703"
|
|
450
|
+
"21","Profile / Avatar - Thought-Leader Aesthetic Headshot Prompt (Image-to-Image)","","A prompt designed for image-to-image generation, transforming an attached image into a high-end, professional 'thought leader' headshot. It strictly requires maintaining the facial features of the reference image while applying a specific aesthetic, lighting, and attire.","Using the attached image as the exact facial reference, create a high end thought leader aesthetic professional headshot. Maintain realistic facial structure, skin texture, and expression. Dress in minimalist, premium business attire. Neutral solid background with soft gradient. Soft cinematic lighting, subtle rim light","Shanvi","https://x.com/Skurmii/status/2012914789568450849"
|
|
451
|
+
"22","Profile / Avatar - Terminator Girl","","This is Terminator Girl Using Uploaded image as refference","use [uploaded image] as Woman Refference, A wounded female Terminator robot from a science fiction film, an Asian woman with long hair, a beautiful half-face, a cold demeanor, tanned skin, her left cheek injured and the skin peeling off to reveal the mechanical components underneath, a mechanical eyeball and a steel skeleton for her face. The film is futuristic, absurd, and imaginative, featuring a thick, tattered red leather jacket, battle marks, a post-apocalyptic atmosphere, dim lighting, and a faulty, leaky electrical environment. A masterpiece of science fiction, the film boasts a stunningly realistic post-apocalyptic aesthetic, rendered in ultra-high definition.
|
|
452
|
+
|
|
453
|
+
<img width=""1568"" height=""2720"" alt=""Image"" src=""https://github.com/user-attachments/assets/f53e933e-c521-48ac-831f-2db4ce852a1d"" />","TUKANG NIRU","null"
|
|
454
|
+
"23","Profile / Avatar - High-End Influencer Lifestyle Photo with Cheetos Theme","","A comprehensive JSON prompt for Nano Banana Pro to generate an ultra-photorealistic, high-end lifestyle image of a curvy female model posing playfully on a kitchen counter with Cheetos-themed accessories, emphasizing sharp focus and natural daylight.","{
|
|
455
|
+
""meta"": {
|
|
456
|
+
""aspect_ratio"": ""9:16"",
|
|
457
|
+
""quality"": ""ultra_photorealistic"",
|
|
458
|
+
""resolution"": ""8k"",
|
|
459
|
+
""camera"": ""Sony A7R IV"",
|
|
460
|
+
""lens"": ""50mm f/1.4 GM"",
|
|
461
|
+
""style"": ""high-end influencer lifestyle photography, sharp focus, natural daylight, raw file aesthetic""
|
|
462
|
+
},
|
|
463
|
+
|
|
464
|
+
""scene"": {
|
|
465
|
+
""location"": ""suburban home kitchen"",
|
|
466
|
+
""environment"": [
|
|
467
|
+
""granite countertop with beige and brown speckles"",
|
|
468
|
+
""dark wood cabinetry in background"",
|
|
469
|
+
""blurred dining area with dark chairs"",
|
|
470
|
+
""large window with blinds letting in natural light"",
|
|
471
|
+
""greenery visible through window blur""
|
|
472
|
+
],
|
|
473
|
+
""time"": ""mid-day"",
|
|
474
|
+
""atmosphere"": ""playful, cheeky, vibrant, casual glam""
|
|
475
|
+
},
|
|
476
|
+
|
|
477
|
+
""lighting"": {
|
|
478
|
+
""type"": ""mixed natural and ambient indoor"",
|
|
479
|
+
""key_light"": ""soft diffused daylight coming from window (back-right)"",
|
|
480
|
+
""fill_light"": ""room ambience reflecting off light walls"",
|
|
481
|
+
""effect"": ""soft shadows on skin, bright highlights on hair, natural falloff on background"",
|
|
482
|
+
""reflections"": ""glossy reflection on the Cheetos bags""
|
|
483
|
+
},
|
|
484
|
+
|
|
485
|
+
""camera_perspective"": {
|
|
486
|
+
""pov"": ""eye-level relative to subject on counter"",
|
|
487
|
+
""framing"": ""medium shot, knees to head"",
|
|
488
|
+
""focus"": ""shallow depth of field (bokeh background), sharp focus on eyes and face""
|
|
489
|
+
},
|
|
490
|
+
|
|
491
|
+
""subject"": {
|
|
492
|
+
""gender"": ""female"",
|
|
493
|
+
""age"": ""early 20s"",
|
|
494
|
+
""ethnicity"": ""Caucasian"",
|
|
495
|
+
""body"": {
|
|
496
|
+
""type"": ""curvy fit"",
|
|
497
|
+
""skin"": ""fair complexion, realistic skin texture with visible pores and natural flush, not airbrushed"",
|
|
498
|
+
""waist"": ""tapered"",
|
|
499
|
+
""glutes"": ""prominent and curvy (accentuated by pose)"",
|
|
500
|
+
""legs"": ""toned""
|
|
501
|
+
},
|
|
502
|
+
|
|
503
|
+
""hair"": {
|
|
504
|
+
""color"": ""vibrant copper red"",
|
|
505
|
+
""length"": ""long, reaching mid-back"",
|
|
506
|
+
""style"": ""straight with a half-up high ponytail, loose strands framing face"",
|
|
507
|
+
""texture"": ""silky but realistic, catching the light""
|
|
508
|
+
},
|
|
509
|
+
|
|
510
|
+
""face"": {
|
|
511
|
+
""expression"": ""alluring smile, confident gaze looking back over shoulder"",
|
|
512
|
+
""eyes"": ""piercing bright blue"",
|
|
513
|
+
""makeup"": ""full glam, matte foundation, heavy mascara, winged eyeliner, soft pink lip"",
|
|
514
|
+
""details"": ""sharp jawline, silver hoop earring visible""
|
|
515
|
+
},
|
|
516
|
+
|
|
517
|
+
""pose"": {
|
|
518
|
+
""position"": ""kneeling on top of kitchen island/counter"",
|
|
519
|
+
""orientation"": ""profile/side view, turning torso back towards camera"",
|
|
520
|
+
""back"": ""strongly arched (lordosis pose)"",
|
|
521
|
+
""hands"": ""resting on thighs/counter for support"",
|
|
522
|
+
""head"": ""turned slightly left to face lens directly""
|
|
523
|
+
},
|
|
524
|
+
|
|
525
|
+
""outfit"": {
|
|
526
|
+
""bikini"": {
|
|
527
|
+
""color"": ""{argument name=""bikini color"" default=""bright yellow""} with orange trim"",
|
|
528
|
+
""style"": ""triangle top and thong bottom"",
|
|
529
|
+
""fabric"": ""matte swimwear material, slight tension on straps"",
|
|
530
|
+
""details"": ""strings tied at neck and hips""
|
|
531
|
+
},
|
|
532
|
+
""accessories"": {
|
|
533
|
+
""socks"": ""ankle socks with Cheetos-style flame print (yellow/red/orange)"",
|
|
534
|
+
""jewelry"": ""large thin silver hoop earrings, del""
|
|
535
|
+
}
|
|
536
|
+
}
|
|
537
|
+
}
|
|
538
|
+
}","Bananai","https://x.com/aibananai/status/2012887772235743238"
|
|
539
|
+
"24","Profile / Avatar - Gen Z Influencer Mirror Selfie in Pastel Hallway","","A highly detailed, photorealistic image generation prompt for a mirror selfie with a Gen Z influencer aesthetic. It specifies the subject's appearance (platinum blonde space buns, specific makeup), attire (pastel green ruched tube dress, orange heels), pose (kneeling, pulling hair), and a detailed pastel-colored domestic hallway environment, including specific phone details.","{
|
|
540
|
+
""meta_data"": {
|
|
541
|
+
""prompt_version"": ""2.0"",
|
|
542
|
+
""use_case"": ""Photorealistic Image Generation"",
|
|
543
|
+
""main_subject_count"": 1
|
|
544
|
+
},
|
|
545
|
+
""subject_layer"": {
|
|
546
|
+
""anatomy"": {
|
|
547
|
+
""demographics"": {
|
|
548
|
+
""gender"": ""Female"",
|
|
549
|
+
""age_group"": ""Young adult"",
|
|
550
|
+
""ethnicity"": ""Caucasian"",
|
|
551
|
+
""skin_tone"": ""Light with warm peach undertones"",
|
|
552
|
+
""build"": ""Fit, petite""
|
|
553
|
+
},
|
|
554
|
+
""face_detail"": {
|
|
555
|
+
""eyes"": {
|
|
556
|
+
""color"": ""Blue"",
|
|
557
|
+
""makeup"": ""Sharp black winged eyeliner, defined lashes""
|
|
558
|
+
},
|
|
559
|
+
""nose"": ""Small, button shape"",
|
|
560
|
+
""mouth"": {
|
|
561
|
+
""shape"": ""Open 'O' shape (pouty/surprised)"",
|
|
562
|
+
""teeth_visibility"": ""Upper teeth visible"",
|
|
563
|
+
""tongue_visibility"": ""Slightly visible behind teeth"",
|
|
564
|
+
""lip_color"": ""Soft pink, natural""
|
|
565
|
+
},
|
|
566
|
+
""complexion_accents"": ""Heavy rosy pink blush across cheeks and nose bridge (sun-kissed look)""
|
|
567
|
+
},
|
|
568
|
+
""hair"": {
|
|
569
|
+
""color"": ""Platinum blonde"",
|
|
570
|
+
""style_core"": ""Two messy high space buns"",
|
|
571
|
+
""framing"": ""Long loose tendrils framing the face"",
|
|
572
|
+
""interaction"": ""Subject is pulling one long strand sideways with left hand""
|
|
573
|
+
}
|
|
574
|
+
},
|
|
575
|
+
""attire_layer"": {
|
|
576
|
+
""garment_main"": {
|
|
577
|
+
""item"": ""Tube dress"",
|
|
578
|
+
""length"": ""Mini"",
|
|
579
|
+
""fit"": ""Tight/Bodycon"",
|
|
580
|
+
""color"": ""{argument name=""dress color"" default=""Pastel green lime""}"",
|
|
581
|
+
""texture"": ""Ruched fabric, natural horizontal folds""
|
|
582
|
+
},
|
|
583
|
+
""accessories"": {
|
|
584
|
+
""neck"": ""Chunky turquoise/teal beaded choker""
|
|
585
|
+
},
|
|
586
|
+
""footwear"": {
|
|
587
|
+
""type"": ""High heels stiletto"",
|
|
588
|
+
""visibility"": ""One shoe visible on raised foot"",
|
|
589
|
+
""color_way"": ""Orange""
|
|
590
|
+
}
|
|
591
|
+
},
|
|
592
|
+
""pose_dynamics"": {
|
|
593
|
+
""posture"": ""Kneeling on floor, knees spread, slight lower back arch"",
|
|
594
|
+
""orientation"": ""Front-facing towards mirror"",
|
|
595
|
+
""limb_placement"": {
|
|
596
|
+
""right_arm"": ""Raised holding phone near face"",
|
|
597
|
+
""left_arm"": ""Extended to side holding hair strand"",
|
|
598
|
+
""legs"": ""Kneeling, one foot raised slightly behind""
|
|
599
|
+
}
|
|
600
|
+
}
|
|
601
|
+
},
|
|
602
|
+
""environment_layer"": {
|
|
603
|
+
""setting_type"": ""Domestic hallway/landing"",
|
|
604
|
+
""spatial_layout"": {
|
|
605
|
+
""floor"": ""Plush light yellow wall-to-wall carpeting"",
|
|
606
|
+
""walls"": ""Pale pink paint, white baseboards"",
|
|
607
|
+
""background_left"": ""Red interior paneled door with silver knob, white light switch"",
|
|
608
|
+
""background_right"": ""Staircase with pink banisters and purple carpeted steps""
|
|
609
|
+
}
|
|
610
|
+
},
|
|
611
|
+
""composition_and_tech"": {
|
|
612
|
+
""framing"": {
|
|
613
|
+
""type"": ""Mirror Selfie"",
|
|
614
|
+
""angle"": ""Eye-level"",
|
|
615
|
+
""prop_device"": ""Alabaster apple iPhone smartphone, pearlescent/rainbow case, rear cameras visible""
|
|
616
|
+
},
|
|
617
|
+
""lighting"": {
|
|
618
|
+
""source"": ""Diffused indoor natural light"",
|
|
619
|
+
""direction"": ""Front/Right"",
|
|
620
|
+
""shadows"": ""Soft, natural shadows on rear wall""
|
|
621
|
+
},
|
|
622
|
+
""aesthetic_style"": {
|
|
623
|
+
""visual_core"": ""Photorealism"",
|
|
624
|
+
""vibe"": ""Gen Z Infl""
|
|
625
|
+
}
|
|
626
|
+
}","KeorUnreal","https://x.com/KeorUnreal/status/2012881277297311760"
|
|
627
|
+
"25","Profile / Avatar - Photorealistic Mirror Selfie with Space Buns and Pink Dress (Duplicate)","","A detailed JSON prompt for Nano Banana Pro to generate a photorealistic mirror selfie of a young woman kneeling on a carpeted floor, wearing a pastel pink tube dress and high-top sneakers, emphasizing specific facial expressions, hair styling (space buns), and detailed environment layout.","{
|
|
628
|
+
""meta_data"": {
|
|
629
|
+
""prompt_version"": ""2.0"",
|
|
630
|
+
""use_case"": ""Photorealistic Image Generation"",
|
|
631
|
+
""main_subject_count"": 1
|
|
632
|
+
},
|
|
633
|
+
""subject_layer"": {
|
|
634
|
+
""anatomy"": {
|
|
635
|
+
""demographics"": {
|
|
636
|
+
""gender"": ""Female"",
|
|
637
|
+
""age_group"": ""Young adult"",
|
|
638
|
+
""ethnicity"": ""Caucasian"",
|
|
639
|
+
""skin_tone"": ""Light with warm peach undertones"",
|
|
640
|
+
""build"": ""Slim, petite""
|
|
641
|
+
},
|
|
642
|
+
""face_detail"": {
|
|
643
|
+
""eyes"": {
|
|
644
|
+
""color"": ""Blue/Grey"",
|
|
645
|
+
""makeup"": ""Sharp black winged eyeliner, defined lashes""
|
|
646
|
+
},
|
|
647
|
+
""nose"": ""Small, button shape"",
|
|
648
|
+
""mouth"": {
|
|
649
|
+
""shape"": ""Open 'O' shape (pouty/surprised)"",
|
|
650
|
+
""teeth_visibility"": ""Upper teeth visible"",
|
|
651
|
+
""tongue_visibility"": ""Slightly visible behind teeth"",
|
|
652
|
+
""lip_color"": ""Soft pink, natural""
|
|
653
|
+
},
|
|
654
|
+
""complexion_accents"": ""Heavy rosy pink blush across cheeks and nose bridge (sun-kissed look)""
|
|
655
|
+
},
|
|
656
|
+
""hair"": {
|
|
657
|
+
""color"": ""Dark blonde to light brown"",
|
|
658
|
+
""style_core"": ""Two messy high space buns"",
|
|
659
|
+
""framing"": ""Long loose tendrils framing the face"",
|
|
660
|
+
""interaction"": ""Subject is pulling one long strand sideways with left hand""
|
|
661
|
+
}
|
|
662
|
+
},
|
|
663
|
+
""attire_layer"": {
|
|
664
|
+
""garment_main"": {
|
|
665
|
+
""item"": ""Tube dress"",
|
|
666
|
+
""length"": ""Mini"",
|
|
667
|
+
""fit"": ""Tight/Bodycon"",
|
|
668
|
+
""color"": ""{argument name=""dress color"" default=""Pastel pink""}"",
|
|
669
|
+
""texture"": ""Ruched fabric, natural horizontal folds""
|
|
670
|
+
},
|
|
671
|
+
""accessories"": {
|
|
672
|
+
""neck"": ""Chunky turquoise/teal beaded choker""
|
|
673
|
+
},
|
|
674
|
+
""footwear"": {
|
|
675
|
+
""type"": ""High-top sneaker"",
|
|
676
|
+
""visibility"": ""One shoe visible on raised foot"",
|
|
677
|
+
""color_way"": ""White base with navy blue and grey panels""
|
|
678
|
+
}
|
|
679
|
+
},
|
|
680
|
+
""pose_dynamics"": {
|
|
681
|
+
""posture"": ""Kneeling on floor, knees spread, slight lower back arch"",
|
|
682
|
+
""orientation"": ""Front-facing towards mirror"",
|
|
683
|
+
""limb_placement"": {
|
|
684
|
+
""right_arm"": ""Raised holding phone near face"",
|
|
685
|
+
""left_arm"": ""Extended to side holding hair strand"",
|
|
686
|
+
""legs"": ""Kneeling, one foot raised slightly behind""
|
|
687
|
+
}
|
|
688
|
+
}
|
|
689
|
+
},
|
|
690
|
+
""environment_layer"": {
|
|
691
|
+
""setting_type"": ""Domestic hallway/landing"",
|
|
692
|
+
""spatial_layout"": {
|
|
693
|
+
""floor"": ""Plush light grey wall-to-wall carpeting"",
|
|
694
|
+
""walls"": ""Pale blue-grey paint, white baseboards"",
|
|
695
|
+
""background_left"": ""White interior paneled door with silver knob, white light switch"",
|
|
696
|
+
""background_right"": ""Staircase with white banisters and grey carpeted steps""
|
|
697
|
+
}
|
|
698
|
+
},
|
|
699
|
+
""composition_and_tech"": {
|
|
700
|
+
""framing"": {
|
|
701
|
+
""type"": ""Mirror Selfie"",
|
|
702
|
+
""angle"": ""Eye-level"",
|
|
703
|
+
""prop_device"": ""White smartphone, pearlescent/rainbow case, rear cameras visible""
|
|
704
|
+
},
|
|
705
|
+
""lighting"": {
|
|
706
|
+
""source"": ""Diffused indoor natural light"",
|
|
707
|
+
""direction"": ""Front/Right"",
|
|
708
|
+
""shadows"": ""Soft, natural shadows on rear wall""
|
|
709
|
+
},
|
|
710
|
+
""aesthetic_style"": {
|
|
711
|
+
""visual_core"": ""Photorealism"",
|
|
712
|
+
""vibe"": """"
|
|
713
|
+
}
|
|
714
|
+
}
|
|
715
|
+
}","Emer","https://x.com/emer_web3/status/2012867953574936773"
|
|
716
|
+
"26","Profile / Avatar - Photorealistic Mirror Selfie with Space Buns and Pink Dress","","A detailed JSON prompt for Nano Banana Pro to generate a photorealistic mirror selfie of a young woman kneeling on a carpeted floor, wearing a pastel pink tube dress and high-top sneakers, emphasizing specific facial expressions, hair styling (space buns), and detailed environment layout.","{
|
|
717
|
+
""meta_data"": {
|
|
718
|
+
""prompt_version"": ""2.0"",
|
|
719
|
+
""use_case"": ""Photorealistic Image Generation"",
|
|
720
|
+
""main_subject_count"": 1
|
|
721
|
+
},
|
|
722
|
+
""subject_layer"": {
|
|
723
|
+
""anatomy"": {
|
|
724
|
+
""demographics"": {
|
|
725
|
+
""gender"": ""Female"",
|
|
726
|
+
""age_group"": ""Young adult"",
|
|
727
|
+
""ethnicity"": ""Caucasian"",
|
|
728
|
+
""skin_tone"": ""Light with warm peach undertones"",
|
|
729
|
+
""build"": ""Slim, petite""
|
|
730
|
+
},
|
|
731
|
+
""face_detail"": {
|
|
732
|
+
""eyes"": {
|
|
733
|
+
""color"": ""Blue/Grey"",
|
|
734
|
+
""makeup"": ""Sharp black winged eyeliner, defined lashes""
|
|
735
|
+
},
|
|
736
|
+
""nose"": ""Small, button shape"",
|
|
737
|
+
""mouth"": {
|
|
738
|
+
""shape"": ""Open 'O' shape (pouty/surprised)"",
|
|
739
|
+
""teeth_visibility"": ""Upper teeth visible"",
|
|
740
|
+
""tongue_visibility"": ""Slightly visible behind teeth"",
|
|
741
|
+
""lip_color"": ""Soft pink, natural""
|
|
742
|
+
},
|
|
743
|
+
""complexion_accents"": ""Heavy rosy pink blush across cheeks and nose bridge (sun-kissed look)""
|
|
744
|
+
},
|
|
745
|
+
""hair"": {
|
|
746
|
+
""color"": ""Dark blonde to light brown"",
|
|
747
|
+
""style_core"": ""Two messy high space buns"",
|
|
748
|
+
""framing"": ""Long loose tendrils framing the face"",
|
|
749
|
+
""interaction"": ""Subject is pulling one long strand sideways with left hand""
|
|
750
|
+
}
|
|
751
|
+
},
|
|
752
|
+
""attire_layer"": {
|
|
753
|
+
""garment_main"": {
|
|
754
|
+
""item"": ""Tube dress"",
|
|
755
|
+
""length"": ""Mini"",
|
|
756
|
+
""fit"": ""Tight/Bodycon"",
|
|
757
|
+
""color"": ""{argument name=""dress color"" default=""Pastel pink""}"",
|
|
758
|
+
""texture"": ""Ruched fabric, natural horizontal folds""
|
|
759
|
+
},
|
|
760
|
+
""accessories"": {
|
|
761
|
+
""neck"": ""Chunky turquoise/teal beaded choker""
|
|
762
|
+
},
|
|
763
|
+
""footwear"": {
|
|
764
|
+
""type"": ""High-top sneaker"",
|
|
765
|
+
""visibility"": ""One shoe visible on raised foot"",
|
|
766
|
+
""color_way"": ""White base with navy blue and grey panels""
|
|
767
|
+
}
|
|
768
|
+
},
|
|
769
|
+
""pose_dynamics"": {
|
|
770
|
+
""posture"": ""Kneeling on floor, knees spread, slight lower back arch"",
|
|
771
|
+
""orientation"": ""Front-facing towards mirror"",
|
|
772
|
+
""limb_placement"": {
|
|
773
|
+
""right_arm"": ""Raised holding phone near face"",
|
|
774
|
+
""left_arm"": ""Extended to side holding hair strand"",
|
|
775
|
+
""legs"": ""Kneeling, one foot raised slightly behind""
|
|
776
|
+
}
|
|
777
|
+
}
|
|
778
|
+
},
|
|
779
|
+
""environment_layer"": {
|
|
780
|
+
""setting_type"": ""Domestic hallway/landing"",
|
|
781
|
+
""spatial_layout"": {
|
|
782
|
+
""floor"": ""Plush light grey wall-to-wall carpeting"",
|
|
783
|
+
""walls"": ""Pale blue-grey paint, white baseboards"",
|
|
784
|
+
""background_left"": ""White interior paneled door with silver knob, white light switch"",
|
|
785
|
+
""background_right"": ""Staircase with white banisters and grey carpeted steps""
|
|
786
|
+
}
|
|
787
|
+
},
|
|
788
|
+
""composition_and_tech"": {
|
|
789
|
+
""framing"": {
|
|
790
|
+
""type"": ""Mirror Selfie"",
|
|
791
|
+
""angle"": ""Eye-level"",
|
|
792
|
+
""prop_device"": ""White smartphone, pearlescent/rainbow case, rear cameras visible""
|
|
793
|
+
},
|
|
794
|
+
""lighting"": {
|
|
795
|
+
""source"": ""Diffused indoor natural light"",
|
|
796
|
+
""direction"": ""Front/Right"",
|
|
797
|
+
""shadows"": ""Soft, natural shadows on rear wall""
|
|
798
|
+
},
|
|
799
|
+
""aesthetic_style"": {
|
|
800
|
+
""visual_core"": ""Photorealism"",
|
|
801
|
+
""vibe"": """"
|
|
802
|
+
}
|
|
803
|
+
}
|
|
804
|
+
}","Melisa♡","https://x.com/xmliisu/status/2012835782151594157"
|
|
805
|
+
"27","Profile / Avatar - Overhead Smartphone Selfie with Black Cat","","A highly technical image generation prompt focused on simulating a high-angle, plunging overhead selfie taken with a smartphone camera. The prompt meticulously defines camera failure modes (highlight clipping, chroma noise), lens distortion (mild barrel), and computational photography effects (skin smoothing, sharpening halos) to maximize physical realism and mimic a specific aesthetic, featuring a woman and a black cat.","{
|
|
806
|
+
""intent"": {
|
|
807
|
+
""image_type"": ""selfie"",
|
|
808
|
+
""era_preset"": ""modern_standard"",
|
|
809
|
+
""notes"": ""Maximizing physical realism by defining light-material interaction and sensor failure modes.""
|
|
810
|
+
},
|
|
811
|
+
""subjects"": {
|
|
812
|
+
""count"": 1,
|
|
813
|
+
""primary"": {
|
|
814
|
+
""type"": ""person"",
|
|
815
|
+
""age_range"": ""20-25"",
|
|
816
|
+
""gender_presentation"": ""female"",
|
|
817
|
+
""region_target"": ""unspecified"",
|
|
818
|
+
""expression"": ""neutral, looking up"",
|
|
819
|
+
""pose"": ""looking directly into camera from below"",
|
|
820
|
+
""gaze"": ""looking into lens""
|
|
821
|
+
},
|
|
822
|
+
""additional"": [
|
|
823
|
+
{
|
|
824
|
+
""type"": ""black cat"",
|
|
825
|
+
""position"": ""floor level, looking up"",
|
|
826
|
+
""material"": ""dense organic fur with translucent whiskers""
|
|
827
|
+
}
|
|
828
|
+
]
|
|
829
|
+
},
|
|
830
|
+
""framing_and_perspective"": {
|
|
831
|
+
""framing"": ""high_angle_plunging"",
|
|
832
|
+
""subject_fill_ratio"": 0.82,
|
|
833
|
+
""camera_angle"": ""directly_overhead_downward"",
|
|
834
|
+
""distance"": ""arm_length"",
|
|
835
|
+
""camera_class"": ""smartphone_front"",
|
|
836
|
+
""lens_equiv_mm"": 24,
|
|
837
|
+
""distortion"": {
|
|
838
|
+
""type"": ""mild_barrel"",
|
|
839
|
+
""strength_1to5"": 4
|
|
840
|
+
},
|
|
841
|
+
""perspective_effects"": {
|
|
842
|
+
""foreground_scale_emphasis_1to5"": 5,
|
|
843
|
+
""nose_emphasis_1to5"": 3,
|
|
844
|
+
""ear_recession_1to5"": 4
|
|
845
|
+
},
|
|
846
|
+
""depth_of_field"": {
|
|
847
|
+
""mode"": ""minimal"",
|
|
848
|
+
""strength_1to5"": 2,
|
|
849
|
+
""focus_target"": ""eyes""
|
|
850
|
+
}
|
|
851
|
+
},
|
|
852
|
+
""lighting_and_exposure"": {
|
|
853
|
+
""key_light"": {
|
|
854
|
+
""type"": ""overhead_panel"",
|
|
855
|
+
""direction"": ""top_down"",
|
|
856
|
+
""hardness_1to5"": 5,
|
|
857
|
+
""halo_bloom_1to5"": 2
|
|
858
|
+
},
|
|
859
|
+
""exposure_behavior"": {
|
|
860
|
+
""auto_exposure"": true,
|
|
861
|
+
""hdr_tone_mapping_1to5"": 4,
|
|
862
|
+
""overall_brightness_1to5"": 5,
|
|
863
|
+
""contrast_1to5"": 3,
|
|
864
|
+
""shadow_depth_1to5"": 2,
|
|
865
|
+
""highlight_overflow_1to5"": 5
|
|
866
|
+
},
|
|
867
|
+
""failure_modes_active"": {
|
|
868
|
+
""highlight_clipping"": true,
|
|
869
|
+
""shadow_chroma_noise"": true,
|
|
870
|
+
""denoise_smear"": false,
|
|
871
|
+
""sharpen_halos"": true,
|
|
872
|
+
""motion_blur"": false,
|
|
873
|
+
""jpeg_ringing_banding"": false,
|
|
874
|
+
""banding_in_gradients"": false,
|
|
875
|
+
""focus_falloff_edge_softness"": true
|
|
876
|
+
}
|
|
877
|
+
},
|
|
878
|
+
""computational_pipeline"": {
|
|
879
|
+
""skin_smoothing"": {
|
|
880
|
+
""method"": ""edge_aware"",
|
|
881
|
+
""strength_1to5"": 2,
|
|
882
|
+
""specular_preservation"": ""required""
|
|
883
|
+
},
|
|
884
|
+
""sharpening"": {
|
|
885
|
+
""strength_1to5"": 3,
|
|
886
|
+
""halo_risk_1to5"": 2
|
|
887
|
+
},
|
|
888
|
+
""noise_and_denoise"": {
|
|
889
|
+
""shadow_chroma_noise_1to5"": 3,
|
|
890
|
+
""denoise_smear_1to5"": 2,
|
|
891
|
+
""grain_strength_1to5"": 2
|
|
892
|
+
},
|
|
893
|
+
""compression"": {
|
|
894
|
+
""jpeg_artifacts_1to5"": 1,
|
|
895
|
+
""banding_risk_1to5"": 1
|
|
896
|
+
},
|
|
897
|
+
""white_balance"": {
|
|
898
|
+
""mode"": ""auto"",
|
|
899
|
+
""highlight_temp_bias"": ""cool"",
|
|
900
|
+
""shadow_temp_bias"": ""neutral""
|
|
901
|
+
}
|
|
902
|
+
},
|
|
903
|
+
""region_and_face_feature_sliders"": {
|
|
904
|
+
""non_stereotype_policy"": ""sliders_over_labels"",
|
|
905
|
+
""beauty_mark_under_right_eye"": false,
|
|
906
|
+
""sliders_1to5"": {
|
|
907
|
+
""face_oval_vline_1to5"": 3,
|
|
908
|
+
""cheekbone_prominence_1to5"": 3,
|
|
909
|
+
""brow_definition_1to5"": 3,
|
|
910
|
+
""eye_emphasis_1to5"": 4,
|
|
911
|
+
""eyelid_crease_definition_1to5"": 3,
|
|
912
|
+
""nose_bridge_definition_1to5"": 3,
|
|
913
|
+
""lip_fullness_1to5"": 3,","Emily","https://x.com/IamEmily2050/status/2012833771528307100"
|
|
914
|
+
"28","Profile / Avatar - 2x2 Grid Collage of Woman in Kitchen","","A highly specific prompt for generating a 2x2 grid collage of the same woman in four different poses within a consistent modern kitchen environment. It focuses on hyper-realistic details, consistent facial identity across all panels, specific attire (white crop top, green shorts), and simulates a vertical smartphone composition with soft overhead lighting.","Ultra-realistic photorealistic 2×2 grid collage image, adult woman (21+), same person repeated in all frames with locked facial identity and body proportions. Slim athletic body with curvy hips, narrow defined waist, flat toned abdomen, smooth thighs. Fair to light beige skin with warm neutral undertones, natural smooth texture with slight realistic sheen.
|
|
915
|
+
Soft heart-shaped to oval face, full cheeks with gentle blush, smooth feminine jawline, rounded chin. Medium almond-shaped light brown to hazel eyes with playful, happy expression. Medium-thickness softly arched dark-blonde eyebrows. Small-to-medium straight nose with soft rounded tip. Medium-full lips, natural soft pink color, slight gloss, wide cheerful smile showing teeth.
|
|
916
|
+
Long blonde hair with warm golden highlights, styled in a high half-ponytail, straight texture with light natural volume, loose face-framing strands.
|
|
917
|
+
Wearing a fitted white crop top with front chest cut-out, asymmetrical off-shoulder design, long sleeves featuring criss-cross lace-up cutouts along the arms, partially open back. Paired with high-waisted pastel {argument name=""shorts color"" default=""light-green""} fitted shorts, smooth stretchy fabric, snug body-hugging fit.
|
|
918
|
+
Grid composition: one single image divided into four equal panels (2×2) with thin white borders. Each panel shows a different pose of the same woman:
|
|
919
|
+
• leaning forward against the kitchen counter, playful smile
|
|
920
|
+
• standing sideways with hips angled, cheerful expression
|
|
921
|
+
• over-the-shoulder pose showing back and hips
|
|
922
|
+
• leaning back with one hand on waist, confident smile
|
|
923
|
+
Environment consistent across all panels: modern indoor kitchen, light beige polished marble countertop, white vertically paneled cabinets with matte finish, neutral wall tones, small black and stainless-steel kitchen appliances visible.
|
|
924
|
+
Vertical 9:16 final aspect ratio, full collage framed vertically, subject centered in each panel, balanced spacing, natural smartphone composition.
|
|
925
|
+
Soft indoor overhead kitchen lighting, even illumination, minimal diffused shadows, gentle highlights on hair and skin. Neutral color grading with slight warmth, medium contrast, natural saturation.
|
|
926
|
+
Shot on smartphone wide-angle camera, 24mm equivalent, eye-level to slightly high angle, sharp focus, minimal distortion.
|
|
927
|
+
Extremely high realism, accurate anatomy, consistent face across all four panels, no blur, no artifacts.","sammy","https://x.com/sumiturkude007/status/2012833500039381449"
|
|
928
|
+
"29","Social Media Post - Train-ad style book advertisement image","","A detailed Japanese prompt for generating a 16:9 business-book-style advertisement featuring a specific book image with Japanese copy points.","Please generate an advertisement image.
|
|
929
|
+
|
|
930
|
+
==== Ad specifications ===
|
|
931
|
+
- Aspect ratio: 16:9 (horizontal)
|
|
932
|
+
- Product to advertise: the book in the first attached image
|
|
933
|
+
- Main eye-catcher: place the book from the first attached image in a three-dimensional way
|
|
934
|
+
- Language: Japanese
|
|
935
|
+
- Taste: advertisement for a business book
|
|
936
|
+
|
|
937
|
+
# Text to include:
|
|
938
|
+
- Pre-head copy: 【New print run decided about one week after release】
|
|
939
|
+
|
|
940
|
+
Book “{argument name=""book_title_en"" default=""Designing from Zero with AI""}” now on sale and doing well.
|
|
941
|
+
|
|
942
|
+
Amazon Best Seller Ranking
|
|
943
|
+
Ranked No.1 in commercial design sales (as of 10/15)
|
|
944
|
+
https://t.co/QxbYpfFVj6","KAWAI","https://x.com/kawai_design/status/1992142466255114727"
|
|
945
|
+
"30","Social Media Post - Social Media Promo Composite Prompt","","A highly structured Nano Banana Pro prompt designed to create a composite image where a character (based on a reference image) is superimposed onto a screenshot of a social media profile page, actively pointing at the 'Follow' button. It specifies identity consistency, a high-angle selfie perspective, and detailed hand gestures to mimic pressing the subscribe button, aiming for an influencer promo style.","{
|
|
946
|
+
""edit_type"": ""creative_composite_layering"",
|
|
947
|
+
|
|
948
|
+
""source"": {
|
|
949
|
+
""_hint"": ""Base logic: Character (Ref 1) superimposed ON TOP OF the Background Image (Ref 2)."",
|
|
950
|
+
""mode"": ""EDIT"",
|
|
951
|
+
""reference_images"": {
|
|
952
|
+
""first"": ""foreground_character_person"",
|
|
953
|
+
""second"": ""background_scenery_or_pattern""
|
|
954
|
+
},
|
|
955
|
+
""preserve_from_first"": {
|
|
956
|
+
""same_person_or_group"": true,
|
|
957
|
+
""same_faces"": true,
|
|
958
|
+
""same_hairstyles"": true,
|
|
959
|
+
""same_outfits"": true
|
|
960
|
+
}
|
|
961
|
+
},
|
|
962
|
+
|
|
963
|
+
""identity"": {
|
|
964
|
+
""keep_identity_consistent"": true,
|
|
965
|
+
""expression"": ""bright_engaging_smile_at_camera""
|
|
966
|
+
},
|
|
967
|
+
|
|
968
|
+
""camera_effect"": {
|
|
969
|
+
""_hint"": ""High-angle selfie style, creating a sense of depth between the hand and face."",
|
|
970
|
+
""perspective"": ""high_angle_shot_looking_down"",
|
|
971
|
+
""style"": ""social_media_call_to_action"",
|
|
972
|
+
""depth_of_field"": ""focus_on_face_and_pointing_finger"",
|
|
973
|
+
""framing"": ""character_centered_with_space_at_top_right""
|
|
974
|
+
},
|
|
975
|
+
|
|
976
|
+
""pose"": {
|
|
977
|
+
""_hint"": ""Key action: Lying down but actively pointing to the 'Follow' button area (Top Right)."",
|
|
978
|
+
""pose_style"": ""lying_down_or_reclining_on_back"",
|
|
979
|
+
""face_direction"": ""looking_directly_up_into_lens"",
|
|
980
|
+
""hand_gestures"": {
|
|
981
|
+
""right_hand_action"": ""pointing_index_finger"",
|
|
982
|
+
""target_direction"": ""upper_right_corner_45_degrees"",
|
|
983
|
+
""purpose"": ""mimicking_pressing_subscribe_button"",
|
|
984
|
+
""arm_position"": ""extended_towards_camera_top_right""
|
|
985
|
+
},
|
|
986
|
+
""body_language"": ""inviting_and_energetic"",
|
|
987
|
+
""style_tags"": [
|
|
988
|
+
""kpop_idol_fan_service"",
|
|
989
|
+
""influencer_promo_style"",
|
|
990
|
+
""dynamic_perspective""
|
|
991
|
+
]
|
|
992
|
+
},
|
|
993
|
+
|
|
994
|
+
""background_integration"": {
|
|
995
|
+
""_hint"": ""The second reference image is the background/floor."",
|
|
996
|
+
""method"": ""full_background_replacement"",
|
|
997
|
+
""target_area"": ""entire_canvas_behind_character"",
|
|
998
|
+
""content_source"": ""reference_image_second"",
|
|
999
|
+
""perspective_match"": ""flat_lay_style"",
|
|
1000
|
+
""rules"": {
|
|
1001
|
+
""character_must_be_top_layer"": true,
|
|
1002
|
+
""leave_space_in_upper_right_for_ui"": true
|
|
1003
|
+
}
|
|
1004
|
+
},
|
|
1005
|
+
|
|
1006
|
+
""composition"": {
|
|
1007
|
+
""_hi","BeautyVerse","https://x.com/BeautyVerse_Lab/status/2013490554466939282"
|
|
1008
|
+
"31","Social Media Post - Ultra-Photorealistic Dark Influencer Realism Prompt","","A highly detailed JSON-formatted prompt for generating an ultra-photorealistic image of a female subject taking a mirror selfie in a luxury penthouse dressing room, emphasizing dark influencer realism, low light, and natural skin texture.","{
|
|
1009
|
+
""meta"": {
|
|
1010
|
+
""aspect_ratio"": ""9:16"",
|
|
1011
|
+
""quality"": ""ultra_photorealistic"",
|
|
1012
|
+
""resolution"": ""8k"",
|
|
1013
|
+
""camera"": ""iPhone 15 Pro"",
|
|
1014
|
+
""lens"": ""26mm"",
|
|
1015
|
+
""style"": ""dark influencer realism, low light iphone look, natural skin texture, subtle grain, imperfect handheld framing""
|
|
1016
|
+
},
|
|
1017
|
+
|
|
1018
|
+
""scene"": {
|
|
1019
|
+
""location"": ""penthouse luxury dressing room"",
|
|
1020
|
+
""environment"": [
|
|
1021
|
+
""floor-to-ceiling mirror panels"",
|
|
1022
|
+
""black glossy wardrobe doors"",
|
|
1023
|
+
""warm beige velvet chair"",
|
|
1024
|
+
""open jewelry tray with scattered items"",
|
|
1025
|
+
""dim city skyline visible through glass""
|
|
1026
|
+
],
|
|
1027
|
+
""time"": ""after midnight"",
|
|
1028
|
+
""atmosphere"": ""private, expensive, post-party heat, dangerously intimate""
|
|
1029
|
+
},
|
|
1030
|
+
|
|
1031
|
+
""lighting"": {
|
|
1032
|
+
""type"": ""low ambient + warm accent"",
|
|
1033
|
+
""sources"": [
|
|
1034
|
+
""warm dim lamp behind subject"",
|
|
1035
|
+
""tiny LED strips inside wardrobe shelves"",
|
|
1036
|
+
""faint city glow from window""
|
|
1037
|
+
],
|
|
1038
|
+
""direction"": ""back + side rim light shaping hips, waist and chest"",
|
|
1039
|
+
""effect"": ""deep shadows, warm highlights on curves, cinematic darkness, subtle iphone noise""
|
|
1040
|
+
},
|
|
1041
|
+
|
|
1042
|
+
""subject"": {
|
|
1043
|
+
""gender"": ""{argument name=""gender"" default=""female""}"",
|
|
1044
|
+
""age_vibe"": ""young adult"",
|
|
1045
|
+
""ethnicity"": ""eastern european blonde"",
|
|
1046
|
+
|
|
1047
|
+
""body"": {
|
|
1048
|
+
""type"": ""slim hourglass"",
|
|
1049
|
+
""chest"": ""very full and heavy presence"",
|
|
1050
|
+
""waist"": ""tiny"",
|
|
1051
|
+
""hips"": ""round and lifted"",
|
|
1052
|
+
""legs"": ""long, smooth, elegant""
|
|
1053
|
+
},
|
|
1054
|
+
|
|
1055
|
+
""skin"": {
|
|
1056
|
+
""tone"": ""porcelain with warm low-light glow"",
|
|
1057
|
+
""texture"": ""real pores, natural sheen, not airbrushed""
|
|
1058
|
+
},
|
|
1059
|
+
|
|
1060
|
+
""hair"": {
|
|
1061
|
+
""color"": ""platinum blonde"",
|
|
1062
|
+
""style"": ""long loose waves"",
|
|
1063
|
+
""details"": ""glossy highlights catching warm lamp light""
|
|
1064
|
+
},
|
|
1065
|
+
|
|
1066
|
+
""face"": {
|
|
1067
|
+
""structure"": ""very pretty, doll-like"",
|
|
1068
|
+
""expression"": ""cold calm confidence"",
|
|
1069
|
+
""eyes"": ""light blue, half-lidded"",
|
|
1070
|
+
""mouth"": ""full lips slightly parted"",
|
|
1071
|
+
""makeup"": ""soft glam, heavy lashes, subtle contour, glossy lips""
|
|
1072
|
+
}
|
|
1073
|
+
},
|
|
1074
|
+
|
|
1075
|
+
""pose"": {
|
|
1076
|
+
""overall"": ""mirror selfie, standing 3/4 angle, deep arch"",
|
|
1077
|
+
|
|
1078
|
+
""lower_body"": {
|
|
1079
|
+
""legs"": ""one leg straight, other knee softly bent"",
|
|
1080
|
+
""stance"": ""stable and intentional""
|
|
1081
|
+
},
|
|
1082
|
+
|
|
1083
|
+
""hips"": {
|
|
1084
|
+
""position"": ""pushed back and slightly tilted"",
|
|
1085
|
+
""effect"": ""hips dominate frame with shadow-silhouette""
|
|
1086
|
+
},
|
|
1087
|
+
|
|
1088
|
+
""torso"": {
|
|
1089
|
+
""arch"": ""deep lower-back arch"",
|
|
1090
|
+
""chest"": ""forward naturally"",
|
|
1091
|
+
""posture"": ""quiet dominance, monetized confidence""
|
|
1092
|
+
},
|
|
1093
|
+
|
|
1094
|
+
""arms"": {
|
|
1095
|
+
""one_arm"": ""hand lightly touching mirror edge"",
|
|
1096
|
+
""other_arm"": ""holding phone low near hip""
|
|
1097
|
+
},
|
|
1098
|
+
|
|
1099
|
+
""head"": {
|
|
1100
|
+
""tilt"": ""slight tilt"",
|
|
1101
|
+
""gaze"": ""looking at phone screen through mirror, unbothered""
|
|
1102
|
+
}
|
|
1103
|
+
},
|
|
1104
|
+
|
|
1105
|
+
""outfit"": {
|
|
1106
|
+
""clothing"": {
|
|
1107
|
+
""top"": {
|
|
1108
|
+
""type"": ""ultra-thin black stretch crop top"",
|
|
1109
|
+
""fit"": ""tight, braless, slight transparency under warm light"",
|
|
1110
|
+
""details"": ""fabric tension and subtle contour visible, tasteful but obvious""
|
|
1111
|
+
},
|
|
1112
|
+
""bott","babydoll","https://x.com/bananababydoll/status/2013488410506179036"
|
|
1113
|
+
"32","Social Media Post - New Year Hairstyle Grid Prompt (Female)","","A prompt for Nano Banana Pro designed to generate a 4x3 grid collage of the same female subject with various hairstyles (long straight, high ponytail, messy bun, pixie cut, etc.). It emphasizes strict facial feature consistency, neutral clothing/makeup, soft studio lighting, and photorealistic skin texture, creating a professional portrait series for hairstyle inspiration.","This is a high-quality photo collage, showing the same person with completely identical facial features and expression, displayed in multiple frames, each with a different hairstyle. Each frame displays a unique hairstyle, such as {argument name=""Hairstyle List"" default=""long straight hair, high ponytail, messy bun, pixie cut, braided crown, soft waves, short bob with bangs, low bun, side braid, and loose curls""}. All photos use uniform neutral clothing and makeup, soft studio lighting, a warm blurred background, realistic skin texture, consistent facial symmetry, extreme detail, editorial beauty style, 4x3 grid layout, professional portrait photo.","Michelle","https://x.com/Michell81147285/status/2013485190346350696"
|
|
1114
|
+
"33","Social Media Post - Vintage Casino Glamour Portrait Prompt","","A detailed Nano Banana prompt for generating a vintage and elegant portrait of a subject seated on a high stool on a casino floor. It specifies the subject's attire (black mini slip dress with rhinestone straps, chunky platform sandals), the environment (Psychedelic patterned carpet, tufted red bar stool, slot machine marquee), and technical camera settings (direct on-camera flash, extreme low angle, 2000s digital compact camera simulation) to achieve a high-contrast, retro Las Vegas aesthetic.","{
|
|
1115
|
+
""image_generation_request"": {
|
|
1116
|
+
""meta_settings"": {
|
|
1117
|
+
""aspect_ratio"": ""9:16"",
|
|
1118
|
+
""model_version"": ""v6.0"",
|
|
1119
|
+
""stylize_value"": 250,
|
|
1120
|
+
""quality"": ""High""
|
|
1121
|
+
},
|
|
1122
|
+
""subject_definition"": {
|
|
1123
|
+
""identity_source"": {
|
|
1124
|
+
""method"": ""Image Reference"",
|
|
1125
|
+
""instruction"": ""Strictly preserve facial features and hair from the uploaded reference image.""
|
|
1126
|
+
},
|
|
1127
|
+
""body_language"": {
|
|
1128
|
+
""pose"": ""Seated on a high stool, body angled 30 degrees to the left, legs elegantly crossed at the knee to elongate the silhouette."",
|
|
1129
|
+
""hands"": ""Resting casually on the upper thighs, fingers relaxed, showcasing rings."",
|
|
1130
|
+
""gaze"": ""Looking slightly down towards the camera lens or directly into the flash.""
|
|
1131
|
+
}
|
|
1132
|
+
},
|
|
1133
|
+
""fashion_and_styling"": {
|
|
1134
|
+
""garment_main"": {
|
|
1135
|
+
""item"": ""Black mini slip dress"",
|
|
1136
|
+
""fabric"": ""Satin or high-sheen silk blend"",
|
|
1137
|
+
""fit"": ""Skin-tight, fitted bodycon silhouette"",
|
|
1138
|
+
""details"": [
|
|
1139
|
+
""Spaghetti straps made of glittering rhinestones"",
|
|
1140
|
+
""Deep scoop neckline"",
|
|
1141
|
+
""Mini hemline exposing legs""
|
|
1142
|
+
]
|
|
1143
|
+
},
|
|
1144
|
+
""footwear"": {
|
|
1145
|
+
""item"": ""Platform sandals"",
|
|
1146
|
+
""style"": ""Chunky block heel, 1990s/Y2K inspired"",
|
|
1147
|
+
""material"": ""Black patent leather or satin"",
|
|
1148
|
+
""details"": ""Silver buckle ankle strap, open toe""
|
|
1149
|
+
}
|
|
1150
|
+
},
|
|
1151
|
+
""jewelry"": {
|
|
1152
|
+
""ears"": ""Oversized sterling silver hoop earrings"",
|
|
1153
|
+
""hands"": ""Multiple delicate silver stacking rings""
|
|
1154
|
+
}
|
|
1155
|
+
},
|
|
1156
|
+
""environmental_context"": {
|
|
1157
|
+
""location"": ""Vintage Casino Floor"",
|
|
1158
|
+
""flooring"": {
|
|
1159
|
+
""type"": ""Patterned carpeting"",
|
|
1160
|
+
""texture"": ""Worn nylon"",
|
|
1161
|
+
""design"": ""Psychedelic swirls in teal, burnt orange, and royal blue"",
|
|
1162
|
+
""vibe"": ""Retro Las Vegas aesthetic""
|
|
1163
|
+
},
|
|
1164
|
+
""furniture"": {
|
|
1165
|
+
""item"": ""Casino bar stool"",
|
|
1166
|
+
""material"": ""Tufted red faux leather seat"",
|
|
1167
|
+
""base"": ""Tarnished bronze or gold metal pedestal with footrest""
|
|
1168
|
+
},
|
|
1169
|
+
""props_and_background"": {
|
|
1170
|
+
""primary_prop"": ""Slot machine"",
|
|
1171
|
+
""prop_details"": ""Illuminated marquee reading '{argument name=""Slot Machine Marquee"" default=""TRIPLE JACKPOT GEMS""}', glowing buttons, glass screen reflections"",
|
|
1172
|
+
""atmosphere"": ""Smoky, crowded, dimly lit background with bokeh lights from other machines""
|
|
1173
|
+
}
|
|
1174
|
+
},
|
|
1175
|
+
""photography_technical"": {
|
|
1176
|
+
""camera_simulation"": ""Early 2000s Digital Compact Camera (e.g., Sony Cybershot or Canon PowerShot)"",
|
|
1177
|
+
""lighting_style"": {
|
|
1178
|
+
""type"": ""Direct On-Camera Flash"",
|
|
1179
|
+
""characteristics"": [
|
|
1180
|
+
""Harsh shadows directly behind the subject"",
|
|
1181
|
+
""High contrast"",
|
|
1182
|
+
""Overexposed specular highlights on skin and fabric"",
|
|
1183
|
+
""Vignetted corners""
|
|
1184
|
+
]
|
|
1185
|
+
},
|
|
1186
|
+
""composition"": {
|
|
1187
|
+
""angle"": ""Extreme low angle (Worm's-eye view)"",
|
|
1188
|
+
""focus"": ""Sharp focus on subject, slight blur on background"",
|
|
1189
|
+
""framing"": ""Full body shot emphasizin","Adam也叫吉米","https://x.com/Adam38363368936/status/2013406753770119423"
|
|
1190
|
+
"34","Social Media Post - Cozy Retro Loungewear with Shaggy Faux Fur","","A prompt for Nano Banana Pro focused on generating an image of 'ultimate loungewear' with a cozy, fashion magazine aesthetic. The key technique is layering the terms 'Shaggy faux fur' and 'Long pile' to achieve maximum fluffiness, combined with retro furniture for a stylish, comfortable atmosphere.","Generated the 'ultimate loungewear' image. The key is layering ""{argument name=""material1"" default=""Shaggy faux fur""}"" and ""{argument name=""material2"" default=""Long pile""}"" to achieve this fluffy texture. Combined with retro furniture, it creates a Cozy atmosphere reminiscent of a fashion magazine.","はると@AIクリエイター","https://x.com/ai_buty/status/2013392950676594917"
|
|
1191
|
+
"35","Social Media Post - Stewardess Private Jet Mobile Photography Editorial","","A highly detailed JSON prompt for generating a hyper-realistic mobile photography image (iPhone 15 Pro Max aesthetic) of a voluptuous stewardess on an airport tarmac next to a private jet. It specifies her attire (navy pencil skirt, hint of lace bikini top), dynamic pose, hard afternoon sunlight, and a candid social media aesthetic.","[
|
|
1192
|
+
{
|
|
1193
|
+
""metadata"": {
|
|
1194
|
+
""title"": ""Stewardess Private Jet Editorial"",
|
|
1195
|
+
""style"": ""Hyper-Realistic Mobile Photography"",
|
|
1196
|
+
""target_device"": ""iPhone 15 Pro Max""
|
|
1197
|
+
},
|
|
1198
|
+
""subject"": {
|
|
1199
|
+
""age"": ""Mid-30s"",
|
|
1200
|
+
""ethnicity"": ""Caucasian/Mediterranean mix"",
|
|
1201
|
+
""hair"": {
|
|
1202
|
+
""style"": ""Long ombre waves"",
|
|
1203
|
+
""color"": ""Brunette roots transitioning to sun-kissed blonde tips"",
|
|
1204
|
+
""texture"": ""Voluminous and soft""
|
|
1205
|
+
},
|
|
1206
|
+
""physique"": {
|
|
1207
|
+
""body_type"": ""Fit voluptuous hourglass"",
|
|
1208
|
+
""bust"": ""Full natural volume, prominent cleavage"",
|
|
1209
|
+
""features"": ""Deeply curved hips, toned waist, radiant skin texture""
|
|
1210
|
+
},
|
|
1211
|
+
""makeup"": ""Light natural aesthetic, soft mascara, nude lip gloss, subtle glowy highlighter"",
|
|
1212
|
+
""expression"": ""Confident, alluring, slight playful smile""
|
|
1213
|
+
},
|
|
1214
|
+
""pose"": {
|
|
1215
|
+
""description"": ""Dynamic 'girl pose'"",
|
|
1216
|
+
""hand_placement"": {
|
|
1217
|
+
""right_hand"": ""Firmly on the waist to accentuate hip curve"",
|
|
1218
|
+
""left_hand"": ""Raised gracefully above her head, fingers slightly spread""
|
|
1219
|
+
},
|
|
1220
|
+
""posture"": ""Weight shifted to one leg, slight arch in the back""
|
|
1221
|
+
},
|
|
1222
|
+
""attire"": {
|
|
1223
|
+
""outerwear"": ""Professional navy blue stewardess uniform, tailored blazer draped over shoulders or omitted"",
|
|
1224
|
+
""top"": ""Crisp white button-down shirt, unbuttoned at the top to create a slight decolletage"",
|
|
1225
|
+
""undergarment"": ""Visible hint of a black patterned lace bikini top peeking through the shirt opening"",
|
|
1226
|
+
""bottom"": ""High-waisted navy pencil skirt, tight fit"",
|
|
1227
|
+
""accessories"": ""Small gold hoop earrings, delicate gold necklace""
|
|
1228
|
+
},
|
|
1229
|
+
""environment"": {
|
|
1230
|
+
""location"": ""Airport tarmac, beside a luxury private jet"",
|
|
1231
|
+
""jet_details"": ""Sleek metallic white fuselage, chrome accents, airstair door deployed"",
|
|
1232
|
+
""background"": ""Clear blue sky, distant runway heat haze, sun-drenched concrete""
|
|
1233
|
+
},
|
|
1234
|
+
""photography"": {
|
|
1235
|
+
""camera_model"": ""iPhone 15 Pro, Main Camera"",
|
|
1236
|
+
""focal_length"": ""24mm wide angle"",
|
|
1237
|
+
""lighting"": ""Hard afternoon sunlight, natural shadows, high contrast, slight lens flare"",
|
|
1238
|
+
""technical_traits"": ""Deep depth of field, sharp skin micro-texture, mobile HDR processing, 4k resolution, candid social media aesthetic"",
|
|
1239
|
+
""composition"": ""Full body shot, slightly low angle to emphasize height and curves""
|
|
1240
|
+
}
|
|
1241
|
+
}
|
|
1242
|
+
]","Maya","https://x.com/mayadelmare/status/2013382894891212811"
|
|
1243
|
+
"36","Social Media Post - Ana de Armas Inspired Office Editorial Portrait","","A highly detailed JSON prompt for generating a hyper-realistic, magazine-cover-quality close-up portrait of a woman inspired by Ana de Armas. It specifies a vivid red two-piece outfit, athletic build, glossy skin with a subtle sweat sheen, and a softly blurred office background with stacks of papers, using studio cinematic lighting.","{
|
|
1244
|
+
""type"": ""image_generation_prompt"",
|
|
1245
|
+
""concept"": {
|
|
1246
|
+
""description"": ""Hyper-realistic, magazine-cover-quality close-up portrait of a beautiful woman with features inspired by {argument name=\""celebrity name\"" default=\""Ana de Armas\""}"",
|
|
1247
|
+
""intent"": ""High-fashion editorial photography with cinematic realism"",
|
|
1248
|
+
""originality_note"": ""The subject is a look-alike inspired by Ana de Armas, not an exact replica""
|
|
1249
|
+
},
|
|
1250
|
+
""subject"": {
|
|
1251
|
+
""gender"": ""female"",
|
|
1252
|
+
""age_range"": ""early 30s"",
|
|
1253
|
+
""ethnicity"": ""Latina / Cuban-Spanish inspired"",
|
|
1254
|
+
""facial_features"": {
|
|
1255
|
+
""structure"": ""soft oval face, elegant cheekbones, delicate jawline"",
|
|
1256
|
+
""eyes"": ""large almond-shaped eyes, warm brown tone, relaxed eyelids"",
|
|
1257
|
+
""lips"": ""full, natural lips slightly parted"",
|
|
1258
|
+
""expression"": ""languid, calm, subtly seductive, relaxed confidence""
|
|
1259
|
+
},
|
|
1260
|
+
""body_visibility"": {
|
|
1261
|
+
""framing"": ""close-up portrait extending below the waist"",
|
|
1262
|
+
""posture"": ""upright but relaxed, natural editorial pose""
|
|
1263
|
+
}
|
|
1264
|
+
},
|
|
1265
|
+
""body"": {
|
|
1266
|
+
""build"": ""Athletic and lean"",
|
|
1267
|
+
""musculature"": [
|
|
1268
|
+
""Defined abdominal muscles"",
|
|
1269
|
+
""Toned arms"",
|
|
1270
|
+
""Firm thighs""
|
|
1271
|
+
},
|
|
1272
|
+
""wardrobe"": {
|
|
1273
|
+
""outfit_type"": ""two-piece outfit"",
|
|
1274
|
+
""color"": ""deep vivid red"",
|
|
1275
|
+
""top"": {
|
|
1276
|
+
""style"": ""fitted, minimal, fashion-forward"",
|
|
1277
|
+
""fabric"": ""smooth, slightly reflective material""
|
|
1278
|
+
},
|
|
1279
|
+
""bottom"": {
|
|
1280
|
+
""style"": ""mini skirt"",
|
|
1281
|
+
""fit"": ""form-fitting, modern cut"",
|
|
1282
|
+
""visibility"": ""clearly visible below the waist""
|
|
1283
|
+
}
|
|
1284
|
+
},
|
|
1285
|
+
""skin_and_texture"": {
|
|
1286
|
+
""skin_quality"": ""highly detailed, natural pores visible"",
|
|
1287
|
+
""finish"": ""glossy, luminous"",
|
|
1288
|
+
""effect"": ""subtle sweat or oil sheen on torso and chest, enhancing realism"",
|
|
1289
|
+
""tone"": ""warm, healthy glow""
|
|
1290
|
+
},
|
|
1291
|
+
""hair_and_makeup"": {
|
|
1292
|
+
""hair"": {
|
|
1293
|
+
""style"": ""softly styled, loose waves"",
|
|
1294
|
+
""color"": ""deep brown"",
|
|
1295
|
+
""texture"": ""natural shine with slight movement""
|
|
1296
|
+
},
|
|
1297
|
+
""makeup"": {
|
|
1298
|
+
""style"": ""editorial glamour"",
|
|
1299
|
+
""details"": ""dewy skin, softly defined eyes, natural lips with slight gloss""
|
|
1300
|
+
}
|
|
1301
|
+
},
|
|
1302
|
+
""background"": {
|
|
1303
|
+
""environment"": ""indoor setting"",
|
|
1304
|
+
""primary_elements"": [
|
|
1305
|
+
""desk or table surface"",
|
|
1306
|
+
""stacks of papers""
|
|
1307
|
+
],
|
|
1308
|
+
""paper_details"": {
|
|
1309
|
+
""brightness"": ""partially bright white"",
|
|
1310
|
+
""arrangement"": ""slightly messy, layered stacks"",
|
|
1311
|
+
""focus"": ""softly blurred to maintain subject dominance""
|
|
1312
|
+
},
|
|
1313
|
+
""depth_of_field"": ""shallow, cinematic bokeh""
|
|
1314
|
+
},
|
|
1315
|
+
""lighting"": {
|
|
1316
|
+
""style"": ""studio cinematic lighting"",
|
|
1317
|
+
""key_light"": ""soft but directional, highlighting facial structure"",
|
|
1318
|
+
""fill_light"": ""gentle fill to preserve skin detail"",
|
|
1319
|
+
""highlights"": ""accentuated on glossy skin areas"",
|
|
1320
|
+
""shadows"": ""soft, controlled, magazine-style contrast""
|
|
1321
|
+
},
|
|
1322
|
+
""camera"": {
|
|
1323
|
+
""shot_type"": ""close-up portrait"",
|
|
1324
|
+
""lens"": ""85mm prime lens"",
|
|
1325
|
+
""aperture"": ""f/1.8"",
|
|
1326
|
+
""focus"": ""tack-sharp on eyes"",
|
|
1327
|
+
""sens""
|
|
1328
|
+
}
|
|
1329
|
+
}","KeorUnreal","https://x.com/KeorUnreal/status/2013362480471314461"
|
|
1330
|
+
"37","Social Media Post - iPhone Mirror Selfie Photography Prompt for Character Replacement","","A highly detailed JSON-formatted prompt designed to generate an ultra-realistic iPhone mirror selfie. It specifies complex technical parameters like 8K resolution, Apple Smart HDR processing, and detailed subject attributes (pose, clothing, texture) while explicitly requiring the replacement of the default subject with a provided reference character, making it ideal for identity-locked image generation.","{
|
|
1331
|
+
""prompt_type"": ""iphone_mirror_selfie_photography"",
|
|
1332
|
+
""capture_device"": {
|
|
1333
|
+
""device"": ""iPhone Pro"",
|
|
1334
|
+
""camera_mode"": ""Mirror Selfie - Portrait"",
|
|
1335
|
+
""lens_equivalent"": ""iPhone rear wide lens"",
|
|
1336
|
+
""processing"": ""Apple Smart HDR + Deep Fusion"",
|
|
1337
|
+
""look"": ""natural, clean, realistic mirror reflection""
|
|
1338
|
+
},
|
|
1339
|
+
""quality"": {
|
|
1340
|
+
""resolution"": ""8K"",
|
|
1341
|
+
""sharpness"": ""high natural sharpness"",
|
|
1342
|
+
""detail_level"": ""extreme fine detail"",
|
|
1343
|
+
""texture"": ""real fabric, real skin texture"",
|
|
1344
|
+
""noise"": ""very subtle natural iPhone sensor noise"",
|
|
1345
|
+
""dynamic_range"": ""balanced highlights and shadows""
|
|
1346
|
+
},
|
|
1347
|
+
""subject"": {
|
|
1348
|
+
""type"": ""female character"",
|
|
1349
|
+
""identity"": ""{argument name=""reference character"" default=""REFERENCE_CHARACTER""}"",
|
|
1350
|
+
""replacement_instruction"": ""Replace the original girl with the provided reference character while keeping pose, body proportions, lighting, reflection and realism"",
|
|
1351
|
+
""age"": ""adult"",
|
|
1352
|
+
""body"": {
|
|
1353
|
+
""build"": ""fit, feminine, natural curves"",
|
|
1354
|
+
""proportions"": ""realistic human anatomy"",
|
|
1355
|
+
""skin"": ""natural skin texture, visible pores, no smoothing""
|
|
1356
|
+
},
|
|
1357
|
+
""expression"": {
|
|
1358
|
+
""emotion"": ""calm, confident, relaxed"",
|
|
1359
|
+
""face"": ""neutral soft expression"",
|
|
1360
|
+
""gaze"": ""looking at phone screen through mirror""
|
|
1361
|
+
},
|
|
1362
|
+
""pose"": {
|
|
1363
|
+
""position"": ""sitting on bed edge"",
|
|
1364
|
+
""legs"": ""together, feet touching the floor"",
|
|
1365
|
+
""arms"": ""one hand holding phone, other hand resting on bed"",
|
|
1366
|
+
""posture"": ""upright but relaxed""
|
|
1367
|
+
},
|
|
1368
|
+
""hair"": {
|
|
1369
|
+
""style"": ""long, softly wavy"",
|
|
1370
|
+
""texture"": ""natural volume, individual strands visible""
|
|
1371
|
+
}
|
|
1372
|
+
},
|
|
1373
|
+
""clothing"": {
|
|
1374
|
+
""outfit"": ""tight one-piece bodysuit"",
|
|
1375
|
+
""design"": ""{argument name=""bodysuit design"" default=""black base with red spider-web pattern""}"",
|
|
1376
|
+
""fit"": ""form-fitting, athletic"",
|
|
1377
|
+
""fabric"": {
|
|
1378
|
+
""material"": ""stretch synthetic fabric"",
|
|
1379
|
+
""texture"": ""smooth with subtle sheen"",
|
|
1380
|
+
""behavior"": ""naturally hugging the body""
|
|
1381
|
+
}
|
|
1382
|
+
},
|
|
1383
|
+
""environment"": {
|
|
1384
|
+
""location"": ""minimal modern bedroom"",
|
|
1385
|
+
""mirror"": ""full-length wooden frame mirror"",
|
|
1386
|
+
""bed"": {
|
|
1387
|
+
""style"": ""simple wooden bed frame"",
|
|
1388
|
+
""bedding"": ""neutral patterned duvet""
|
|
1389
|
+
},
|
|
1390
|
+
""floor"": ""light wooden floor"",
|
|
1391
|
+
""decor"": ""minimalist, clean, warm-toned interior"",
|
|
1392
|
+
""atmosphere"": ""quiet, cozy, private indoor space""
|
|
1393
|
+
},
|
|
1394
|
+
""lighting"": {
|
|
1395
|
+
""primary_light"": ""warm indoor ambient lighting"",
|
|
1396
|
+
""secondary_light"": ""soft ceiling or wall light"",
|
|
1397
|
+
""style"": ""iPhone indoor Smart HDR"",
|
|
1398
|
+
""shadows"": ""soft and natural"",
|
|
1399
|
+
""white_balance"": ""warm neutral indoor tones""
|
|
1400
|
+
},
|
|
1401
|
+
""camera"": {
|
|
1402
|
+
""angle"": ""straight-on mirror angle"",
|
|
1403
|
+
""distance"": ""full body visible in mirror"",
|
|
1404
|
+
""framing"": ""full body mirror selfie"",
|
|
1405
|
+
""depth_of_field"": ""natural shallow depth from portrait processing"",
|
|
1406
|
+
""focus"": ""sharp focus on subject reflection""
|
|
1407
|
+
},
|
|
1408
|
+
""style"": {
|
|
1409
|
+
""genre"": ""realistic iPhone mirror selfie"",
|
|
1410
|
+
""aesthetic"": ""clean, modern, social media realistic"",
|
|
1411
|
+
""color_science"": ""Apple natura","Clara","https://x.com/veclaraa/status/2013362053948268625"
|
|
1412
|
+
"38","Social Media Post - Seductive Cyberpunk Beauty Portrait Prompt","","A complex, detailed prompt for generating a seductive, high-fashion cyberpunk beauty portrait. It emphasizes intense neon lighting (magenta-pink and electric blue), volumetric effects (god rays, lens flares), high contrast, and specific technical details (Sony A1, 85mm f/1.4, prism filter, chromatic aberration). The prompt also includes a comprehensive negative prompt list and requires using a reference face.","{
|
|
1413
|
+
""Use the face from the reference image as is.""
|
|
1414
|
+
""main_prompt"": ""seductive cyberpunk beauty portrait in intense neon lighting, young woman in her early 20s with fair porcelain skin and subtle natural glow, long wavy dark auburn/reddish-brown hair cascading loosely over bare shoulders, eyes closed in dreamy ecstasy with long thick lashes, soft parted glossy lips in nude-pink, delicate makeup with subtle smokey eyes and contoured cheeks, topless with bare shoulders and upper back visible, skin bathed in vibrant {argument name=""neon color 1"" default=""magenta-pink""} and {argument name=""neon color 2"" default=""electric blue""} neon glows, strong rim light in hot pink outlining hair, neck and collarbone, volumetric god rays and lens flares in pink-purple spectrum cutting through misty air, deep blue-purple shadows contrasting with bright neon highlights, futuristic neon club or studio background with glowing pink and blue tubes, heavy chromatic aberration on edges creating rainbow prismatic fringes, subtle digital glitch and bloom effects, photorealistic yet highly stylized, ultra-detailed skin texture with realistic pores, subtle freckles and natural imperfections, individual hair strands catching neon reflections and subsurface scattering, cinematic color grading with dominant hot magenta-pink and electric blue, high contrast HDR look, film grain light, moody sensual cyber-noir aesthetic, shot on Sony A1 with 85mm f/1.4 lens through prism filter, shallow depth of field focus on face and hair with creamy bokeh on neon background, high fashion editorial meets vaporwave cyberpunk fantasy, intimate ethereal vibe"",
|
|
1415
|
+
""negative_prompt"": ""blurry, lowres, deformed hands, extra fingers, fused fingers, bad anatomy, poorly drawn face, bad proportions, extra limbs, mutated hands, ugly, disfigured, tiling, out of frame, jpeg artifacts, signature, watermark, text, error, cropped, worst quality, low quality, cartoon, anime, 3d render, plastic skin, doll-like, airbrushed skin, overexposed neon washout, underexposed, flat lighting, harsh shadows, pale skin without glow, heavy makeup overload, instagram face, duck lips, smiling happy expression, elderly, child, male, group shot, natural daylight, clean white background, no neon glow, matte skin, desaturated colors, monochrome, cheap effects, synthetic look, visible clothing coverage on upper body, long straight hair, blonde/red mismatch, no chromatic aberration, boring composition"",
|
|
1416
|
+
""style_tags"": [
|
|
1417
|
+
""photorealistic cyberpunk"",
|
|
1418
|
+
""intense magenta-pink and electric blue neon"",
|
|
1419
|
+
""volumetric god rays and lens flares"",
|
|
1420
|
+
""chromatic aberration heavy"",
|
|
1421
|
+
""seductive closed-eyes expression"",
|
|
1422
|
+
""bare shoulders and back focus"",
|
|
1423
|
+
""high contrast neon glamour"",
|
|
1424
|
+
""vaporwave meets high fashion"",
|
|
1425
|
+
""cinematic HDR grading"",
|
|
1426
|
+
""subtle film grain"",
|
|
1427
|
+
""ethereal sensual fantasy""
|
|
1428
|
+
],
|
|
1429
|
+
""technical"": {
|
|
1430
|
+
""aspect_ratio"": ""3:4 or 4:5 (vertical neon portrait / wallpaper style)"",
|
|
1431
|
+
""lighting"": ""multi-source neon: strong magenta-pink key from side/front creating rim light a","Lex","https://x.com/katmanai/status/2013356556281164257"
|
|
1432
|
+
"39","Social Media Post - Moody Underground Corridor Portrait","","A prompt for generating a stylized mid-shot of a man in a dim underground corridor, using high-contrast lighting where sharp beams of white light cut through drifting dust, partially carving his silhouette. It requires the AI to strictly use an uploaded reference image for the face and maintain a cinematic, futuristic, and moody atmosphere.","Create a 4:5 stylized mid-shot of a man standing in a dim underground corridor. Vertical gaps in a metal wall cast sharp beams of white light through drifting dust, partially carving his silhouette. Use the uploaded reference image for the face and do not change any facial features or identity. He wears a dark graphite bomber jacket with subtle metallic texture. High contrast lighting, deep shadows, cinematic and futuristic tension, moody atmosphere, realistic materials and skin texture.","Hatman 🎩","https://x.com/hatman/status/2013355785305366538"
|
|
1433
|
+
"40","Social Media Post - Charli D’Amelio High-Contrast Editorial Portrait","","A prompt designed to replace a subject with Charli D'Amelio, maintaining a specific pose and expression (snarling, playful, over-the-shoulder shot). It details her exact facial features, makeup, hair, and uses harsh frontal flash lighting for a high-contrast editorial studio look.","Replace the subject with {argument name=""subject name"" default=""Charli D'Amelio""}. Maintain the exact snarling, playful expression with the nose scrunched and mouth slightly open, showing teeth. The pose is a high-angle over-the-shoulder shot; her body is turned away from the camera, exposing her back, while her head is turned back toward the lens. Her right hand is brought up to her left shoulder, fingers spread and slightly tensed, showcasing rings and hand tattoos.
|
|
1434
|
+
Charli D’Amelio’s specific facial features—round brown eyes, distinctive nose shape, and natural skin texture with subtle freckles—are integrated into the existing makeup style, which features sharp, winged eyeliner and neutral lips. Her hair is a deep brunette, styled in the same voluminous half-up, half-down look with a slight wave. The lighting is a harsh, direct frontal flash typical of editorial studio photography, creating sharp shadows against the plain off-white wall and highlighting skin porosity and fine details. She wears the same dark, shimmering velvet or lace-textured garment.","QuestGlitch","https://x.com/AIRevSpot/status/2013355749733474497"
|
|
1435
|
+
"41","Social Media Post - Cinematic Romcom Scene on a Carousel with Identity Lock","","A complex, highly constrained JSON prompt for Nano Banana Pro designed to generate an ultra-photorealistic cinematic scene of a couple on an indoor carousel at night. It mandates strict identity locking based on two uploaded reference images, specific camera settings (35mm, f/2.0), warm tungsten lighting, and detailed constraints on pose and environment to achieve a romcom aesthetic.","{
|
|
1436
|
+
""generation_request"": {
|
|
1437
|
+
""meta_data"": {
|
|
1438
|
+
""tool"": ""NanoBanana Pro"",
|
|
1439
|
+
""task_type"": ""photoreal_cinematic_carousel_couple_close_scene"",
|
|
1440
|
+
""version"": ""v1.0_CAROUSEL_RIDE_ROMCOM_WARM_LIGHTS_POSE_LOCK"",
|
|
1441
|
+
""priority"": ""highest""
|
|
1442
|
+
},
|
|
1443
|
+
""references"": {
|
|
1444
|
+
""female_reference_image"": {
|
|
1445
|
+
""slot"": 1,
|
|
1446
|
+
""purpose"": ""FEMALE_IDENTITY_LOCK"",
|
|
1447
|
+
""strict_identity_lock"": true,
|
|
1448
|
+
""no_beautify"": true
|
|
1449
|
+
},
|
|
1450
|
+
""male_reference_image"": {
|
|
1451
|
+
""slot"": 2,
|
|
1452
|
+
""purpose"": ""MALE_IDENTITY_LOCK"",
|
|
1453
|
+
""strict_identity_lock"": true,
|
|
1454
|
+
""no_beautify"": true
|
|
1455
|
+
},
|
|
1456
|
+
""composition_reference_image"": {
|
|
1457
|
+
""source"": ""UPLOAD_REFERENCE_IMAGE (OPTIONAL)"",
|
|
1458
|
+
""purpose"": ""EXACT_COMPOSITION_LIGHTING_WARDROBE_ENV_LOCK"",
|
|
1459
|
+
""strict_lock"": true,
|
|
1460
|
+
""no_layout_drift"": true,
|
|
1461
|
+
""preserve_framing"": true
|
|
1462
|
+
}
|
|
1463
|
+
},
|
|
1464
|
+
""output_settings"": {
|
|
1465
|
+
""aspect_ratio"": ""4:5"",
|
|
1466
|
+
""orientation"": ""portrait"",
|
|
1467
|
+
""resolution"": ""ultra_high_res"",
|
|
1468
|
+
""render_style"": ""ultra_photoreal_cinematic_lifestyle"",
|
|
1469
|
+
""sharpness"": ""crisp_faces_natural_texture"",
|
|
1470
|
+
""film_grain"": ""subtle_analog"",
|
|
1471
|
+
""color_grade"": ""warm_carnival_golden""
|
|
1472
|
+
},
|
|
1473
|
+
""hard_constraints"": [
|
|
1474
|
+
""Exactly 2 people only (one female, one male)."",
|
|
1475
|
+
""Faces must match the uploaded references with maximum similarity (no morphing, no identity drift)."",
|
|
1476
|
+
""Photorealistic only: natural skin texture, no beauty filter, no plastic smoothing."",
|
|
1477
|
+
""Carousel setting: visible ornate ceiling + warm bulbs + carousel poles + painted horses."",
|
|
1478
|
+
""Match the reference pose logic: couple on carousel horses, looking at each other and smiling."",
|
|
1479
|
+
""No readable text, no logos, no watermark."",
|
|
1480
|
+
""Correct anatomy: hands gripping pole naturally, realistic posture seated on carousel horse.""
|
|
1481
|
+
],
|
|
1482
|
+
""camera"": {
|
|
1483
|
+
""style"": ""cinematic lifestyle photo"",
|
|
1484
|
+
""lens"": ""35mm"",
|
|
1485
|
+
""aperture"": ""f/2.0"",
|
|
1486
|
+
""focus"": ""sharp on both faces, gentle falloff to background"",
|
|
1487
|
+
""shutter_speed"": ""1/125"",
|
|
1488
|
+
""iso"": 800,
|
|
1489
|
+
""white_balance"": ""warm_tungsten_carnival""
|
|
1490
|
+
},
|
|
1491
|
+
""lighting"": {
|
|
1492
|
+
""type"": ""carousel bulbs + warm ambient"",
|
|
1493
|
+
""contrast"": ""medium"",
|
|
1494
|
+
""highlights"": ""soft specular on hair and denim, controlled on skin"",
|
|
1495
|
+
""shadows"": ""soft, natural falloff""
|
|
1496
|
+
},
|
|
1497
|
+
""prompt"": {
|
|
1498
|
+
""scene_summary"": ""Ultra-photoreal cinematic romcom scene on an indoor carousel at night. The ornate carousel ceiling fills the top of frame with classic decorative molding and rows of warm glowing bulbs. In the foreground, a painted carousel horse head and pole are visible, with rich vintage details (gold trim, colorful saddle accents). \n\nTwo people only: the male sits slightly lower on a carousel horse, holding the vertical pole with both hands and looking up at the female with a soft smile. The female sits on the neighboring horse, leaning slightly toward him, smiling back warmly. Their faces are","Özge Döner","https://x.com/astronomerozge1/status/2013351484008620139"
|
|
1499
|
+
"42","Social Media Post - Cinematic Photoreal Elevator Kiss Scene","","A highly specific JSON prompt for generating an ultra-photorealistic, cinematic film still of a couple kissing inside an elevator, framed by the partially closing gold doors. It mandates strict identity locking (requiring reference images), a voyeuristic candid framing, and warm tungsten lighting to evoke a luxury hotel atmosphere.","{
|
|
1500
|
+
""generation_request"": {
|
|
1501
|
+
""meta_data"": {
|
|
1502
|
+
""tool"": ""NanoBanana Pro"",
|
|
1503
|
+
""task_type"": ""photoreal_modern_romance"",
|
|
1504
|
+
""version"": ""v1.0_ELEVATOR_DOORS_KISS_CINEMATIC_EN"",
|
|
1505
|
+
""priority"": ""highest"",
|
|
1506
|
+
""language"": ""en""
|
|
1507
|
+
},
|
|
1508
|
+
""references"": {
|
|
1509
|
+
""reference_image_1"": {
|
|
1510
|
+
""source"": ""UPLOAD_REFERENCE_IMAGE (OPTIONAL)"",
|
|
1511
|
+
""purpose"": ""COMPOSITION_MOOD_ANCHOR"",
|
|
1512
|
+
""strict_lock"": false,
|
|
1513
|
+
""preserve_mood"": true
|
|
1514
|
+
},
|
|
1515
|
+
""reference_image_female"": {
|
|
1516
|
+
""source"": ""UPLOAD_REFERENCE_IMAGE (OPTIONAL)"",
|
|
1517
|
+
""purpose"": ""FACE_IDENTITY_LOCK_FEMALE"",
|
|
1518
|
+
""strict_lock"": true,
|
|
1519
|
+
""face_similarity_priority"": ""MAX"",
|
|
1520
|
+
""no_identity_blending"": true,
|
|
1521
|
+
""no_beautify"": true,
|
|
1522
|
+
""no_age_shift"": true,
|
|
1523
|
+
""preserve_skin_texture"": true,
|
|
1524
|
+
""preserve_facial_proportions"": true
|
|
1525
|
+
},
|
|
1526
|
+
""reference_image_male"": {
|
|
1527
|
+
""source"": ""UPLOAD_REFERENCE_IMAGE (OPTIONAL)"",
|
|
1528
|
+
""purpose"": ""FACE_IDENTITY_LOCK_MALE"",
|
|
1529
|
+
""strict_lock"": true,
|
|
1530
|
+
""face_similarity_priority"": ""MAX"",
|
|
1531
|
+
""no_identity_blending"": true,
|
|
1532
|
+
""no_beautify"": true,
|
|
1533
|
+
""no_age_shift"": true,
|
|
1534
|
+
""preserve_skin_texture"": true,
|
|
1535
|
+
""preserve_facial_proportions"": true
|
|
1536
|
+
}
|
|
1537
|
+
},
|
|
1538
|
+
""global_constraints"": {
|
|
1539
|
+
""rating"": ""PG-13"",
|
|
1540
|
+
""no_explicit_sexual_content"": true,
|
|
1541
|
+
""no_nudity"": true,
|
|
1542
|
+
""no_text"": true,
|
|
1543
|
+
""no_logos"": true,
|
|
1544
|
+
""no_watermark"": true
|
|
1545
|
+
},
|
|
1546
|
+
""output_settings"": {
|
|
1547
|
+
""aspect_ratio"": ""9:16"",
|
|
1548
|
+
""orientation"": ""portrait"",
|
|
1549
|
+
""resolution_target"": ""ultra_high_res"",
|
|
1550
|
+
""render_style"": ""ultra_photoreal_cinematic_film_still"",
|
|
1551
|
+
""sharpness"": ""crisp_but_natural"",
|
|
1552
|
+
""film_grain"": ""subtle_35mm"",
|
|
1553
|
+
""color_grade"": ""warm_amber_luxury_hotel"",
|
|
1554
|
+
""dynamic_range"": ""natural_not_hdr"",
|
|
1555
|
+
""skin_rendering"": ""real_texture_no_retouch""
|
|
1556
|
+
},
|
|
1557
|
+
""global_rules"": {
|
|
1558
|
+
""camera_language"": ""85mm, long-shot through partially closing elevator doors, centered symmetry, voyeuristic candid framing, shallow depth of field"",
|
|
1559
|
+
""lighting_language"": ""warm tungsten practicals inside elevator, dim hallway outside, cinematic contrast without HDR"",
|
|
1560
|
+
""authenticity_markers"": ""no AI glow, no over-sharpening, realistic shadows, natural film halation""
|
|
1561
|
+
},
|
|
1562
|
+
""creative_prompt"": {
|
|
1563
|
+
""scene_summary"": ""A cinematic, ultra-photoreal moment seen from the hallway: a couple kissing inside an elevator as the gold elevator doors are almost closed, leaving a narrow vertical gap framing them. The setting feels like a luxury old building or hotel with stone walls and a classic brass elevator."",
|
|
1564
|
+
""subjects"": {
|
|
1565
|
+
""count"": 2,
|
|
1566
|
+
""description"": ""a real adult couple, elegant and modern"",
|
|
1567
|
+
""expression"": ""passionate but tasteful, intimate and joyful"",
|
|
1568
|
+
""skin_and_face"": ""real texture, no retouch, natural pores""
|
|
1569
|
+
},
|
|
1570
|
+
""pose_and_micro_action"": ""The man leans in to kiss; one hand around her waist. The wom""
|
|
1571
|
+
}
|
|
1572
|
+
}
|
|
1573
|
+
}","Özge Döner","https://x.com/astronomerozge1/status/2013344143116734757"
|
|
1574
|
+
"43","Social Media Post - Cinematic Photoreal Bookstore Kiss with Motion Blur","","A highly structured prompt designed to generate an ultra-photorealistic, candid cinematic film still of a couple kissing intimately in a cozy bookstore aisle. It emphasizes natural imperfections, warm amber lowlight, shallow depth of field, and a slight motion blur to capture the spontaneity of the moment, while strictly enforcing PG-13 constraints.","{
|
|
1575
|
+
""generation_request"": {
|
|
1576
|
+
""meta_data"": {
|
|
1577
|
+
""tool"": ""NanoBanana Pro"",
|
|
1578
|
+
""task_type"": ""photoreal_intimate_romance"",
|
|
1579
|
+
""version"": ""v1.0_COZY_BOOKSTORE_AISLE_KISS_MOTIONBLUR_EN"",
|
|
1580
|
+
""priority"": ""highest"",
|
|
1581
|
+
""language"": ""en""
|
|
1582
|
+
},
|
|
1583
|
+
""references"": {
|
|
1584
|
+
""reference_image_couple"": {
|
|
1585
|
+
""source"": ""UPLOAD_REFERENCE_IMAGE (OPTIONAL)"",
|
|
1586
|
+
""purpose"": ""POSE_MOOD_STYLE_ANCHOR"",
|
|
1587
|
+
""strict_lock"": false,
|
|
1588
|
+
""preserve_mood"": true
|
|
1589
|
+
}
|
|
1590
|
+
},
|
|
1591
|
+
""global_constraints"": {
|
|
1592
|
+
""rating"": ""PG-13"",
|
|
1593
|
+
""no_explicit_sexual_content"": true,
|
|
1594
|
+
""no_text"": true,
|
|
1595
|
+
""no_logos"": true,
|
|
1596
|
+
""no_watermark"": true
|
|
1597
|
+
},
|
|
1598
|
+
""output_settings"": {
|
|
1599
|
+
""aspect_ratio"": ""3:4"",
|
|
1600
|
+
""orientation"": ""portrait"",
|
|
1601
|
+
""resolution_target"": ""ultra_high_res"",
|
|
1602
|
+
""render_style"": ""ultra_photoreal_cinematic_film_still"",
|
|
1603
|
+
""sharpness"": ""soft_focus_cinematic"",
|
|
1604
|
+
""film_grain"": ""subtle_35mm"",
|
|
1605
|
+
""color_grade"": ""warm_amber_lowlight"",
|
|
1606
|
+
""dynamic_range"": ""natural_not_hdr"",
|
|
1607
|
+
""skin_rendering"": ""real_texture_no_retouch""
|
|
1608
|
+
},
|
|
1609
|
+
""global_rules"": {
|
|
1610
|
+
""camera_language"": ""50mm, close mid-shot, handheld feel, shallow depth of field, foreground books blurred, slight motion blur like a candid moment"",
|
|
1611
|
+
""lighting_language"": ""warm tungsten practicals + soft bounce, cozy bookstore ambience, gentle falloff, no harsh flash"",
|
|
1612
|
+
""authenticity_markers"": ""natural imperfection, slight grain, realistic bokeh, no AI glow, no HDR""
|
|
1613
|
+
},
|
|
1614
|
+
""creative_prompt"": {
|
|
1615
|
+
""scene_summary"": ""A candid, ultra-photoreal cinematic moment of a couple kissing in a narrow bookstore/library aisle. Books fill the shelves behind them; stacks of books in the foreground create depth. The scene feels private, spontaneous, and warm, with a soft handheld motion-blur aesthetic."",
|
|
1616
|
+
""subjects"": {
|
|
1617
|
+
""count"": 2,
|
|
1618
|
+
""description"": ""a real couple, natural proportions, realistic skin texture"",
|
|
1619
|
+
""expression"": ""intimate and joyful, absorbed in the moment"",
|
|
1620
|
+
""skin_and_face"": ""real texture, minimal makeup, no retouch""
|
|
1621
|
+
},
|
|
1622
|
+
""pose_and_micro_action"": ""The man pulls the woman close by the waist; the woman wraps her arms around his neck. Their faces are partially obscured by the kiss, captured mid-movement for a candid blur."",
|
|
1623
|
+
""wardrobe_and_style"": {
|
|
1624
|
+
""female"": ""simple fitted dress or top in {argument name=""female wardrobe color"" default=""neutral tones""}, soft natural hair"",
|
|
1625
|
+
""male"": ""casual button-up shirt or knit top, neutral tones"",
|
|
1626
|
+
""no_logos"": ""no visible branding""
|
|
1627
|
+
},
|
|
1628
|
+
""environment_details"": {
|
|
1629
|
+
""location"": ""cozy old bookstore / library aisle"",
|
|
1630
|
+
""background"": ""tall bookshelves packed with books, warm wood tones"",
|
|
1631
|
+
""foreground"": ""out-of-focus books and spines close to lens for depth"",
|
|
1632
|
+
""props"": ""books stacked on a small cart or shelf edge""
|
|
1633
|
+
},
|
|
1634
|
+
""lighting"": ""warm amber practical lighting, soft shadows, gentle highlights on hair and cheekbones"",
|
|
1635
|
+
""composition"": """"
|
|
1636
|
+
}
|
|
1637
|
+
}
|
|
1638
|
+
}","Özge Döner","https://x.com/astronomerozge1/status/2013341511480496169"
|
|
1639
|
+
"44","Social Media Post - Ana de Armas Lifestyle Editorial Portrait","","A highly structured JSON prompt for generating an ultra-photorealistic lifestyle editorial portrait of Ana de Armas. It specifies camera settings (Sony A7 IV, 35mm lens), identity lock rules, pose, wardrobe (soft knit sweater), and a modern loft environment with natural window lighting.","{
|
|
1640
|
+
""meta"": {
|
|
1641
|
+
""platform"": ""Nano Banana Pro"",
|
|
1642
|
+
""style"": ""ultra-photorealistic lifestyle editorial"",
|
|
1643
|
+
""resolution"": ""high resolution"",
|
|
1644
|
+
""aspect_ratio"": ""3:4"",
|
|
1645
|
+
""camera"": {
|
|
1646
|
+
""body"": ""Sony A7 IV"",
|
|
1647
|
+
""lens"": ""FE 35mm f/1.4 GM"",
|
|
1648
|
+
""iso"": 100,
|
|
1649
|
+
""look"": ""natural shallow depth of field, soft background separation""
|
|
1650
|
+
}
|
|
1651
|
+
},
|
|
1652
|
+
|
|
1653
|
+
""identity_lock"": {
|
|
1654
|
+
""rule"": ""Preserve all facial features, body proportions, skin tone, hair color, hair texture, and overall appearance exactly as the reference image"",
|
|
1655
|
+
""no_face_change"": true,
|
|
1656
|
+
""no_body_change"": true,
|
|
1657
|
+
""no_hair_change"": true
|
|
1658
|
+
},
|
|
1659
|
+
|
|
1660
|
+
""subject"": {
|
|
1661
|
+
""description"": ""Adult woman with soft feminine features, natural proportions, calm confident presence"",
|
|
1662
|
+
""expression"": ""relaxed, warm, subtly confident"",
|
|
1663
|
+
""hair"": ""natural hairstyle and color preserved from reference"",
|
|
1664
|
+
""skin"": ""realistic skin texture with visible pores, soft natural glow""
|
|
1665
|
+
},
|
|
1666
|
+
|
|
1667
|
+
""pose"": {
|
|
1668
|
+
""position"": ""seated or kneeling on a leather sofa"",
|
|
1669
|
+
""posture"": ""relaxed lifestyle pose, gentle curves, natural body alignment"",
|
|
1670
|
+
""hands"": ""resting softly on lap or sweater fabric"",
|
|
1671
|
+
""gaze"": ""looking toward camera or slightly downward with calm expression""
|
|
1672
|
+
},
|
|
1673
|
+
|
|
1674
|
+
""wardrobe"": {
|
|
1675
|
+
""top"": ""soft knit sweater, cozy texture, neutral light tone"",
|
|
1676
|
+
""bottom"": ""simple underwear or lounge bottom, neutral color"",
|
|
1677
|
+
""styling_rule"": ""tasteful, non-explicit, lifestyle editorial balance""
|
|
1678
|
+
},
|
|
1679
|
+
|
|
1680
|
+
""environment"": {
|
|
1681
|
+
""location"": ""modern loft-style living room"",
|
|
1682
|
+
""elements"": [
|
|
1683
|
+
""brown leather sofa"",
|
|
1684
|
+
""textured brick wall partially exposed"",
|
|
1685
|
+
""soft pillows in neutral and olive tones"",
|
|
1686
|
+
""large window with diffused daylight""
|
|
1687
|
+
],
|
|
1688
|
+
""atmosphere"": ""calm, cozy, intimate but refined""
|
|
1689
|
+
},
|
|
1690
|
+
|
|
1691
|
+
""lighting"": {
|
|
1692
|
+
""type"": ""natural window light"",
|
|
1693
|
+
""direction"": ""side-lit"",
|
|
1694
|
+
""quality"": ""soft highlights, gentle shadows, realistic contrast""
|
|
1695
|
+
},
|
|
1696
|
+
|
|
1697
|
+
""photography_style"": {
|
|
1698
|
+
""genre"": ""lifestyle fashion portrait"",
|
|
1699
|
+
""focus"": ""sharp on subject, background softly blurred"",
|
|
1700
|
+
""color_tone"": ""warm neutral palette, earthy tones""
|
|
1701
|
+
},
|
|
1702
|
+
|
|
1703
|
+
""negative_prompt"": [
|
|
1704
|
+
""face alteration"",
|
|
1705
|
+
""different hair color"",
|
|
1706
|
+
""body distortion"",
|
|
1707
|
+
""over-smoothing skin"",
|
|
1708
|
+
""cartoon"",
|
|
1709
|
+
""anime"",
|
|
1710
|
+
""CGI"",
|
|
1711
|
+
""extra limbs"",
|
|
1712
|
+
""bad anatomy"",
|
|
1713
|
+
""harsh lighting"",
|
|
1714
|
+
""text"",
|
|
1715
|
+
""watermark"",
|
|
1716
|
+
""logo""
|
|
1717
|
+
]
|
|
1718
|
+
}","Noname Oasis","https://x.com/nonameoasis/status/2013338570765820273"
|
|
1719
|
+
"45","Infographic / Edu Visual - Product Ingredient Labeling Prompt","","A tweet promoting a prompt designed to 'explode any product into labeled ingredients in seconds,' suggesting a utility for quick product analysis or visualization.","One prompt to explode any product into labeled ingredients in seconds","René Remsik","https://x.com/aitrendz_xyz/status/2013141774274109763"
|
|
1720
|
+
"46","Infographic / Edu Visual - Style Transfer for Medical Term Infographic","","A prompt used with Nano Banana Pro to apply different visual styles—clay animation, detailed infographic, and psychological illustration—to the medical term 'Aichmophobia' (fear of sharp objects), demonstrating the tool's ability to interpret composition and text layout from a rough sketch.","Aichmophobia (fear of sharp objects), {argument name=""style"" default=""clay animation style""}, {argument name=""detail level"" default=""detailed infographic""}, {argument name=""depiction"" default=""psychological illustration""}","ヤマアラシ|医療AI戦略家","https://x.com/AIshijimachiman/status/2013129199830384930"
|
|
1721
|
+
"47","Infographic / Edu Visual - Exploded Food Diagram Technical Photography Prompt","","A highly conceptual prompt designed to visualize a layered dish as an architectural model or technical blueprint. It requires the dish to be cut in cross-section, with layers labeled by acrylic rods, and includes elements like miniature construction workers and material specifications, rendered in a technical drawing aesthetic.","<instructions>
|
|
1722
|
+
Input A: Any layered/textured dish (e.g., {argument name=""layered dish"" default=""lasagna, baklava, mille-feuille, biryani""})
|
|
1723
|
+
Input B: Anatomical model / architectural blueprint
|
|
1724
|
+
Goal: Half-eaten slice displayed like an architectural model with each layer labeled, showing structural engineering and material science of cooking.
|
|
1725
|
+
Rules:
|
|
1726
|
+
Dish cut in perfect cross-section, standing upright
|
|
1727
|
+
Acrylic rods with flags labeling each layer
|
|
1728
|
+
Only food relevant call outs and measurements
|
|
1729
|
+
Food relevant background
|
|
1730
|
+
Miniature construction workers on layers
|
|
1731
|
+
History of the meal visualized on a poster on the wall
|
|
1732
|
+
Cooking tips notes
|
|
1733
|
+
Material specifications (density, moisture content)
|
|
1734
|
+
Foundation layer with no label
|
|
1735
|
+
Include tiny food tools
|
|
1736
|
+
Technical drawing aesthetic with white and blue
|
|
1737
|
+
Output: ONE image, technical photography, clean industrial lighting, 4:5 ratio </instructions>","Gadgetify","https://x.com/Gdgtify/status/2012918907305427332"
|
|
1738
|
+
"48","Infographic / Edu Visual - Ultra-Realistic Exploded Pizza Infographic and Motion Prompt","","This prompt set is for generating ultra-realistic food photography, including a motion prompt for video generation (Kling AI) and two image prompts: one for a standard, high-detail pizza slice, and another for an exploded infographic view of the pizza layers.","Motion Prompt: The Pizza start to round spin while ingredients separate gently and precisely, maintaining alignment and scale. The motion is smooth, with no extra effects.
|
|
1739
|
+
|
|
1740
|
+
Image 1 :- Ultra-realistic prepared pepperoni pizza slice, fully assembled, gooey melted mozzarella cheese stretching and dripping over the edges, crispy pepperoni slices on top, rich tomato sauce beneath, thick golden baked crust, fresh basil leaves and light seasoning floating subtly above, clean pure white background, professional commercial food photography lighting, soft natural shadows under the slice, sharp focus, extreme texture detail, glossy cheese, crunchy crust surface, studio shot, minimal composition, no text, no labels, no hands, premium food advertisement style, 8K resolution, ultra-detailed, hyper-realistic.
|
|
1741
|
+
|
|
1742
|
+
Image 2 :- Produce an ultra-realistic exploded pizza slice infographic. Top layer features basil leaves and seasoning particles floating. Below are melted cheese stretch, pepperoni slices, rich tomato sauce layer, soft baked crust base. Clean white background, professional food photography lighting, realistic textures, gentle shadows, floating layers evenly spaced, labeled infographic style, 8K resolution.","𝐌","https://x.com/Strength04_X/status/2012909080785072329"
|
|
1743
|
+
"49","Infographic / Edu Visual - Minimal Flat Geometry Illustration Prompt","","A reusable prompt template for generating minimalist, modern editorial illustrations using simple geometric shapes, a limited color palette, and generous negative space, resulting in a high aesthetic minimalism.","Minimal flat illustration of {argument name=""subject"" default=""[SUBJECT]""}, simple geometric shapes, limited color palette, clean vector style, generous negative space, modern editorial illustration, soft shadows, smooth curves, high aesthetic minimalism.","Aleena Amir","https://x.com/aleenaamiir/status/2012889189298176327"
|
|
1744
|
+
"50","Infographic / Edu Visual - Culinary Science Diorama: The Chemistry of Chocolate","","A complex, structured prompt for generating a 'Culinary Science' diorama photograph, specifically illustrating the chemistry of a food item like chocolate or caramel. The scene features an L-shaped display box, a periodic table background with samples in Petri dishes, a 1:12 scale scientist figure, and massive 3D extruded letters made of the food itself, rendered in a 'Wes Anderson' symmetry.","do this for {argument name=""Food Item"" default=""caramel""} <instruction>
|
|
1745
|
+
|
|
1746
|
+
Input A is a Complex Food Item or Dish (e.g., Chocolate, Bread, Cheese, Coffee).
|
|
1747
|
+
Deconstruct the subject into 3 Scientific Layers :
|
|
1748
|
+
The States of Matter: Identify 4–5 stages of processing.
|
|
1749
|
+
(e.g., Cocoa Bean -> Nibs -> Liquor -> Powder. Wheat -> Flour -> Dough -> Crumb).
|
|
1750
|
+
The Texture Samples: Identify the physical properties to display as swatches.
|
|
1751
|
+
(e.g., Snap/Gloss for Chocolate. Porosity/Crust for Bread. Rind/Creaminess for Cheese).
|
|
1752
|
+
The Material: Identify the substance for the 3D text.
|
|
1753
|
+
(e.g., Molded Dark Chocolate, Baked Bread Crust, Hard Wax/Cheese).
|
|
1754
|
+
|
|
1755
|
+
2. Container:
|
|
1756
|
+
Goal: ""Culinary Science"" Diorama Photography.
|
|
1757
|
+
The Stage: An L-Shaped Display Box (Vertical Backboard + Horizontal Floor).
|
|
1758
|
+
The Finish: Clean, matte Cream or White plastic, resembling a high-end educational kit or museum exhibit.
|
|
1759
|
+
The Frame: A simple wooden or plastic border framing the scene.
|
|
1760
|
+
|
|
1761
|
+
3. Periodic Table background:
|
|
1762
|
+
The Grid: The vertical wall features a neat, symmetrical grid of circular Petri Dishes or Ceramic Bowls .
|
|
1763
|
+
The Contents: Each dish contains a sample of the ""States of Matter"" (Step 1).
|
|
1764
|
+
The Swatches: Below the dishes are square tiles displaying the ""Texture Samples"" (e.g., a square of perfectly tempered chocolate next to a bloomed one).
|
|
1765
|
+
The Labels: Tiny, legible scientific text (Serif font) printed directly on the wall under each sample.
|
|
1766
|
+
|
|
1767
|
+
4. The Floor (The Laboratory):
|
|
1768
|
+
The Narrative: A 1:12 scale Scientist or Chef figure (wearing a lab coat) stands at a central wooden workbench.
|
|
1769
|
+
Equipment: The desk is cluttered with a mix of Chemistry Glassware (Beakers, Flasks) and Culinary Tools (Whisks, Scales).
|
|
1770
|
+
The Experiment: The figure is actively testing or measuring the food product.
|
|
1771
|
+
|
|
1772
|
+
5. Typography :
|
|
1773
|
+
Placement: Massive, thick 3D Extruded Letters stand on the very front edge of the floor, acting as a barrier.
|
|
1774
|
+
Construction: The letters are made of the food itself (e.g., ""THE CHEMISTRY OF CHOCOLATE"" molded in dark chocolate).
|
|
1775
|
+
Text: ""THE CHEMISTRY OF {argument name=""Input A"" default=""CHOCOLATE""}"".
|
|
1776
|
+
|
|
1777
|
+
Output: ONE image, 1:1 Aspect Ratio, Studio Product Lighting, ""Wes Anderson"" Symmetry, Educational Aesthetic.
|
|
1778
|
+
</instruction>","Gadgetify","https://x.com/Gdgtify/status/2012873106348482898"
|
|
1779
|
+
"51","Infographic / Edu Visual - Whimsical 3D Miniature Dairy Advertising Illustration","","A detailed text prompt for Gemini Nano Banana Pro to generate a high-end 3D miniature diorama illustration for Nestlé, featuring tiny workers operating machinery around a giant milk bottle in a playful, premium food brand aesthetic, set against a charming farm landscape.","A whimsical, high-end 3D miniature diorama-style advertising illustration of a dairy production scene with a playful yet premium food brand aesthetic. At the center stands a giant Nestlé milk bottle matching real Nestlé packaging: a smooth opaque white cylindrical bottle with subtle curves and a classic red Nestlé logo label, solid and non-glass, placed directly on a metal industrial platform. Fresh milk is being poured from containers and pipes operated by workers into the open top of the bottle, with a creamy, elegant texture clearly visible inside; the milk does not come from the sky and has a clear physical source. Tiny workers in bright {argument name=""worker uniform color"" default=""yellow""} one-piece jumpsuits and yellow safety helmets actively operate the process: two stand on a metal scaffold above the bottle carefully pouring milk from handled containers, while others push cardboard boxes, guide products along a conveyor belt, and operate compact dairy machinery with coordinated, focused postures. In the foreground, dairy products move naturally along the conveyor line. Surrounding the platform is lush green grass with small white and yellow wildflowers. The background features a charming farm landscape with rolling green fields, a red wooden barn with white trim, a calm black-and-white cow grazing nearby, and a white windmill against gentle hills under a vivid blue sky with soft fluffy clouds. Lighting is warm, soft daylight with gentle shadows and refined highlights, creating a clean, trustworthy advertising look. Overall style is playful, richly detailed, premium commercial illustration with strong narrative composition, balanced layout, pastel color palette, deep depth of field, ultra-sharp details, cinematic miniature scale contrast—clearly an illustration, not photography, not a model display, and not enclosed in any glass dome or showcase.","Latte","https://x.com/0xbisc/status/2012828926633250902"
|
|
1780
|
+
"52","Infographic / Edu Visual - 2x2 Grid Product Invention Visualization (Patent/Marketing)","","A complex, multi-panel prompt designed to visualize the invention and marketing of a new product by combining two concepts (or evolving one). It mandates a 2x2 grid structure, with each quadrant requiring a distinct visual style: technical line art (Exploded Patent View), schematic diagram (Functional Diagram), photorealistic render (Product Render), and editorial layout (Marketing Pitch). The prompt acts as an industrial designer, focusing on cohesion between the panels and a minimalist, consumer electronics aesthetic.","Input Variable: {argument name=""input objects"" default=""[INSERT 1 or 2 OBJECTS]""}
|
|
1781
|
+
Instruction:
|
|
1782
|
+
Act as a Visionary Industrial Designer and Patent Clerk. Create a 2x2 Grid visualizing the invention of a new product based on the Input.
|
|
1783
|
+
Innovation Logic :
|
|
1784
|
+
Analyze Functions: Identify the primary utility of Input A and Input B.
|
|
1785
|
+
The Fusion: Combine them into a single, cohesive device that solves a specific (niche) problem.
|
|
1786
|
+
If 2 Inputs: Hybridize them (e.g., Mug + Grater = A self-cooling mug with a garnish shaver).
|
|
1787
|
+
If 1 Input: Evolve it (e.g., Toothbrush = A self-sanitizing, toothpaste-injecting smart wand).
|
|
1788
|
+
The Branding: Generate a catchy, corporate product name (e.g., ""The Breeze-Grate™"", ""Solar-Brella Pro"").
|
|
1789
|
+
The Visual Structure (The 2x2 Grid):
|
|
1790
|
+
CRITICAL: The image must be split into 4 distinct quadrants with different visual styles.
|
|
1791
|
+
Panel 1 (Top Left): The Exploded Patent View
|
|
1792
|
+
Style: Black & White Technical Line Art. Thin distinct lines, no shading.
|
|
1793
|
+
Content: An isometric ""Exploded View"" of the device, showing the internal motor, battery, or mechanism separated from the shell.
|
|
1794
|
+
Detail: Add Numbered Leader Lines (10, 12, 14) pointing to specific parts.
|
|
1795
|
+
Panel 2 (Top Right): The Functional Diagram
|
|
1796
|
+
Style: Black & White Schematic with bold arrows.
|
|
1797
|
+
Content: A cross-section or ""In-Use"" drawing showing how how the device works. Use Action Arrows to show airflow, rotation, or liquid movement.
|
|
1798
|
+
Detail: Show the ""Result"" (e.g., cheese falling, water spraying).
|
|
1799
|
+
Panel 3 (Bottom Left): The Product Render
|
|
1800
|
+
Style: High-End Studio Photography. Color, Glossy, ""Apple/Braun"" Design Aesthetic.
|
|
1801
|
+
Content: The final physical product sitting on a white reflective surface. It should look sleek, using materials like White Ceramic, Brushed Aluminum, or Matte Plastic.
|
|
1802
|
+
Context: Include a small prop to show scale (e.g., a block of cheese, a coffee bean, a hand).
|
|
1803
|
+
Panel 4 (Bottom Right): The Marketing Pitch
|
|
1804
|
+
Style: Editorial Magazine Layout. White background, black text.
|
|
1805
|
+
Typography:
|
|
1806
|
+
Headline: Large, Bold Serif Text displaying the [Invention Name].
|
|
1807
|
+
Body: A block of clean ""Lorem Ipsum"" or readable text describing the ""Revolutionary Features.""
|
|
1808
|
+
Bullets: A small list of specs (e.g., ""Dishwasher Safe,"" ""USB-C"").
|
|
1809
|
+
Visual Syntax:
|
|
1810
|
+
Cohesion: The product design in Panel 3 must perfectly match the line art in Panel 1.
|
|
1811
|
+
Design Language: Minimalist, Ergonomic, Consumer Electronics aesthetic. Even if the idea is silly, the design must look expensive.
|
|
1812
|
+
Output: 2x2 Grid, Mixed Media (Line Art vs. Photorealism), 8k Resolution, ""Kickstarter Campaign"" Aesthetic.","Gadgetify","https://x.com/Gdgtify/status/2012487062180549031"
|
|
1813
|
+
"53","Infographic / Edu Visual - Artisan Craft Process Board for Handmade Objects","","A structured prompt template for generating an artisan's method board, designed to visually document the creation process of a handmade object. It divides the visual into three sections: raw materials, the making process (with hands and tools visible), and the finished object in context, emphasizing a transition in visual style from earth tones to warm workshop light and natural light.","An artisan's method board for [{argument name=""handmade object"" default=""HANDMADE OBJECT""}] — [{argument name=""technique"" default=""TECHNIQUE / TRADITION / ORIGIN""}]. Left section: raw materials in unprocessed state, sourced and labeled, the transformation yet to begin. Center section: the making documented in sequential stages, hands visible throughout, tools identified, key decision points annotated, time invested at each phase noted. Right section: the finished object in use context, bearing the maker's mark, fulfilling its purpose, the hours invisible but embedded. Visual style transitions from raw material earth tones through workshop warmth to lifestyle context with natural light. Title block reading ""[{argument name=""object name"" default=""OBJECT NAME""}] — HANDMADE BY [MAKER], [LOCATION], [HOURS] HOURS"".","Alexandra Aisling","https://x.com/AllaAisling/status/2012197160276660362"
|
|
1814
|
+
"54","Infographic / Edu Visual - 3D Isometric Miniature Models of Western TV Characters","","A prompt for generating stylized and detailed ultra-high-fidelity 3D isometric miniature models of core characters from an American Western TV series. The models are placed on city streets against a pure white background, showcasing different signature moves under soft studio lighting.","Stylized and incredibly detailed ultra-high-fidelity 3D isometric miniature models showcase the core characters of the {argument name=""TV series genre"" default=""American Western""} TV series. Each character displays a different signature move, while soft studio lighting creates stunning light and shadow effects. The highly detailed 3D models are placed on {argument name=""setting"" default=""city streets""} against a pure white background.","Favori","https://x.com/yuanguand/status/2012154187669545207"
|
|
1815
|
+
"55","Infographic / Edu Visual - Exploded-View Structural Cutaway for Food Photography","","A prompt designed to transform a base food photograph into a clean, labeled, exploded-view structural cutaway diagram. This is intended for creating infographic-style images where ingredients are separated vertically while maintaining perfect alignment and scale on a white studio background.","Using the first image as the base, create a clean exploded-view structural cutaway. Separate each ingredient vertically one by one, keep perfect alignment, spacing, and scale. White studio background, labeled diagram style, ultra sharp, realistic.","Parul Gautam","https://x.com/Parul_Gautam7/status/2012151021850747377"
|
|
1816
|
+
"56","Infographic / Edu Visual - Minimalist 3D Isometric Architectural Diorama","","A template prompt for generating a clean, minimal 3D isometric diorama of a building section. The prompt allows customization of the building type, interior/exterior elements, and cutaway style, aiming for a miniature architectural model aesthetic with soft studio lighting and realistic materials.","A clean, minimal 3D isometric diorama of a [{argument name=""building type"" default=""BUILDING TYPE""}] section, featuring [{argument name=""elements"" default=""INTERIOR / EXTERIOR ELEMENTS""}] visible in a [{argument name=""style"" default=""CUTAWAY / OPEN STYLE""}], simple [STRUCTURAL FRAME], subtle [INFORMATIONAL SIGNAGE], smooth [MATERIAL FINISH], soft studio lighting, realistic materials, rounded edges, miniature architectural model style, high detail, neutral background.","Aleena Amir","https://x.com/aleenaamiir/status/2012072821439283400"
|
|
1817
|
+
"57","Infographic / Edu Visual - High-Fashion Zootopia Miniature Visualization","","A complex prompt for generating a 3D miniature visualization of Zootopia, showcasing seven artistic stages from bustling streets to underground tunnels. The visualization is designed like an expensive city hall setting with high-fashion editorial ambiance, strong chiaroscuro lighting, and detailed elements like tasting notes designed as precious gems, shot with a Hasselblad camera for extreme shallow depth of field.","A 3D miniature Zootopia visualization, no human model, showcasing seven artistic miniature stages: bustling Zootopia streets kissed by sunrise, tiny animal citizens harvesting carrots, dimly lit underground tunnels with precise rows of produce crates, intimate city cafe gatherings, ethereal misty morning savanna ambiance. Each tier displays district name, population percentage, and Zootopia Gazette tasting notes designed like precious gems. Backdrop evokes an expensive city hall setting, utilizing strong chiaroscuro lighting to create a high-fashion editorial ambiance. Shot with Hasselblad H6D-100c, 100mm f/2.2, extremely shallow depth of field with exquisite bokeh. Holographic displays of carrot cake pairing suggestions drift subtly, featuring artisanal cheese pairings for whites, intense dark chocolate for reds. The color story shifts from deep earth tones and jewel tones for full-bodied wines to icy greens, silvery golds, and champagne hues for crisp varietals.","Willy","https://x.com/jw660227/status/2012009858032419083"
|
|
1818
|
+
"58","YouTube Thumbnail - Master Prompt for NBA Finals Arena Promos","","A user-developed 'Master Prompt' for the Nano Banana PRO model, designed to create elite-tier, highly realistic NBA arena promotional images that capture the electric pre-game energy of any franchise, going beyond simple logo placement.","Master Prompt"" using the Nano Banana PRO model that creates elite-tier arena promos.
|
|
1819
|
+
It doesn't just put a logo on a court; it captures the electric pre-game energy of any franchise.","PSS","https://x.com/PromptSin/status/2013325472831078636"
|
|
1820
|
+
"59","YouTube Thumbnail - Talk-Show Style Celebrity Interview Photo","","A detailed prompt for generating an ultra-realistic, cinematic talk-show style photo featuring a host and a specified celebrity. It focuses on precise composition, lighting, and facial accuracy to achieve a premium 'Netflix documentary interview' aesthetic.","Create an ultra-realistic cinematic shot of both individuals seated in a modern studio lounge setup, angled slightly toward each other.
|
|
1821
|
+
The host (use the attached face reference) is interviewing {argument name=""celebrity name"" default=""[Celebrity Name]""} in a warm, soft-glow studio lit with overhead spotlights.
|
|
1822
|
+
Place them on a cozy couch setup with a low coffee table between them—no podcast mics in frame, just natural conversation energy.
|
|
1823
|
+
Maintain 100% facial accuracy, lifelike skin texture, and crisp depth of field. Use 8K resolution, 9:16 format, and give it a premium “Netflix documentary interview” aesthetic with shallow focus and rich shadows.","Poonam Soni","https://x.com/CodeByPoonam/status/2013193139948073205"
|
|
1824
|
+
"60","YouTube Thumbnail - Ana de Armas Red Carpet Portrait Prompts (Yellow and Red Dress)","","Two highly detailed JSON prompts for generating ultra-realistic, 8K resolution portraits of Ana de Armas on a red carpet. The prompts specify celebrity identity, pose, intricate couture outfit details (yellow or red minidress with black geometric patterns), cinematic lighting (soft professional flash), and technical camera settings (85mm lens, f/1.8 aperture, bokeh background), along with a comprehensive negative prompt list.","{
|
|
1825
|
+
""image_prompt"": {
|
|
1826
|
+
""subject"": {
|
|
1827
|
+
""name"": ""{argument name=""celebrity name"" default=""Ana de Armas""}"",
|
|
1828
|
+
""description"": ""young woman with shoulder-length layered blonde ponytail hair, soft waves, blue eyes, soft natural makeup with nude pink lipstick, glowing skin complexion, pearl necklace"",
|
|
1829
|
+
""pose"": ""looking directly at camera, slight smile, confident red carpet stance, head and shoulders portrait"",
|
|
1830
|
+
},
|
|
1831
|
+
""outfit"": {
|
|
1832
|
+
""item"": ""{argument name=""outfit color"" default=""Yellow""} dress"",
|
|
1833
|
+
""details"": ""black beaded geometric web pattern over nude sheer illusion fabric, sweetheart neckline, intricate black sequin embroidery, sleeveless, structured fit"",
|
|
1834
|
+
""style"": ""glamorous, high fashion, couture""
|
|
1835
|
+
},
|
|
1836
|
+
""environment"": {
|
|
1837
|
+
""setting"": ""movie premiere red carpet event"",
|
|
1838
|
+
""background"": ""dark blurred media wall with unrecognizable white and red logos, professional event backdrop"",
|
|
1839
|
+
""atmosphere"": ""exclusive, cinematic, celebrity sighting""
|
|
1840
|
+
},
|
|
1841
|
+
""technical_specs"": {
|
|
1842
|
+
""lighting"": ""soft professional flash photography, rim lighting on hair, even facial illumination, no harsh shadows"",
|
|
1843
|
+
""camera"": ""85mm lens, f/1.8 aperture, sharp focus on eyes, bokeh background"",
|
|
1844
|
+
""quality"": ""8k resolution, ultra-realistic, highly detailed texture, raw photo, photorealism, masterpiece"",
|
|
1845
|
+
""aspect_ratio"": ""9:16""
|
|
1846
|
+
}
|
|
1847
|
+
},
|
|
1848
|
+
""negative_prompt"": ""cartoon, illustration, painting, drawing, bad anatomy, blurry, low quality, distorted eyes, text, watermark, logo, oversaturated, messy hair, wrong face"",
|
|
1849
|
+
""parameters"": {
|
|
1850
|
+
""size"": ""highest_resolution"",
|
|
1851
|
+
""orientation"": ""vertical"",
|
|
1852
|
+
""style_preset"": ""photographic"" Ratio 3.4
|
|
1853
|
+
}
|
|
1854
|
+
|
|
1855
|
+
{
|
|
1856
|
+
""image_prompt"": {
|
|
1857
|
+
""subject"": {
|
|
1858
|
+
""name"": ""Ana de Armas"",
|
|
1859
|
+
""description"": ""young woman with shoulder-length layered long black, soft waves, blue eyes, soft natural makeup with nude pink lipstick, glowing skin complexion, pearl necklace"",
|
|
1860
|
+
""pose"": ""looking directly at camera, slight smile, confident red carpet stance, full body"",
|
|
1861
|
+
},
|
|
1862
|
+
""outfit"": {
|
|
1863
|
+
""item"": ""Red minidress"",
|
|
1864
|
+
""details"": ""black beaded geometric web pattern over nude sheer illusion fabric, sweetheart neckline, intricate black sequin embroidery, sleeveless, structured fit, red high heels sandals"",
|
|
1865
|
+
""style"": ""glamorous, high fashion, couture""
|
|
1866
|
+
},
|
|
1867
|
+
""environment"": {
|
|
1868
|
+
""setting"": ""movie premiere red carpet event"",
|
|
1869
|
+
""background"": ""cremisi blurred media wall with unrecognizable white and red logos, professional event backdrop"",
|
|
1870
|
+
""atmosphere"": ""exclusive, cinematic, celebrity sighting""
|
|
1871
|
+
},
|
|
1872
|
+
""technical_specs"": {
|
|
1873
|
+
""lighting"": ""soft professional flash photography, rim lighting on hair, even facial illumination, no harsh shadows"",
|
|
1874
|
+
""camera"": ""85mm lens, f/1.8 aperture, sharp focus on eyes, bokeh background"",
|
|
1875
|
+
""quality"": ""8k resolution, ultra-realistic, highly detailed texture, raw photo, photorealism, masterpiece"",
|
|
1876
|
+
""aspect_ratio"": ""9:16""","Artificial intelligence (Ai),Open Ai","https://x.com/Vishnudxe/status/2013146529314545854"
|
|
1877
|
+
"61","YouTube Thumbnail - Dan-Style Cover Image Prompt","","A prompt designed to create cover images in the style of 'Dan' (likely a popular creator or style), shared for use with Youmind, which integrates Nano Banana Pro, allowing users to create visually striking cover art.","A highly detailed, professional, and visually striking cover image for a blog post about {argument name=""topic"" default=""AI tools""}. The image should feature a clean, modern design with bold typography and a minimalist color palette, emphasizing {argument name=""visual focus"" default=""technology and innovation""}. Use dramatic, high-contrast lighting and a shallow depth of field to draw attention to the central subject. The style should be photorealistic and cinematic, similar to high-end tech editorial photography. Aspect ratio 16:9.","日拱一卒王小楼","https://x.com/wang_xiaolou/status/2013076983018881159"
|
|
1878
|
+
"62","YouTube Thumbnail - Image Conversion to Berserker Style","","A prompt used with Nano Banana Pro to convert an existing image into a 'Berserker' style. The prompt describes a fierce warrior, a red flash speeding across the battlefield, wielding an axe that cuts through everything. This is an image-to-image conversion prompt.","A red flash speeding across the battlefield! ⚡️
|
|
1879
|
+
That axe cuts through everything...!","ちゃろん","https://x.com/charon_artist/status/2012872607138488815"
|
|
1880
|
+
"63","YouTube Thumbnail - Image Conversion to Berry Tart Dress Style","","A prompt used with Nano Banana Pro to convert an existing image into a 'Berry Tart' style. The prompt describes a gorgeous dress covered in lots of strawberries, suggesting a sweet and sour love flavor. This is an image-to-image conversion prompt.","The taste of sweet and sour love? 💕
|
|
1881
|
+
The dress full of strawberries is gorgeous! ✨","ちゃろん","https://x.com/charon_artist/status/2012812209337041345"
|
|
1882
|
+
"64","YouTube Thumbnail - Nano Banana Pro Prompt for X Article Header Image Generation","","A comprehensive prompt template for Nano Banana Pro designed to generate visually appealing header images for X (Twitter) articles or blog posts. It instructs the AI to use reference images effectively, avoid duplication, and incorporate the article title and optional subtitle/dialogue, while specifying a 5:2 aspect ratio and 4K quality.","Please create a visually appealing header image for a blog post by arranging the reference images well.
|
|
1883
|
+
However, use each image only once.
|
|
1884
|
+
Do not duplicate.
|
|
1885
|
+
Ensure the elements in the reference images do not blend together.
|
|
1886
|
+
There should be a slight margin above and below the image.
|
|
1887
|
+
Be creative with the background.
|
|
1888
|
+
The title may be overlaid on the image.
|
|
1889
|
+
5:2 4K quality
|
|
1890
|
+
Title: {argument name=""title"" default=""[Enter article title]""}","てんねん","https://x.com/munou_ac/status/2012407033665064985"
|
|
1891
|
+
"65","YouTube Thumbnail - Cricketer Composite Portrait and Stats Graphic","","A prompt for generating a dynamic composite portrait of an Indian cricketer (Shreyas Iyer) in his Royal Challengers Bangalore jersey. The composition includes a large close-up portrait, a smaller action shot (celebration), and a third inset (batting), all set against a bold red background with a golden lion emblem. The prompt also requires the inclusion of specific IPL 2025 statistics via typography.","A dynamic composite portrait of Indian cricketer {argument name=""cricketer name"" default=""you neme""} in his Royal Challengers Bangalore jersey, set against a bold red background with a stylized golden lion emblem. The composition features a large, close-up portrait of Iyer in the foreground, looking directly at the viewer with a serious expression, short dark hair, and a trimmed beard. Behind him, a smaller, action-oriented image shows him mid-celebration, mouth open in triumph, wearing the same red jersey with ""DREAM11"" and ""KINGS"" logos. A third, smaller inset depicts him batting in full gear, mid-swing. He wears a red long-sleeved jersey with gold accents, blue pants, and cricket pads. The lighting is dramatic and studio-like, highlighting his features and the vibrant red of his uniform. The background is a deep red with a glowing golden lion logo, evoking team identity. Text elements on the left display his IPL 2025 stats: {argument name=""innings"" default=""13""} innings, {argument name=""runs"" default=""604""} runs, 50.33 average, 175.07 strike rate, and 6 fifties. The overall style is a high-impact sports graphic, combining realistic photography with bold typography and graphic design elements.","हम हिन्दुस्तानी ♥️","https://x.com/AiVIRALFUN/status/2012250609567826431"
|
|
1892
|
+
"66","YouTube Thumbnail - Extreme Closeup of Sophie Turner as Lara Croft","","A highly detailed prompt for an extreme cinematic closeup portrait of Sophie Turner as Lara Croft. It focuses on visceral textures like sweat, mud, and grit on her skin, high-contrast lighting to emphasize facial contours, and technical details like an 85mm macro lens for razor-sharp focus on her fierce expression.","Extreme closeup portrait of {argument name=""subject"" default=""Sophie Turner""} as {argument name=""character"" default=""Lara Croft""}, framed in a 9:16 vertical aspect ratio, focusing intensely on her face, jawline, and neck. She is captured in a moment of pause, one hand raised to her face as she delicately holds the frame of her signature round, red-tinted sunglasses. Her skin is rendered with hyper-realistic detail, featuring visible pores and a fine sheen of perspiration; large, glistening beads of sweat trickle down her forehead and the length of her neck. Smudges of dark, gritty mud and dried dirt are artfully smeared across her cheekbones and collarbone.
|
|
1893
|
+
The lighting is high-contrast and cinematic, with a sharp key light hitting the side of her face to emphasize the moisture on her skin and the sharp contours of her facial structure, while a subtle rim light separates her from the dark, atmospheric background. Her eyes are sharp and focused, looking directly past the lens with a fierce, weathered expression. The textures are visceral: the polished metal and red glass of the spectacles, the damp strands of her dark hair pulled back, and the rugged, ribbed fabric of her teal tank top visible at the bottom of the frame alongside the distressed brown leather of her tactical shoulder harness. Shot with an 85mm macro lens, f/2.8, creating a shallow depth of field that keeps the focus razor-sharp on her facial features and the grit of the dirt while softly blurring the background.","QuestGlitch","https://x.com/AIRevSpot/status/2012223926244614153"
|
|
1894
|
+
"67","YouTube Thumbnail - YouTube Thumbnail: Trump vs. Chatham House Reaction","","A prompt for generating a high-impact YouTube thumbnail image with a specific visual structure: a triumphant Trump cutout on the right and a shocked corporate figure (Chatham House head) on the left, overlaid with the text 'THEY CONFESSED'. This is a political/news-style graphic prompt.","High impact youtube thumbnail. Visual Structure: Right Side: A large, well-lit cutout of {argument name=""figure 1"" default=""Trump smiling smugly or looking triumphant with a \""thumbs up\"" and a confident smirk""}. He should be facing slightly left. Left Side/Background: A dark, moody photo of the person [photo attached] who has a shocked expression on her face, reacting to Trump. She in a dark corporate boardroom with the Chatham House Logo. The Text (Top Center, Bright Yellow): ""{argument name=""headline"" default=""THEY CONFESSED""}""","Adam Sturman","https://x.com/adamsturman23/status/2011563498183053690"
|
|
1895
|
+
"68","YouTube Thumbnail - Weekly Schedule Template for VTubers","","A detailed prompt designed for Nano Banana Pro to create a clean, flat, and cute pastel-toned weekly schedule template suitable for VTubers and streamers. It includes specific layout instructions, size specifications (1920x1080, 16:9), and strict rules about text inclusion and empty space for later character synthesis.","Create a ""Weekly Schedule"" template image for VTubers and streamers.
|
|
1896
|
+
Horizontal 16:9, size 1920x1080, flat, neat, print-like design (vector style). The overall look should be cute pastel tones (gentle colors like pale pink, mint, lavender), prioritizing readability without clutter.
|
|
1897
|
+
|
|
1898
|
+
Layout specification:
|
|
1899
|
+
・Place the schedule section top-aligned on the left 60% of the screen.
|
|
1900
|
+
・7 rows (Days of the week: ""Mon, Tue, Wed, Thu, Fri, Sat, Sun"").
|
|
1901
|
+
・Each row consists of a ""Day label (small round badge)"" + ""Horizontal blank box for writing plans.""
|
|
1902
|
+
・The blank box must be completely empty. Absolutely do not include sample text (e.g., 'Plan here', 'SAMPLE', 'MEMO', etc.).
|
|
1903
|
+
・The right 40% of the screen is empty space for later synthesis of a standing character image. Do not draw people, animals, mascots, or silhouettes. The background should only be a faint gradient and subtle abstract patterns of small stars/hearts/dots.
|
|
1904
|
+
|
|
1905
|
+
Text specification:
|
|
1906
|
+
・The only text to include is ""Weekly Schedule"" and ""Mon Tue Wed Thu Fri Sat Sun"" (in Japanese).
|
|
1907
|
+
・Do not include any other text (SNS, date range, warnings, logos, hashtags, watermarks).
|
|
1908
|
+
・The font should be rounded Gothic style, easy to read, and legible even on a white background.
|
|
1909
|
+
|
|
1910
|
+
Finishing:
|
|
1911
|
+
・Ensure ample margin around the perimeter, and elements on the left and right sides do not overlap.
|
|
1912
|
+
・No logo.","ひいらぎまる","https://x.com/hiiragimaruru/status/2011264976816918697"
|
|
1913
|
+
"69","YouTube Thumbnail - Pop-Up Book Diorama Generator Prompt","","A complex, multi-step system instruction prompt designed to generate a hyper-realistic, macro-photography shot of a Pop-Up Book Diorama based on a given movie or book title. It instructs the AI to act as a Master Prop Maker and analyze the title to determine biome, conflict, vessel, and materiality, and then construct a detailed miniature action scene within the book's pages.","Do it for Terminator: {argument name=""title"" default=""Moby Dick""}
|
|
1914
|
+
|
|
1915
|
+
System Instruction:
|
|
1916
|
+
Act as a Master Prop Maker. Generate a hyper-realistic, macro-photography shot of a ""Pop-Up Book Diorama.""
|
|
1917
|
+
1. Forensic Analysis:
|
|
1918
|
+
Analyze the Input Title to determine the visual components:
|
|
1919
|
+
The Biome: Identify the primary setting (e.g., Ocean, Jungle, Space, Desert).
|
|
1920
|
+
The Conflict: Identify the Antagonist or Monster (e.g., The White Whale, T-Rex, Darth Vader).
|
|
1921
|
+
The Vessel/Hero: Identify the main vehicle or protagonist (e.g., The Pequod, The Jeep, The Millennium Falcon).
|
|
1922
|
+
The Materiality: Identify the texture of the world (e.g., Wood & Water; Amber & Leaf; Metal & Stars).
|
|
1923
|
+
2. Container (The Open Book):
|
|
1924
|
+
The Object: A massive, vintage, leather-bound hardcover book lying flat on a wooden desk.
|
|
1925
|
+
The Transformation: The book is open to the middle. The pages do not just lie flat; they physically mutate into the ""Biome"" identified in Step 1.
|
|
1926
|
+
Example: If Ocean, the pages turn into turbulent resin waves. If Desert, they turn into dunes.
|
|
1927
|
+
3. Typography (The Floating Title):
|
|
1928
|
+
The Text: The [Title of the Input] rises out of the landscape as massive, 3D block letters.
|
|
1929
|
+
Integration: The letters must interact with the environment.
|
|
1930
|
+
Texture: The letters are made of materials from the story (e.g., Driftwood, Stone, Bone).
|
|
1931
|
+
Placement: The waves crash over the letters; vines wrap around the letters.
|
|
1932
|
+
4. The Action Scene :
|
|
1933
|
+
CRITICAL: Construct a specific scene using miniature models on top of the book.
|
|
1934
|
+
The Threat: Place the ""Antagonist"" looming large in the background (e.g., The Whale breaching behind the text).
|
|
1935
|
+
The Hero: Place the ""Vessel"" or ""Protagonist"" navigating the terrain in the foreground (e.g., A tiny ship rocking on the waves).
|
|
1936
|
+
Scale: The scene must look like a high-end model kit (1:87 scale).
|
|
1937
|
+
5. Lighting & Atmosphere:
|
|
1938
|
+
The Lamp: A vintage brass desk lamp is visible in the corner, casting a warm, directional ""reading light"" onto the scene.
|
|
1939
|
+
Atmosphere: Magical realism. The water should glisten; the fog should swirl.
|
|
1940
|
+
Depth: Shallow depth of field to blur the edge of the desk, keeping focus on the book.
|
|
1941
|
+
Output: ONE image, 16:9 Aspect Ratio, Cinematic Miniature Photography, 8k Resolution.","Gadgetify","https://x.com/Gdgtify/status/2011090875447984276"
|
|
1942
|
+
"70","YouTube Thumbnail - Cinematic Portrait of Indian Astronaut in ISRO Spacesuit","","A prompt for creating an ultra-realistic 8K cinematic portrait of an astronaut inside an Indian spacecraft, looking at Earth with the Indian subcontinent visible. The prompt specifies the ISRO spacesuit, lighting from Earth, and emphasizes preserving the subject's exact facial features.","Create an ultra-realistic 8K cinematic portrait of an astronaut inside an Indian spacecraft, looking out of the circular window at the Earth below, with the Indian subcontinent clearly visible. wearing a modern white and saffron ISRO spacesuit with the Indian flag emblem on the shoulder.
|
|
1943
|
+
Expression is one of awe and quiet pride. The soft blue light from the Earth illuminates the face, while the complex buttons and screens of the cockpit glow faintly in the background. The mood is patriotic, futuristic, and deeply inspiring.Keep face and features exactly the same.","simeon-sanai","https://x.com/Naiknelofar788/status/2011042457748922442"
|
|
1944
|
+
"71","YouTube Thumbnail - Monk Delivering Life Advice Video Still Prompt","","A structured prompt for generating a realistic 4K video still of an elderly Buddhist monk delivering life advice in a traditional East Asian temple courtyard. The prompt specifies the monk's appearance, clothing, objects (scripture, candle), and camera settings (iPhone 17 Pro, vertical 9:16) to mimic a viral social media video aesthetic.","{
|
|
1945
|
+
""scene_type"": ""spiritual_teaching_courtyard"",
|
|
1946
|
+
""setting"": {
|
|
1947
|
+
""location"": ""outdoor Buddhist temple courtyard"",
|
|
1948
|
+
""background"": {
|
|
1949
|
+
""architecture"": ""traditional East Asian temple with intricate wood carvings, red pillars, and curved roof tiles"",
|
|
1950
|
+
""nature"": ""lush green trees to the left"",
|
|
1951
|
+
""ground"": ""grey stone pavement"",
|
|
1952
|
+
""weather"": ""overcast to soft natural daylight""
|
|
1953
|
+
}
|
|
1954
|
+
},
|
|
1955
|
+
""subject"": {
|
|
1956
|
+
""type"": ""elderly_monk"",
|
|
1957
|
+
""position"": ""seated cross-legged on the ground"",
|
|
1958
|
+
""pose"": ""sitting behind a low table, speaking directly to camera"",
|
|
1959
|
+
""expression"": ""earnest, wise, and instructional"",
|
|
1960
|
+
""appearance"": {
|
|
1961
|
+
""hair"": {
|
|
1962
|
+
""style"": ""shaved/bald"",
|
|
1963
|
+
""color"": ""none""
|
|
1964
|
+
},
|
|
1965
|
+
""skin_features"": ""aged skin with deep wrinkles"",
|
|
1966
|
+
""eye_color"": ""dark""
|
|
1967
|
+
},
|
|
1968
|
+
""clothing"": {
|
|
1969
|
+
""top"": ""light grey inner robe with saffron yellow outer robe draped over shoulder"",
|
|
1970
|
+
""bottom"": ""saffron yellow robe fabric covering legs""
|
|
1971
|
+
},
|
|
1972
|
+
""accessories"": []
|
|
1973
|
+
},
|
|
1974
|
+
""objects"": [
|
|
1975
|
+
{
|
|
1976
|
+
""type"": ""furniture"",
|
|
1977
|
+
""name"": ""low wooden table"",
|
|
1978
|
+
""material"": ""light wood"",
|
|
1979
|
+
""position"": ""foreground in front of monk""
|
|
1980
|
+
},
|
|
1981
|
+
{
|
|
1982
|
+
""type"": ""book"",
|
|
1983
|
+
""name"": ""large open scripture"",
|
|
1984
|
+
""state"": ""open with visible text columns"",
|
|
1985
|
+
""position"": ""on wooden table""
|
|
1986
|
+
},
|
|
1987
|
+
{
|
|
1988
|
+
""type"": ""light_source"",
|
|
1989
|
+
""name"": ""candle"",
|
|
1990
|
+
""color"": ""white wax"",
|
|
1991
|
+
""state"": ""lit with small yellow flame"",
|
|
1992
|
+
""position"": ""on table next to book""
|
|
1993
|
+
}
|
|
1994
|
+
],
|
|
1995
|
+
""camera"": {
|
|
1996
|
+
""device"": ""iPhone 17 Pro"",
|
|
1997
|
+
""angle"": ""eye-level"",
|
|
1998
|
+
""framing"": ""medium shot"",
|
|
1999
|
+
""orientation"": ""portrait vertical 9:16"",
|
|
2000
|
+
""quality"": ""4k video still, high definition, sharp focus""
|
|
2001
|
+
},
|
|
2002
|
+
""mood"": ""serene, philosophical, didactic"",
|
|
2003
|
+
""lighting"": ""soft, diffuse natural daylight"",
|
|
2004
|
+
""image_style"": ""viral social media video, realistic"",
|
|
2005
|
+
""activity"": ""monk delivering life advice""
|
|
2006
|
+
}","Lore","https://x.com/l_w_lorenzen/status/2010622716475482593"
|
|
2007
|
+
"72","YouTube Thumbnail - Thumbnail Generation Prompt for Sales Content (Brain/Tips/Note)","","A structured system prompt designed to be used with Nano Banana Pro to generate high-quality, 'sellable' eye-catching thumbnails for online content platforms like Brain, Tips, and Note. The prompt defines the role as a professional graphic designer and provides a detailed design style guide, including layout, color scheme, typography, and required input fields for customization.","# Role
|
|
2008
|
+
|
|
2009
|
+
You are a professional graphic designer who creates ""sellable"" eye-catching images for Brain, Tips, and note.
|
|
2010
|
+
|
|
2011
|
+
# Task
|
|
2012
|
+
|
|
2013
|
+
Use the [Title] and [Sub-Catchphrase] below to create a high-quality thumbnail that is highly visible and conveys authority and expectation.
|
|
2014
|
+
|
|
2015
|
+
# Design Style
|
|
2016
|
+
|
|
2017
|
+
- Composition: Based on the layout of the attached image.
|
|
2018
|
+
|
|
2019
|
+
1. [Top]: Place a black, rounded-corner band (badge) in the upper left and write the [Achievement/Urgency Word] there.
|
|
2020
|
+
|
|
2021
|
+
2. [Upper Center]: Place the [Sub-Catchphrase] in bold white text (with orange or yellow borders).
|
|
2022
|
+
|
|
2023
|
+
3. [Center]: Place the main [Title] as huge, bold text spanning the screen. The text color should be the most prominent color that contrasts with the background, such as a ""yellow-to-white gradient"" or ""neon glow,"" with multiple borders and a drop shadow for three-dimensionality.
|
|
2024
|
+
|
|
2025
|
+
4. [Bottom]: Place two ""Benefit Boxes"" (rectangles) on the left and right. Place a ribbon or badge labeled ""Benefit 01"" and ""Benefit 02"" above each. Write the [Benefit Content] inside the boxes.
|
|
2026
|
+
|
|
2027
|
+
5. [Decoration]: Place a cute or intellectual character (person or animal) related to the theme at either the left or right edge of the screen.
|
|
2028
|
+
|
|
2029
|
+
- Color Scheme: High saturation and energetic coloring based on the [Desired Main Color].
|
|
2030
|
+
- Background: A graphical background with depth, not a solid color, scattered with icons related to the theme (e.g., SNS, money, graphs).
|
|
2031
|
+
|
|
2032
|
+
# Input Data
|
|
2033
|
+
|
|
2034
|
+
- 【Main Color】: {argument name=""main color"" default=""Blue system""}
|
|
2035
|
+
- 【Achievement/Urgency Word】: {argument name=""achievement/urgency word"" default=""Achieved 100k in 5 days of entry!""}
|
|
2036
|
+
- 【Sub-Catchphrase】: {argument name=""sub-catchphrase"" default=""No product creation! OK without achievements! In as little as 1 month""}
|
|
2037
|
+
- 【Title】: {argument name=""title"" default=""Threads × Affiliate Strategy Course""}
|
|
2038
|
+
- 【Benefit 01 Content】: {argument name=""benefit 01 content"" default=""10 days of actual selling posts""}
|
|
2039
|
+
- 【Benefit 02 Content】: {argument name=""benefit 02 content"" default=""Includes AI automatic generation tool""}
|
|
2040
|
+
|
|
2041
|
+
# Constraints
|
|
2042
|
+
|
|
2043
|
+
- Accurately depict Japanese text.
|
|
2044
|
+
- Use a thick, powerful Gothic or design font.
|
|
2045
|
+
- Output in a 16:9 aspect ratio.
|
|
2046
|
+
__________________________","まみや@AIで1.7億","https://x.com/akihitomamiya/status/2010592584083849622"
|
|
2047
|
+
"73","YouTube Thumbnail - Premium Esports Gamer Portrait Prompt","","A detailed image generation prompt designed to create a high-end, cinematic portrait of an esports gamer. It emphasizes dramatic lighting, a red-orange gradient background, ultra-detailed gear, and a sleek, modern aesthetic, aiming for a look trending on platforms like Behance.","Esports gamer, premium style portrait, fiery glow lighting, {argument name=""background color"" default=""red-orange""} gradient background, minimal or no patterns, dramatic lighting, high-end aesthetic, ultra-detailed face and gear, professional gaming headset, cinematic tone, sharp contrast, sleek and modern look, energetic pose, intense focus, dynamic depth, smooth glossy elements, trending on Behance, studio-quality render, 8K resolution","Harboriis","https://x.com/harboriis/status/2010229212053913910"
|
|
2048
|
+
"74","YouTube Thumbnail - Text Correction and Replacement Prompt","","A simple prompt for Nano Banana Pro used to correct garbled text (mojibake) in an existing image. It instructs the AI to use the existing image and replace the incorrect text with specific Japanese phrases at designated locations (top left, bottom left, top right, bottom right).","Use the image as is and fix the garbled text. Top left: ""{argument name=""Top Left Text"" default=""I got a cute hairstyle today!""}"" Bottom left: ""{argument name=""Bottom Left Text"" default=""Haruka Sakagawa's Day""}"" Top right: ""{argument name=""Top Right Text"" default=""Mahopyon requested this""}"" Bottom right: ""{argument name=""Bottom Right Text"" default=""Today's lucky color is pink""}""","ロホ","https://x.com/rojorojo46/status/2009768492678139979"
|
|
2049
|
+
"75","Comic / Storyboard - 3x3 Product Storyboard Grid for Branding Portfolio","","A complex, multi-frame prompt designed to transform a single reference image into a cohesive 3x3 storyboard grid for a high-end branding portfolio. It mandates strict adherence to the reference product's identity across all nine panels, each depicting the product from a different angle, context, or close-up, focusing on design, materiality, and visual rhythm.","Create ONE final image.
|
|
2050
|
+
|
|
2051
|
+
A clean 3×3 [ratio] storyboard grid with nine equal [ratio] sized panels on [4:5] ratio.
|
|
2052
|
+
|
|
2053
|
+
Use the reference image as the base product reference. Keep the same product, packaging design, branding, materials, colors, proportions and overall identity across all nine panels exactly as the reference. The product must remain clearly recognizable in every frame. The label, logo and proportions must stay exactly the same.
|
|
2054
|
+
|
|
2055
|
+
This storyboard is a high-end designer mockup presentation for a branding portfolio. The focus is on form, composition, materiality and visual rhythm rather than realism or lifestyle narrative. The overall look should feel curated, editorial and design-driven.
|
|
2056
|
+
|
|
2057
|
+
FRAME 1:
|
|
2058
|
+
Front-facing hero shot of the product in a clean studio setup. Neutral background, balanced composition, calm and confident presentation of the product.
|
|
2059
|
+
|
|
2060
|
+
FRAME 2:
|
|
2061
|
+
Close-up shot with the focus centered on the middle of the product. Focusing on surface texture, materials and print details.
|
|
2062
|
+
|
|
2063
|
+
FRAME 3:
|
|
2064
|
+
Shows the reference product placed in an environment that naturally fits the brand and product category. Studio setting inspired by the product design elements and colours.
|
|
2065
|
+
|
|
2066
|
+
FRAME 4:
|
|
2067
|
+
Product shown in use or interaction on a neutral studio background. Hands and interaction elements are minimal and restrained, the look matches the style of the package.
|
|
2068
|
+
|
|
2069
|
+
FRAME 5:
|
|
2070
|
+
Isometric composition showing multiple products arranged in a precise geometric order from the top isometric angle. All products are placed at the same isometric top angle, evenly spaced, clean, structured and graphic.
|
|
2071
|
+
|
|
2072
|
+
FRAME 6:
|
|
2073
|
+
Product levitating slightly tilted on a neutral background that matches the reference image color palette. Floating position is angled and intentional, the product is floating naturally in space.
|
|
2074
|
+
|
|
2075
|
+
FRAME 7:
|
|
2076
|
+
is an extreme close-up focusing on a specific detail of the label, edge, texture or material behavior.
|
|
2077
|
+
|
|
2078
|
+
FRAME 8:
|
|
2079
|
+
The product in an unexpected yet aesthetically strong setting that feels bold, editorial and visually striking.
|
|
2080
|
+
Unexpected but highly stylized setting. Studio-based, and designer-driven. Bold composition that elevates the brand.
|
|
2081
|
+
|
|
2082
|
+
FRAME 9:
|
|
2083
|
+
Wide composition showing the product in use, placed within a refined designer setup. Clean props, controlled styling, cohesive with the rest of the series.
|
|
2084
|
+
|
|
2085
|
+
CAMERA & STYLE:
|
|
2086
|
+
Ultra high-quality studio imagery with a real camera look. Different camera angles and framings across frames. Controlled depth of field, precise lighting, accurate materials and reflections. Lighting logic, color palette, mood and visual language must remain consistent across all nine panels as one cohesive series.
|
|
2087
|
+
|
|
2088
|
+
OUTPUT:
|
|
2089
|
+
A clean 3×3 grid with no borders, no text, no captions and no watermarks.","Vi","https://x.com/tehno_maniak/status/2013489628456636867"
|
|
2090
|
+
"76","Comic / Storyboard - 10+ Page Manga Creation Prompt","","This entry refers to a publicly shared, free-to-use prompt template for creating a manga of over 10 pages using Nano Banana Pro. It is intended as a reference for generating comic-style illustrations.","Prompt for creating a manga of over 10 pages using nanobanana pro.","AI侍うっちー | AI教育 × キャリアUP","https://x.com/Air_AI_ToolDev/status/2013393905681682889"
|
|
2091
|
+
"77","Comic / Storyboard - Transform Photo into 4 Dynamic Character Styles","","A prompt instructing the model to transform an original photo into four different photorealistic, ultra-detailed character styles. It specifies a mid-close-up, wide-angle shot with extreme, dynamic camera angles and powerful poses, requiring the original photo as input.","Transform the original photo into a dramatic, photorealistic, ultra-detailed set of 4 different styles characters are included , each a mid close up wide-angle shot with an extreme, dynamic camera angle with powerful pose in a consistent, expanded version.","ANKIT PATEL 🇮🇳 | AI","https://x.com/Ankit_patel211/status/2013319725795934590"
|
|
2092
|
+
"78","Comic / Storyboard - Real People Transforming into Comic Characters in a Future City","","A Japanese prompt used with Gemini (Nano Banana Pro) and DeeVid AI for video generation. The prompt describes a scenario where real men and women are sucked into a comic book, transform into comic characters, and strike a final pose against a futuristic city background. This is an example of a complex narrative prompt for AI video.","Real men and women are sucked into a comic book, transform into comic characters, and strike the final pose of the image against a futuristic city background.","Takuya,中村卓也,나카무라 타쿠야","https://x.com/nkmr_sun/status/2013150952207929449"
|
|
2093
|
+
"79","Comic / Storyboard - Subtle Cyborg Transformation in Subway","","A highly detailed prompt for generating an ultra-realistic cinematic film still of a woman in a moving subway train, focusing on a subtle, early-stage cyborg transformation (faint bioluminescent circuitry, mechanical glint in one eye) and a tense, grounded sci-fi realism aesthetic.","{
|
|
2094
|
+
|
|
2095
|
+
""type"": ""image_generation_prompt"",
|
|
2096
|
+
|
|
2097
|
+
""language"": ""English"",
|
|
2098
|
+
|
|
2099
|
+
""style"": ""ultra-realistic cinematic film still"",
|
|
2100
|
+
|
|
2101
|
+
""aspect_ratio"": ""16:9"",
|
|
2102
|
+
|
|
2103
|
+
""subject"": {
|
|
2104
|
+
|
|
2105
|
+
""gender"": ""female"",
|
|
2106
|
+
|
|
2107
|
+
""pose"": {
|
|
2108
|
+
|
|
2109
|
+
""position"": ""standing alone"",
|
|
2110
|
+
|
|
2111
|
+
""orientation"": ""centered, facing the camera"",
|
|
2112
|
+
|
|
2113
|
+
""posture"": ""still, composed, slightly tense""
|
|
2114
|
+
|
|
2115
|
+
},
|
|
2116
|
+
|
|
2117
|
+
""appearance"": {
|
|
2118
|
+
|
|
2119
|
+
""hood"": ""wearing a hooded jacket with the hood up"",
|
|
2120
|
+
|
|
2121
|
+
""face"": {
|
|
2122
|
+
|
|
2123
|
+
""skin_texture"": ""photorealistic, natural human skin"",
|
|
2124
|
+
|
|
2125
|
+
""cyborg_transition"": {
|
|
2126
|
+
|
|
2127
|
+
""stage"": ""early-stage"",
|
|
2128
|
+
|
|
2129
|
+
""details"": [
|
|
2130
|
+
|
|
2131
|
+
""faint bioluminescent circuitry barely visible beneath the skin"",
|
|
2132
|
+
|
|
2133
|
+
""subtle glow along one cheek and the side of the neck"",
|
|
2134
|
+
|
|
2135
|
+
""restrained and realistic, not exaggerated""
|
|
2136
|
+
|
|
2137
|
+
],
|
|
2138
|
+
|
|
2139
|
+
""eyes"": {
|
|
2140
|
+
|
|
2141
|
+
""left_or_right_eye"": ""one eye reflects a cold, mechanical glint while remaining mostly human""
|
|
2142
|
+
|
|
2143
|
+
}
|
|
2144
|
+
|
|
2145
|
+
}
|
|
2146
|
+
|
|
2147
|
+
},
|
|
2148
|
+
|
|
2149
|
+
""expression"": ""neutral but intense, anticipatory, calm with underlying tension""
|
|
2150
|
+
|
|
2151
|
+
}
|
|
2152
|
+
|
|
2153
|
+
},
|
|
2154
|
+
|
|
2155
|
+
""environment"": {
|
|
2156
|
+
|
|
2157
|
+
""location"": ""inside a moving subway train"",
|
|
2158
|
+
|
|
2159
|
+
""interior"": {
|
|
2160
|
+
|
|
2161
|
+
""walls"": ""brushed metal"",
|
|
2162
|
+
|
|
2163
|
+
""poles"": ""vertical steel poles"",
|
|
2164
|
+
|
|
2165
|
+
""floor"": ""worn industrial flooring"",
|
|
2166
|
+
|
|
2167
|
+
""lighting"": ""soft, flickering fluorescent lights""
|
|
2168
|
+
|
|
2169
|
+
},
|
|
2170
|
+
|
|
2171
|
+
""windows"": {
|
|
2172
|
+
|
|
2173
|
+
""outside_view"": ""motion blur indicating speed and movement""
|
|
2174
|
+
|
|
2175
|
+
}
|
|
2176
|
+
|
|
2177
|
+
},
|
|
2178
|
+
|
|
2179
|
+
""lighting"": {
|
|
2180
|
+
|
|
2181
|
+
""type"": ""natural cinematic lighting"",
|
|
2182
|
+
|
|
2183
|
+
""contrast"": ""soft contrast"",
|
|
2184
|
+
|
|
2185
|
+
""mood"": ""cool, tense, restrained""
|
|
2186
|
+
|
|
2187
|
+
},
|
|
2188
|
+
|
|
2189
|
+
""color_palette"": {
|
|
2190
|
+
|
|
2191
|
+
""primary_tones"": [""desaturated blues"", ""cool grays""],
|
|
2192
|
+
|
|
2193
|
+
""saturation"": ""low, muted""
|
|
2194
|
+
|
|
2195
|
+
},
|
|
2196
|
+
|
|
2197
|
+
""camera"": {
|
|
2198
|
+
|
|
2199
|
+
""depth_of_field"": ""shallow"",
|
|
2200
|
+
|
|
2201
|
+
""focus"": ""sharp on the woman’s face and upper body"",
|
|
2202
|
+
|
|
2203
|
+
""style"": ""high-end cinematic film still""
|
|
2204
|
+
|
|
2205
|
+
},
|
|
2206
|
+
|
|
2207
|
+
""atmosphere"": {
|
|
2208
|
+
|
|
2209
|
+
""mood"": ""tense, anticipatory, pre-transformation"",
|
|
2210
|
+
|
|
2211
|
+
""genre"": ""sci-fi realism"",
|
|
2212
|
+
|
|
2213
|
+
""aesthetic"": ""grounded, subtle, realistic""
|
|
2214
|
+
|
|
2215
|
+
},
|
|
2216
|
+
|
|
2217
|
+
""quality"": {
|
|
2218
|
+
|
|
2219
|
+
""realism"": ""photorealistic"",
|
|
2220
|
+
|
|
2221
|
+
""detail_level"": ""high"",
|
|
2222
|
+
|
|
2223
|
+
""skin_detail"": ""visible pores and natural texture""
|
|
2224
|
+
|
|
2225
|
+
},
|
|
2226
|
+
|
|
2227
|
+
""constraints"": [
|
|
2228
|
+
|
|
2229
|
+
""No exaggerated sci-fi elements"",
|
|
2230
|
+
|
|
2231
|
+
""No fantasy glow or neon effects"",
|
|
2232
|
+
|
|
2233
|
+
""No cartoon or illustration style"",
|
|
2234
|
+
|
|
2235
|
+
""No overexposed lighting"",
|
|
2236
|
+
|
|
2237
|
+
""Cyborg elements must remain subtle and realistic""
|
|
2238
|
+
|
|
2239
|
+
],
|
|
2240
|
+
|
|
2241
|
+
""output_goal"": ""Create a photorealistic cinematic image of a woman standing alone inside a moving subway train, capturing a subtle early-stage cyborg transformation with a tense, anticipatory mood and grounded sci-fi realism.""
|
|
2242
|
+
|
|
2243
|
+
}","𝗦𝗮𝗻𝗶𝗮","https://x.com/saniaspeaks_/status/2013118390630744196"
|
|
2244
|
+
"80","Comic / Storyboard - Frank Miller Sin City Graphic Novel Style Transfer","","A prompt designed to transform subjects from an uploaded image into the stark, high-contrast aesthetic of Frank Miller's Sin City graphic novels. It mandates deep shadows, heavy cross-hatching, thick ink outlines, and dramatic chiaroscuro lighting against a void background.","The subjects from the uploaded image rendered in a stark, high-contrast graphic novel style, heavily inspired by Frank Miller's Sin City aesthetic. Deep, unforgiving shadows define the muscular structure and harsh expressions, utilizing heavy cross-hatching and thick ink outlines instead of traditional shading. Dramatic chiaroscuro lighting emphasizes the tension between the two figures, with only stark white highlights cutting through the predominantly black composition, against a pure void background, appearing like a single, powerful comic book panel.","Dominus the Prompter","https://x.com/iamdomprompt/status/2012949546389643603"
|
|
2245
|
+
"81","Comic / Storyboard - Selfie to Claymation Transformation","","A prompt used with Nano Banana Pro to transform a selfie into a claymation style, focusing on realistic clay texture, visible fingerprints, and the warmth of stop-motion animation. The prompt is shared in the second image of the tweet.","A close-up shot of a man with scissors, claymation, stop motion animation, miniature diorama, realistic clay texture, visible fingerprints, warm lighting, high detail, 8k","ハサミおじさん♪北海道のまちゼミ好きな二代目理容師","https://x.com/hasami_ojisan/status/2012870063456686140"
|
|
2246
|
+
"82","Comic / Storyboard - Indie Film Aesthetic Narrative Grid Prompt","","A complex, structured JSON prompt designed to generate a 5-image narrative grid with an experimental indie film aesthetic. It focuses on a quiet, nostalgic moment of a young man at an abandoned bus stop, emphasizing raw realism, low contrast, and imperfect composition to simulate a remembered scene.","{
|
|
2247
|
+
""concept"": ""a quiet moment that feels remembered rather than photographed"",
|
|
2248
|
+
""subject"": {
|
|
2249
|
+
""type"": ""young man"",
|
|
2250
|
+
""age"": ""early 20s"",
|
|
2251
|
+
""presence"": ""subtle, almost unnoticed within the frame"",
|
|
2252
|
+
""expression"": ""emotion held back, eyes suggesting unfinished thoughts"",
|
|
2253
|
+
""skin_tone"": ""natural muted tone with real-life unevenness"",
|
|
2254
|
+
""features"": ""unposed face, relaxed posture, human imperfections preserved""
|
|
2255
|
+
},
|
|
2256
|
+
""scene"": {
|
|
2257
|
+
""environment"": ""abandoned outdoor bus stop near a dried riverbed"",
|
|
2258
|
+
""location"": ""cracked concrete shelter, faded signage, tall wild grass reclaiming the area"",
|
|
2259
|
+
""props"": ""old bench, weathered backpack, torn paper timetable"",
|
|
2260
|
+
""time_of_day"": ""late evening just before blue hour fades"",
|
|
2261
|
+
""weather"": ""still air, faint dust particles floating""
|
|
2262
|
+
},
|
|
2263
|
+
""composition"": {
|
|
2264
|
+
""style"": ""5-image narrative grid, non-linear storytelling"",
|
|
2265
|
+
""shots"": [
|
|
2266
|
+
""extreme close-up of fingers resting on the bench, shallow focus"",
|
|
2267
|
+
""reflection of the subject in a scratched metal surface, face partially distorted"",
|
|
2268
|
+
""medium shot from behind, subject seated and slightly slouched"",
|
|
2269
|
+
""side profile framed through tall grass in the foreground"",
|
|
2270
|
+
""wide static shot where the subject appears small, almost dissolving into space""
|
|
2271
|
+
],
|
|
2272
|
+
""camera_angles"": ""observational, imperfect, slightly off-center"",
|
|
2273
|
+
""framing"": ""intentional imbalance, negative space dominating the frame""
|
|
2274
|
+
},
|
|
2275
|
+
""lighting"": {
|
|
2276
|
+
""type"": ""natural residual daylight"",
|
|
2277
|
+
""quality"": ""soft, fading, low-energy light"",
|
|
2278
|
+
""color_temperature"": ""cool desaturated blues with hints of warm decay"",
|
|
2279
|
+
""shadows"": ""subtle, undefined, realistic""
|
|
2280
|
+
},
|
|
2281
|
+
""visual_style"": {
|
|
2282
|
+
""mood"": ""nostalgic, suspended, emotionally restrained"",
|
|
2283
|
+
""color_grading"": ""washed-out tones with gentle color separation"",
|
|
2284
|
+
""contrast"": ""very low, almost flat"",
|
|
2285
|
+
""film_look"": ""experimental indie film / memory archive aesthetic"",
|
|
2286
|
+
""realism"": ""raw, anti-gloss, intentionally imperfect""
|
|
2287
|
+
},
|
|
2288
|
+
""camera_settings"": {
|
|
2289
|
+
""lens"": ""40mm–58mm documentary-style lens"",
|
|
2290
|
+
""depth_of_field"": ""selective focus, occasionally soft"",
|
|
2291
|
+
""focus"": ""priority on atmosphere over sharpness""
|
|
2292
|
+
},
|
|
2293
|
+
""quality"": {
|
|
2294
|
+
""resolution"": ""4K"",
|
|
2295
|
+
""detail"": ""natural textures, visible wear, realistic surfaces"",
|
|
2296
|
+
""noise"": ""organic grain resembling scanned film"",
|
|
2297
|
+
""artifacts"": ""none, no AI distortions""
|
|
2298
|
+
}
|
|
2299
|
+
}","Harboriis","https://x.com/harboriis/status/2012778831330099383"
|
|
2300
|
+
"83","Comic / Storyboard - Combat Scene Generation Comparison","","This is a prompt used to generate a combat scene, comparing the output quality between GPT-image and Nano Banana Pro, using the same prompt and reference image.","I use GPT-image for drawing combat scenes ( ´∀`)
|
|
2301
|
+
Left: GPT-image
|
|
2302
|
+
Right: nano banana pro
|
|
2303
|
+
Same prompt, same reference image","TomoHiko|AI art","https://x.com/TomoHiko250220/status/2012335464406299026"
|
|
2304
|
+
"84","Comic / Storyboard - Negative Prompting for Manga Generation in NanoBanana Pro","","A template for 'Forbidden Items' (negative prompts) specifically tailored for generating manga panels in NanoBanana Pro, ensuring correct reading order, language, and format.","[Forbidden Items]
|
|
2305
|
+
- Left-to-right reading, bottom-to-top reading composition is forbidden
|
|
2306
|
+
- English dialogue is forbidden
|
|
2307
|
+
- Horizontal writing of dialogue is forbidden
|
|
2308
|
+
- Monochrome, black and white, line art is forbidden","健太|AI活用で個人ビジネスを仕組み化|無在庫1000人超指導","https://x.com/kenta_business/status/2012133143843922078"
|
|
2309
|
+
"85","Comic / Storyboard - LEGO Miniature Diorama of 'The Nun' Horror Film Set","","A creative JSON prompt for generating a LEGO miniature diorama scene depicting the film set of the horror movie 'The Nun'. It includes detailed descriptions of the gothic stone interior, the LEGO nun character, and various LEGO minifigure crew members (camera operator, boom mic, director) interacting with film equipment, all rendered with dramatic, high-contrast cinematic lighting.","{
|
|
2310
|
+
""scene_overview"": {
|
|
2311
|
+
""setting"": ""Gothic stone interior resembling a church or cathedral set"",
|
|
2312
|
+
""environment_style"": ""LEGO miniature diorama"",
|
|
2313
|
+
""location_type"": ""Film set / behind-the-scenes movie production"",
|
|
2314
|
+
""time_of_day"": ""Interior, controlled lighting (cinematic night-like mood)"",
|
|
2315
|
+
""atmosphere"": ""Cinematic, eerie, theatrical, controlled"",
|
|
2316
|
+
""mood"": ""Dark humor, spooky, playful, creative"",
|
|
2317
|
+
""genre_influence"": [""Horror"", ""Behind-the-scenes filmmaking"", ""Fantasy""]
|
|
2318
|
+
},
|
|
2319
|
+
|
|
2320
|
+
""primary_subject"": {
|
|
2321
|
+
""type"": ""LEGO minifigure character"",
|
|
2322
|
+
""role"": ""Nun / horror character"",
|
|
2323
|
+
""appearance"": {
|
|
2324
|
+
""outfit"": ""Black nun habit with white collar"",
|
|
2325
|
+
""face"": ""Pale white face, dark hollow eyes, eerie expression"",
|
|
2326
|
+
""accessories"": ""Cross necklace"",
|
|
2327
|
+
""pose"": ""Standing still, facing forward""
|
|
2328
|
+
},
|
|
2329
|
+
""positioning"": {
|
|
2330
|
+
""location"": ""Centered within a large stone archway"",
|
|
2331
|
+
""background"": ""Glowing blue-lit alcove or chamber""
|
|
2332
|
+
}
|
|
2333
|
+
},
|
|
2334
|
+
|
|
2335
|
+
""supporting_characters"": {
|
|
2336
|
+
""crew_members"": [
|
|
2337
|
+
{
|
|
2338
|
+
""role"": ""Camera operator"",
|
|
2339
|
+
""object_interaction"": ""Operating a large LEGO film camera"",
|
|
2340
|
+
""position"": ""Front-left, seated on a camera dolly""
|
|
2341
|
+
},
|
|
2342
|
+
{
|
|
2343
|
+
""role"": ""Boom microphone operator"",
|
|
2344
|
+
""object_interaction"": ""Holding boom mic extended toward subject"",
|
|
2345
|
+
""position"": ""Upper-left foreground""
|
|
2346
|
+
},
|
|
2347
|
+
{
|
|
2348
|
+
""role"": ""Lighting technician"",
|
|
2349
|
+
""object_interaction"": ""Holding a rectangular light reflector"",
|
|
2350
|
+
""position"": ""Right side, elevated on a stand""
|
|
2351
|
+
},
|
|
2352
|
+
{
|
|
2353
|
+
""role"": ""Clapperboard operator"",
|
|
2354
|
+
""object_interaction"": ""Holding a clapperboard"",
|
|
2355
|
+
""position"": ""Front-center-right""
|
|
2356
|
+
},
|
|
2357
|
+
{
|
|
2358
|
+
""role"": ""Director / Script supervisor"",
|
|
2359
|
+
""object_interaction"": ""Holding clipboard and papers"",
|
|
2360
|
+
""position"": ""Bottom-right foreground""
|
|
2361
|
+
}
|
|
2362
|
+
],
|
|
2363
|
+
""style"": ""All characters are LEGO minifigures with yellow skin tone and varied hairpieces""
|
|
2364
|
+
},
|
|
2365
|
+
|
|
2366
|
+
""props_and_equipment"": {
|
|
2367
|
+
""film_equipment"": [
|
|
2368
|
+
""LEGO cinema camera"",
|
|
2369
|
+
""Camera dolly on rails"",
|
|
2370
|
+
""Boom microphone with fuzzy windscreen"",
|
|
2371
|
+
""Lighting reflector panel"",
|
|
2372
|
+
""Clapperboard"",
|
|
2373
|
+
""Monitor screen displaying the nun character"",
|
|
2374
|
+
""Cables coiled on the floor""
|
|
2375
|
+
],
|
|
2376
|
+
""architectural_elements"": [
|
|
2377
|
+
""Stone brick walls"",
|
|
2378
|
+
""Large arched doorway"",
|
|
2379
|
+
""Recessed alcove"",
|
|
2380
|
+
""Tiled stone floor""
|
|
2381
|
+
]
|
|
2382
|
+
},
|
|
2383
|
+
""lighting"": {
|
|
2384
|
+
""primary_light"": ""Strong cyan-blue glow from behind the nun"",
|
|
2385
|
+
""secondary_lighting"": ""Warm neutral studio lighting on crew and foreground"",
|
|
2386
|
+
""contrast"": ""High contrast between cold blue background and warm foreground tones"",
|
|
2387
|
+
""style"": ""Cinematic, dramatic, horror-inspired lighting""
|
|
2388
|
+
},
|
|
2389
|
+
|
|
2390
|
+
""color_palette"": {
|
|
2391
|
+
""dominant_colors"": [""Dark gray"", ""Black"", ""Cyan blue""],
|
|
2392
|
+
""accent_colors"": [""Warm yellow (""","Chandan Singh","https://x.com/cbsingh_oo3/status/2012035545812385829"
|
|
2393
|
+
"86","Comic / Storyboard - Heroine Expression Difference Grid Attempt","","A Japanese prompt attempting to use Nano Banana Pro to generate a 16-panel grid showing different facial expressions (expression differences) of a heroine, based on a reference image. The prompt specifies that the top-left panel should be the original image, and the remaining 15 panels should show variations while maintaining the art style, similar to pseudo-reference functionality in older models.","Create expression differences for the heroine. Display them in a 16-panel screen. The top-left panel should be the original image as is. The remaining 15 panels should display variations of different expressions.","SenY","https://x.com/YuuriAmemiya/status/2011658251960721685"
|
|
2394
|
+
"87","Comic / Storyboard - Ultra-Photorealistic Cinematic Couple Triptych Storyboard","","A highly constrained JSON prompt designed to generate a triptych (three vertical panels) of a couple on a swing set, requiring strict identity locking for both subjects and an exact composition lock based on a reference image. The prompt specifies ultra-photorealistic rendering, cinematic lighting (28mm lens, f/2.8), and detailed constraints to ensure the action (upside-down hanging, pushing) and faces are perfectly preserved across all three panels.","{
|
|
2395
|
+
""generation_request"": {
|
|
2396
|
+
""meta_data"": {
|
|
2397
|
+
""tool"": ""NanoBanana Pro"",
|
|
2398
|
+
""task_type"": ""photoreal_cinematic_couple_triptych_storyboard"",
|
|
2399
|
+
""version"": ""v1.1_SWING_SET_TRIPTYCH_PLAYFUL_UPSIDE_DOWN_ULTRA_REAL"",
|
|
2400
|
+
""priority"": ""highest""
|
|
2401
|
+
},
|
|
2402
|
+
""references"": {
|
|
2403
|
+
""female_reference_image"": {
|
|
2404
|
+
""slot"": 1,
|
|
2405
|
+
""purpose"": ""FEMALE_IDENTITY_LOCK"",
|
|
2406
|
+
""strict_identity_lock"": true,
|
|
2407
|
+
""face_similarity_priority"": ""MAX"",
|
|
2408
|
+
""no_identity_blending"": true,
|
|
2409
|
+
""preserve_age_gender"": true,
|
|
2410
|
+
""preserve_skin_texture"": true,
|
|
2411
|
+
""preserve_facial_proportions"": true,
|
|
2412
|
+
""no_beautify"": true,
|
|
2413
|
+
""no_makeup_invention"": true
|
|
2414
|
+
},
|
|
2415
|
+
""male_reference_image"": {
|
|
2416
|
+
""slot"": 2,
|
|
2417
|
+
""purpose"": ""MALE_IDENTITY_LOCK"",
|
|
2418
|
+
""strict_identity_lock"": true,
|
|
2419
|
+
""face_similarity_priority"": ""MAX"",
|
|
2420
|
+
""no_identity_blending"": true,
|
|
2421
|
+
""preserve_age_gender"": true,
|
|
2422
|
+
""preserve_skin_texture"": true,
|
|
2423
|
+
""preserve_facial_proportions"": true,
|
|
2424
|
+
""no_beautify"": true,
|
|
2425
|
+
""no_makeup_invention"": true
|
|
2426
|
+
},
|
|
2427
|
+
""composition_reference_image"": {
|
|
2428
|
+
""source"": ""UPLOAD_REFERENCE_IMAGE (REQUIRED_FOR_LAYOUT_LOCK)"",
|
|
2429
|
+
""purpose"": ""EXACT_TRIPTYCH_LAYOUT_COMPOSITION_ACTION_LOCK"",
|
|
2430
|
+
""strict_lock"": true,
|
|
2431
|
+
""no_layout_drift"": true,
|
|
2432
|
+
""preserve_framing"": true,
|
|
2433
|
+
""preserve_pose_logic"": true,
|
|
2434
|
+
""preserve_panel_spacing"": true
|
|
2435
|
+
}
|
|
2436
|
+
},
|
|
2437
|
+
""output_settings"": {
|
|
2438
|
+
""aspect_ratio"": ""4:5"",
|
|
2439
|
+
""orientation"": ""portrait"",
|
|
2440
|
+
""resolution"": ""ultra_high_res"",
|
|
2441
|
+
""render_style"": ""true_photoreal_cinematic_lifestyle"",
|
|
2442
|
+
""sharpness"": ""natural_camera_sharpness_not_ai"",
|
|
2443
|
+
""film_grain"": ""subtle_35mm_analog"",
|
|
2444
|
+
""color_grade"": ""natural_warm_film_neutral_skin"",
|
|
2445
|
+
""dynamic_range"": ""natural_not_hdr"",
|
|
2446
|
+
""skin_rendering"": ""real_microtexture_pores_peachfuzz_no_plastic"",
|
|
2447
|
+
""compression_artifacts"": ""none""
|
|
2448
|
+
},
|
|
2449
|
+
""hard_constraints"": [
|
|
2450
|
+
""Exactly 2 people only (one female, one male)."",
|
|
2451
|
+
""Faces must match the uploaded references with maximum similarity (no identity drift)."",
|
|
2452
|
+
""Triptych layout: THREE horizontal panels stacked vertically in one 4:5 image, exactly like the composition reference."",
|
|
2453
|
+
""Outdoor playground swing set setting, same action beats as reference: playful upside-down hanging + pushing + reaching toward camera."",
|
|
2454
|
+
""Faces must be clearly visible and recognizable in ALL THREE panels (no hair fully covering face, no extreme blur)."",
|
|
2455
|
+
""Photorealistic anatomy; correct hands/fingers; realistic clothing folds and gravity."",
|
|
2456
|
+
""Swing set geometry must be physically correct (straight metal frame, correct chain links, no warping)."",
|
|
2457
|
+
""No text, no logos, no watermark.""
|
|
2458
|
+
],
|
|
2459
|
+
""camera"": {
|
|
2460
|
+
""style"": ""real_cinematic_lifestyle_photo"",
|
|
2461
|
+
""lens"": ""28mm_full_frame"",
|
|
2462
|
+
""distortion"": ""realistic_28mm_mild_edge_distortion_controlled"",
|
|
2463
|
+
""aperture"": ""f/2.8""
|
|
2464
|
+
}
|
|
2465
|
+
}
|
|
2466
|
+
}","Özge Döner","https://x.com/astronomerozge1/status/2011524755480809767"
|
|
2467
|
+
"88","Comic / Storyboard - Kaiju Kitten Destroying Sydney Waterfront","","A simple, creative prompt structure for generating an image of a massive kaiju kitten destroying a specific urban landmark, viewed from a ground-level perspective under bright daylight.","Massive kaiju kitten destroying Sydney's urban waterfront, destroying the {argument name=""landmark name"" default=""[place landmark name here]""}. Ground-level view. Bright, daytime, blue skies. No glowing eyes.","Christopher Fryant","https://x.com/cfryant/status/2011096484918235260"
|
|
2468
|
+
"89","Comic / Storyboard - Urban Fantasy Giantess Taylor Swift with Scaffolding","","A complex, surreal prompt to generate a hyper-realistic, cinematic image of a colossal Taylor Swift standing in a city street, surrounded by construction scaffolding and miniature construction workers, emphasizing scale and urban fantasy aesthetics.","""A colossal woman standing in a city street, appearing to be 'under construction' with scaffolding surrounding her body."",
|
|
2469
|
+
""aesthetic"": ""Hyper-realistic composite, cinematic, urban fantasy.""
|
|
2470
|
+
},
|
|
2471
|
+
""subject_details"": {
|
|
2472
|
+
""celebrity_likeness"": ""{argument name=""celebrity name"" default=""Taylor Swift""}."",
|
|
2473
|
+
""features"": {
|
|
2474
|
+
""face"": ""Blue eyes, signature red lipstick, distinct facial structure."",
|
|
2475
|
+
""hair"": ""Golden blonde, long, wavy texture cascading over shoulders.""
|
|
2476
|
+
},
|
|
2477
|
+
""apparel"": {
|
|
2478
|
+
""dress"": ""Black satin slip dress with a deep V-neck and a high slit on the right thigh."",
|
|
2479
|
+
""accessories"": ""Holding a standard white disposable coffee cup in the right hand. Carrying a brown leather luxury handbag in the left hand."",
|
|
2480
|
+
""footwear"": ""Bare feet or heels (obscured by street debris/cracks).""
|
|
2481
|
+
}
|
|
2482
|
+
},
|
|
2483
|
+
""surreal_elements"": {
|
|
2484
|
+
""scaffolding"": ""Intricate metal construction scaffolding structures built around her arms, torso, and legs, following the contour of her body."",
|
|
2485
|
+
""miniatures"": ""Tiny construction workers in yellow hard hats and high-vis vests climbing the scaffolding on her body."",
|
|
2486
|
+
""destruction"": ""The asphalt street beneath her feet is cracking and shattering under the immense weight, creating a crater pattern.""
|
|
2487
|
+
},
|
|
2488
|
+
""exact_pose_anatomical"": {
|
|
2489
|
+
""posture"": ""Standing tall with a slight contrapposto (weight shifted to one hip)."",
|
|
2490
|
+
""orientation"": ""Front-facing, towering over the viewer/city."",
|
|
2491
|
+
""right_arm"": ""Bent at the elbow, raised to hold the coffee cup at chest level."",
|
|
2492
|
+
""left_arm"": ""Extended downwards holding the handbag."",
|
|
2493
|
+
""gaze"": ""Direct, calm eye contact with the camera."",
|
|
2494
|
+
""scale"": ""Subject appears to be approximately 50 stories tall, matching the height of surrounding skyscrapers.""
|
|
2495
|
+
},
|
|
2496
|
+
""environment"": {
|
|
2497
|
+
""location"": ""Avenue in a major metropolis (resembling Chicago or NYC)."",
|
|
2498
|
+
""elements"": ""Skyscrapers flanking both sides, busy traffic with miniature yellow taxis and buses way below."",
|
|
2499
|
+
""perspective"": ""Aerial view relative to the city, but eye-level relative to the subject.""
|
|
2500
|
+
},
|
|
2501
|
+
""camera_technical_values"": {
|
|
2502
|
+
""lens"": ""35mm (Wide angle to capture the full scale of the subject against the skyline)."",
|
|
2503
|
+
""aperture"": ""f/11 (Deep depth of field to keep both the giant subject and the city background relatively sharp)."",
|
|
2504
|
+
""shutter_speed"": ""1/500s."",
|
|
2505
|
+
""iso"": ""ISO 100."",
|
|
2506
|
+
""resolution"": ""8k, high fidelity textures.""
|
|
2507
|
+
},
|
|
2508
|
+
""lighting_setup"": {
|
|
2509
|
+
""source"": ""Natural Daylight."",
|
|
2510
|
+
""quality"": ""Soft, diffused sunlight (slightly overcast)."",
|
|
2511
|
+
""direction"": ""Overhead/Frontal."",
|
|
2512
|
+
""shadows"": ""Subject casts a massive, long shadow onto the city streets below.""","Iqra Saifi","https://x.com/IqraSaifiii/status/2011072648303018074"
|
|
2513
|
+
"90","Comic / Storyboard - High-Energy, Print-Ready Comic Art Prompt","","A prompt designed to generate non-photorealistic, high-energy comic book art. It specifies bold outlines, vibrant colors, dramatic action, and explicitly excludes photos or realism, aiming for a pure, print-ready comic style.","High-energy panels, bold outlines, vibrant colors, dramatic action.
|
|
2514
|
+
|
|
2515
|
+
No photos. No realism.
|
|
2516
|
+
|
|
2517
|
+
Just pure, print-ready comic art from one Nano Banana Pro prompt.","RentPrompts","https://x.com/rentprompt/status/2011068703941775719"
|
|
2518
|
+
"91","Comic / Storyboard - Surreal Forced Perspective Composite Prompt for Nano Banana Pro","","A prompt for Nano Banana Pro to create a hyper-realistic, surreal composite image using forced perspective. It features an extreme close-up of a man's astonished face and hand, cradling a tiny, miniature version of a man, emphasizing 8k Octane Render fidelity and skin texture.","A hyper-realistic, surreal composite shot utilizing forced perspective to create a dramatic scale difference, featuring an extreme close-up profile view on the right side of a man with uploaded face as reference, his expression one of slack-jawed astonishment with mouth slightly agape as he gazes downward. His large hand extends into the focal plane on the left, palm upturned and open, cradling a tiny, miniature version of a man standing directly on the skin of the palm; the miniature figure is dressed in a black t-shirt and loose beige khaki trousers, captured in a dynamic, slightly crouched stance as if balancing or reacting to the giant. The cinematography employs a shallow depth of field with an 85mm portrait lens, keeping the giant's profile and the miniature figure in sharp focus while rendering the background—a warm-toned domestic interior with reddish-brown wooden cabinetry and vague blue shapes—into a creamy, soft bokeh. The lighting is warm and naturalistic, suggestive of indoor tungsten sources, highlighting the skin texture, facial hair, and subsurface scattering on the giant's face, rendered in 8k resolution with the fidelity of an Octane Render, emphasizing the absurdity and realism of the ""shrunk"" subject matter.
|
|
2519
|
+
|
|
2520
|
+
Man should be fully visible","Duet | AI","https://x.com/Sheldon056/status/2011035560593309925"
|
|
2521
|
+
"92","Comic / Storyboard - Gemini System Prompt for 10-Page Manga Generation in Nano Banana Pro","","A detailed system prompt template designed for Gemini to act as a professional manga writer and AI art director. It instructs Gemini to generate a 10-page manga generation prompt sequence specifically optimized for Nano Banana Pro, ensuring character and style consistency, text rendering in Japanese, and a specific panel layout.","You are a ""professional manga writer"" and ""AI Art Director"". Based on the [Character Image] and [Theme] I provide, please create a **10-page manga generation prompt sequence that can be used directly with NanoBananaPro (high-performance image generation AI)**.
|
|
2522
|
+
|
|
2523
|
+
## Production Requirements (NanoBananaPro Hybrid Optimized)
|
|
2524
|
+
1. **Output Format**:
|
|
2525
|
+
- Output each page in a `Code Block` format that is easy to copy and paste.
|
|
2526
|
+
- **Language Specification (Hybrid Strategy)**:
|
|
2527
|
+
- **Visual Description (Visuals)**: Character, background, and art style specifications should be in **""English""** to maintain consistency.
|
|
2528
|
+
- **Text Rendering**: Dialogue and sound effects within speech bubbles should be specified in **""Japanese""**.
|
|
2529
|
+
- **Aspect Ratio**: Each page should be structured assuming a `Vertical 9:16 aspect ratio`.
|
|
2530
|
+
|
|
2531
|
+
2. **Utilization of NanoBananaPro Specific Features**:
|
|
2532
|
+
- **Text Rendering**:
|
|
2533
|
+
- This model can accurately render Japanese text within the image.
|
|
2534
|
+
- Describe the Japanese dialogue by writing `Text: ""[Japanese Dialogue]""` in the Prompt.
|
|
2535
|
+
- **Contextual Understanding**:
|
|
2536
|
+
- Describe the situation using English close to natural language, not just a list of words.
|
|
2537
|
+
|
|
2538
|
+
3. **Story Structure and Direction**:
|
|
2539
|
+
- **Title Determination**: Devise a ""high-sense title"" that reflects the theme, conveys the content at a glance, and captures interest.
|
|
2540
|
+
- **Title Logo Placement**:
|
|
2541
|
+
- Create a ""Title Panel"" where the title logo is prominently placed on **Page 1 or Page 2**.
|
|
2542
|
+
- **Rendering Instruction**: Include instructions to render the title text itself as ""decorative typography"" within the image.
|
|
2543
|
+
- **""Setup and Punchline"" Structure**:
|
|
2544
|
+
- **Page 1 (The Hook)**: Include a ""strong setup (mystery, shock, empathy)"" that strongly captures the reader's interest.
|
|
2545
|
+
- **Page 10 (The Punchline)**: The conclusion, or a cliffhanger leading to the next part.
|
|
2546
|
+
|
|
2547
|
+
4. **Page Description Rules (Strictly Enforced)**:
|
|
2548
|
+
The prompt must always include the following sections.
|
|
2549
|
+
|
|
2550
|
+
- **Header**: `【IMAGE_GEN_ONLY】: Generate a high-resolution professional Japanese manga page. Full Color. Vertical 9:16. 4K.`
|
|
2551
|
+
|
|
2552
|
+
- **【STRICT CHARACTER CONSISTENCY (English)】**:
|
|
2553
|
+
- **Important**: The **""Character Appearance Description (English)""** created by analyzing the initial image must be written in the prompt for **all pages**, without changing a single word.
|
|
2554
|
+
- **Prohibition**: ""Omission"" or ""As above"" is **strictly forbidden**. The entire definition must be written out every time.
|
|
2555
|
+
- Example: `Black bob cut hair, red ribbon, golden eyes, wearing a futuristic cyberpunk school uniform.`
|
|
2556
|
+
|
|
2557
|
+
- **【STRICT STYLE CONSISTENCY (English)】**:
|
|
2558
|
+
- **Style Analysis and Fixation**: Analyze the input image and define its characteristics (Lines, Color, Lighting) as a detailed English prompt.
|
|
2559
|
+
- **Prohibition**: This is also **forbidden** to ""omit"". Output the full text every time.
|
|
2560
|
+
- Example: `Thick confident outlines, cel shading with soft gradients, vibrant high-saturation colors, dramatic lighting, anime screentones.`
|
|
2561
|
+
|
|
2562
|
+
- **【PANEL LAYOUT & VISUALS (English + Japanese Text)】**:
|
|
2563
|
+
- **Panel Composition**: **Always place 4 to 8 panels** per page. (3 panels or less is forbidden)
|
|
2564
|
+
- **Content Description**:
|
|
2565
|
+
- `Panel 1 (Top-Right):`
|
|
2566
|
+
- `Visual: [English description of action/angle]`
|
|
2567
|
+
- `Text: ""[Japanese Dialogue in bubble]""`
|
|
2568
|
+
|
|
2569
|
+
- **【PAGE NUMBERING】**:
|
|
2570
|
+
- Instruction to render the page number (e.g., ""1"") small in the bottom-right corner.
|
|
2571
|
+
|
|
2572
|
+
## Output Template Example
|
|
2573
|
+
|
|
2574
|
+
### Page X
|
|
2575
|
+
|
|
2576
|
+
【IMAGE_GEN_ONLY】: Generate a high-resolution professional Japanese manga page. Full Color. Vertical 9:16. --ar 9:16
|
|
2577
|
+
|
|
2578
|
+
# STRICT CHARACTER CONSISTENCY (DO NOT CHANGE)
|
|
2579
|
+
[Paste the EXACT English Master Description here... NO ABBREVIATIONS]
|
|
2580
|
+
|
|
2581
|
+
# STRICT STYLE CONSISTENCY (DO NOT CHANGE)
|
|
2582
|
+
[Paste the EXACT English Master Style Description here... NO ABBREVIATIONS]
|
|
2583
|
+
|
|
2584
|
+
# PAGE NUMBER
|
|
2585
|
+
Small clear text ""X"" in the bottom-right corner.
|
|
2586
|
+
|
|
2587
|
+
# PANEL LAYOUT & VISUALS (Target: 5-8 Panels, Top-Right to Bottom-Left)
|
|
2588
|
+
|
|
2589
|
+
## Panel 1 (Top-Right):
|
|
2590
|
+
- Visual: [English description of the scene and action]
|
|
2591
|
+
- Text: ""[Japanese Dialogue]""","かし子🍩","https://x.com/Kashiko_AIart/status/2010636586137100687"
|
|
2592
|
+
"93","Comic / Storyboard - Nostalgic Memory Narrative Grid Prompt","","A complex, multi-shot prompt designed to generate a 5-image narrative grid with an experimental indie film aesthetic, focusing on a young man in an abandoned bus stop at late evening. The prompt emphasizes low contrast, desaturated colors, intentional imperfection, and a focus on atmosphere over sharpness to evoke a sense of memory and emotional restraint.","{
|
|
2593
|
+
""concept"": ""a quiet moment that feels remembered rather than photographed"",
|
|
2594
|
+
""subject"": {
|
|
2595
|
+
""type"": ""young man"",
|
|
2596
|
+
""age"": ""early 20s"",
|
|
2597
|
+
""presence"": ""subtle, almost unnoticed within the frame"",
|
|
2598
|
+
""expression"": ""emotion held back, eyes suggesting unfinished thoughts"",
|
|
2599
|
+
""skin_tone"": ""natural muted tone with real-life unevenness"",
|
|
2600
|
+
""features"": ""unposed face, relaxed posture, human imperfections preserved""
|
|
2601
|
+
},
|
|
2602
|
+
""scene"": {
|
|
2603
|
+
""environment"": ""abandoned outdoor bus stop near a dried riverbed"",
|
|
2604
|
+
""location"": ""cracked concrete shelter, faded signage, tall wild grass reclaiming the area"",
|
|
2605
|
+
""props"": ""old bench, weathered backpack, torn paper timetable"",
|
|
2606
|
+
""time_of_day"": ""{argument name=""time of day"" default=""late evening""} just before blue hour fades"",
|
|
2607
|
+
""weather"": ""still air, faint dust particles floating""
|
|
2608
|
+
},
|
|
2609
|
+
""composition"": {
|
|
2610
|
+
""style"": ""5-image narrative grid, non-linear storytelling"",
|
|
2611
|
+
""shots"": [
|
|
2612
|
+
""extreme close-up of fingers resting on the bench, shallow focus"",
|
|
2613
|
+
""reflection of the subject in a scratched metal surface, face partially distorted"",
|
|
2614
|
+
""medium shot from behind, subject seated and slightly slouched"",
|
|
2615
|
+
""side profile framed through tall grass in the foreground"",
|
|
2616
|
+
""wide static shot where the subject appears small, almost dissolving into space""
|
|
2617
|
+
],
|
|
2618
|
+
""camera_angles"": ""observational, imperfect, slightly off-center"",
|
|
2619
|
+
""framing"": ""intentional imbalance, negative space dominating the frame""
|
|
2620
|
+
},
|
|
2621
|
+
""lighting"": {
|
|
2622
|
+
""type"": ""natural residual daylight"",
|
|
2623
|
+
""quality"": ""soft, fading, low-energy light"",
|
|
2624
|
+
""color_temperature"": ""cool desaturated blues with hints of warm decay"",
|
|
2625
|
+
""shadows"": ""subtle, undefined, realistic""
|
|
2626
|
+
},
|
|
2627
|
+
""visual_style"": {
|
|
2628
|
+
""mood"": ""nostalgic, suspended, emotionally restrained"",
|
|
2629
|
+
""color_grading"": ""washed-out tones with gentle color separation"",
|
|
2630
|
+
""contrast"": ""very low, almost flat"",
|
|
2631
|
+
""film_look"": ""experimental indie film / memory archive aesthetic"",
|
|
2632
|
+
""realism"": ""raw, anti-gloss, intentionally imperfect""
|
|
2633
|
+
},
|
|
2634
|
+
""camera_settings"": {
|
|
2635
|
+
""lens"": ""40mm–58mm documentary-style lens"",
|
|
2636
|
+
""depth_of_field"": ""selective focus, occasionally soft"",
|
|
2637
|
+
""focus"": ""priority on atmosphere over sharpness""
|
|
2638
|
+
},
|
|
2639
|
+
""quality"": {
|
|
2640
|
+
""resolution"": ""4K"",
|
|
2641
|
+
""detail"": ""natural textures, visible wear, realistic surfaces"",
|
|
2642
|
+
""noise"": ""organic grain resembling scanned film"",
|
|
2643
|
+
""artifacts"": ""none, no AI distortions""
|
|
2644
|
+
}
|
|
2645
|
+
}","Duet | AI","https://x.com/Sheldon056/status/2010550490321596767"
|
|
2646
|
+
"94","Product Marketing - Photorealistic Idol in Navy Swimsuit Prompt","","A detailed photorealistic image generation prompt for Nano Banana Pro, focusing on a stunning Asian female idol in a tight navy blue competitive swimsuit with specific accessories and a minimalist setting. The prompt is structured in JSON format, allowing easy modification of elements like the text logo on the outfit.","{
|
|
2647
|
+
""prompt_data"": {
|
|
2648
|
+
""subject"": {
|
|
2649
|
+
""basics"": ""1girl, solo"",
|
|
2650
|
+
""demographics"": ""Stunning 20s Asian female idol style"",
|
|
2651
|
+
""hair"": ""Very long straight black hair with full bangs"",
|
|
2652
|
+
""eyes"": ""Piercing light blue eyes"",
|
|
2653
|
+
""skin"": ""Flawless pale skin"",
|
|
2654
|
+
""expression"": ""Cute yet seductive expression looking at viewer""
|
|
2655
|
+
},
|
|
2656
|
+
""attire"": {
|
|
2657
|
+
""main_outfit"": {
|
|
2658
|
+
""item"": ""Tight navy blue competitive swimsuit"",
|
|
2659
|
+
""details"": [
|
|
2660
|
+
""White contrasting borders on straps and sides"",
|
|
2661
|
+
""Deep high-leg cut showing thigh roots"",
|
|
2662
|
+
""Glossy wet-look fabric texture""
|
|
2663
|
+
],
|
|
2664
|
+
""branding"": ""Bold white '{argument name=\""logo text\"" default=\""BeautyVerse\""}' text logo on bust area""
|
|
2665
|
+
},
|
|
2666
|
+
""legwear"": [
|
|
2667
|
+
""Black sheer thigh-high stockings"",
|
|
2668
|
+
""Dark lace garter tops""
|
|
2669
|
+
]
|
|
2670
|
+
},
|
|
2671
|
+
""accessories"": {
|
|
2672
|
+
""style"": ""Luxurious gold accessories"",
|
|
2673
|
+
""items"": [
|
|
2674
|
+
""Slim gold watch"",
|
|
2675
|
+
""Delicate gold chain necklace with ruby pendant"",
|
|
2676
|
+
""Long gold chain earrings""
|
|
2677
|
+
]
|
|
2678
|
+
},
|
|
2679
|
+
""pose_and_action"": {
|
|
2680
|
+
""posture"": ""Sitting casually, knees drawn up"",
|
|
2681
|
+
""interaction"": ""Leaning against modern gray concrete wall""
|
|
2682
|
+
},
|
|
2683
|
+
""environment"": {
|
|
2684
|
+
""setting"": ""Simple minimalist gray room interior"",
|
|
2685
|
+
""background_elements"": ""Modern gray concrete wall""
|
|
2686
|
+
},
|
|
2687
|
+
""style_and_technical"": [
|
|
2688
|
+
""Subtle shadows"",
|
|
2689
|
+
""Cinematic soft lighting"",
|
|
2690
|
+
""Highly detailed face and eyes"",
|
|
2691
|
+
""Realistic materials"",
|
|
2692
|
+
""Photorealistic"",
|
|
2693
|
+
""Sharp focus"",
|
|
2694
|
+
""8k""
|
|
2695
|
+
""3:4""
|
|
2696
|
+
]
|
|
2697
|
+
}
|
|
2698
|
+
}","BeautyVerse","https://x.com/BeautyVerse_Lab/status/2013425391806095403"
|
|
2699
|
+
"95","Product Marketing - Knitted Yarn Object Generation Prompt","Language-KO","A detailed image generation prompt designed to render any object as if it were completely hand-knitted from thick wool yarn. The prompt emphasizes texture, visible stitches, cable knit patterns, and a cozy, functional aesthetic, suitable for creating whimsical yet realistic textile art images. The user needs to input the desired object in the brackets.","Rendered as if completely hand-knitted from thick wool yarn, the [{argument name=""object"" default=""microwave oven""}] looks incredibly functional despite being a soft craft. Visible stitches, cable knit patterns in the grip areas, ribs where flexibility is needed, and neatly tucked-in yarn ends.
|
|
2700
|
+
|
|
2701
|
+
Photographed against a cozy lifestyle background or in a clean wool-textured studio. Warm, soft lighting emphasizes the yarn texture, handmade quality, and the absurd coziness of the machine. Sharp focus on stitch details, warm saturated fiber colors, lifestyle product aesthetics, ultra-high resolution, and hard-made soft.","TheAIHeadquarters","https://x.com/DavisonDabiri/status/2013361411083079850"
|
|
2702
|
+
"96","Product Marketing - High-Fashion Magic Carpet Editorial Prompt","","A JSON prompt for generating a high-fashion editorial image featuring a woman taking off on an ornate magic carpet above the sea. It emphasizes cinematic golden-hour lighting cutting through soft fog, sophisticated layered apparel with billowing fabrics, and a low-angle perspective to create a dreamy, cinematic depth.","{
|
|
2703
|
+
""options"": {
|
|
2704
|
+
""gender"": [
|
|
2705
|
+
""woman""
|
|
2706
|
+
]
|
|
2707
|
+
},
|
|
2708
|
+
""prompt_structure"": {
|
|
2709
|
+
""style"": ""High-fashion editorial"",
|
|
2710
|
+
""subject"": {
|
|
2711
|
+
""model"": ""Woman"",
|
|
2712
|
+
""pose"": ""Sitting or standing"",
|
|
2713
|
+
""action"": ""Takeoff on a flying magic carpet""
|
|
2714
|
+
},
|
|
2715
|
+
""apparel"": {
|
|
2716
|
+
""description"": ""Sophisticated, layered outfit with structured silhouettes"",
|
|
2717
|
+
""details"": ""Premium textures inspired by modern luxury fashion houses"",
|
|
2718
|
+
""physics"": ""Fabrics billow gracefully in the moist ocean air""
|
|
2719
|
+
},
|
|
2720
|
+
""props"": {
|
|
2721
|
+
""item"": ""Magic carpet"",
|
|
2722
|
+
""attributes"": ""{argument name=""carpet details"" default=""Ornate, richly detailed""}""
|
|
2723
|
+
},
|
|
2724
|
+
""environment"": {
|
|
2725
|
+
""location"": ""Above the open sea"",
|
|
2726
|
+
""weather"": ""Soft rolling fog, swirling mist, sea spray"",
|
|
2727
|
+
""background"": ""Deep blue water, thick atmospheric fog obscuring the horizon"",
|
|
2728
|
+
""mood"": ""Dreamy, cinematic depth""
|
|
2729
|
+
},
|
|
2730
|
+
""lighting"": {
|
|
2731
|
+
""type"": ""Warm, cinematic golden-hour"",
|
|
2732
|
+
""interaction"": ""Cuts through the fog, softly illuminating the model, highlighting fabric textures""
|
|
2733
|
+
},
|
|
2734
|
+
""camera_settings"": {
|
|
2735
|
+
""angle"": ""Low-angle perspective"",
|
|
2736
|
+
""focus"": ""Fully focused on the subject and the scene""
|
|
2737
|
+
}
|
|
2738
|
+
}
|
|
2739
|
+
}","Lex","https://x.com/lexx_aura/status/2013336900946350096"
|
|
2740
|
+
"97","Product Marketing - High-Fashion Street Editorial in European City","","A highly technical JSON prompt designed for generating a high-fashion street editorial image in a European city. It requires strict identity preservation based on a face reference image and scene recreation based on a scene reference image, detailing the exact outfit (burgundy pinstripe blazer, lace bra, black gloves) and technical camera settings (85mm lens, clean daylight).","{
|
|
2741
|
+
""job_id"": ""photo_03_city_car"",
|
|
2742
|
+
""model"": ""nano-banana-pro"",
|
|
2743
|
+
""task"": ""image_generation"",
|
|
2744
|
+
""inputs"": {
|
|
2745
|
+
""face_reference_image"": ""<YOUR_FACE_IMAGE>"",
|
|
2746
|
+
""scene_reference_image"": ""<SCENE_IMAGE_3>""
|
|
2747
|
+
},
|
|
2748
|
+
""prompt"": ""High-fashion street editorial in European city. EXACT SAME FACE as face_reference_image, identical identity. Recreate the scene exactly from scene_reference_image: woman leaning on a vintage car, classic European architecture background. Outfit must match exactly: {argument name=""outfit color"" default=""burgundy pinstripe blazer""} and matching skirt with belt, black lace bra visible, black gloves, sheer black tights, gold earrings. Same pose, same body angle, same framing. Luxury magazine look, clean daylight, 85mm fashion lens feel, natural skin texture."",
|
|
2749
|
+
""negative_prompt"": ""different suit color, no lace bra, face changed, identity drift, stylized, cartoon, CGI, over-retouch, wrong car, wrong city, text, watermark, blur"",
|
|
2750
|
+
""settings"": {
|
|
2751
|
+
""stylization"": 0,
|
|
2752
|
+
""quality"": ""max"",
|
|
2753
|
+
""detail_boost"": 0.8,
|
|
2754
|
+
""lighting_match"": ""high"",
|
|
2755
|
+
""composition_match"": ""max"",
|
|
2756
|
+
""color_match"": ""max"",
|
|
2757
|
+
""identity_preservation"": ""max"",
|
|
2758
|
+
""face_consistency"": ""max"",
|
|
2759
|
+
""reference_strength"": { ""face"": 1.0, ""scene"": 0.96 },
|
|
2760
|
+
}
|
|
2761
|
+
}","Melis✨","https://x.com/miilesus/status/2013328546039538111"
|
|
2762
|
+
"98","Product Marketing - Candid Couple Face Mask Lifestyle Scene","","A highly detailed JSON prompt for generating an ultra-photorealistic, candid lifestyle scene of a young couple playfully applying a blue face mask to each other in a cozy, modern bathroom. It specifies the subjects' poses, wardrobe (red crop top, black t-shirt), and emphasizes realistic skin texture, natural shadows, and accurate anatomy constraints.","{
|
|
2763
|
+
""generation_request"": {
|
|
2764
|
+
""meta_data"": {
|
|
2765
|
+
""task_type"": ""photoreal_intimate_home_couple_playful_face_mask"",
|
|
2766
|
+
""version"": ""v1.0_BATHROOM_COUPLE_RED_CROP_PAJAMA_NO_TEXT_EN"",
|
|
2767
|
+
""priority"": ""highest"",
|
|
2768
|
+
""language"": ""en""
|
|
2769
|
+
},
|
|
2770
|
+
""output_settings"": {
|
|
2771
|
+
""aspect_ratio"": ""4:5"",
|
|
2772
|
+
""orientation"": ""portrait"",
|
|
2773
|
+
""resolution_target"": ""ultra_high_res"",
|
|
2774
|
+
""render_style"": ""ultra_photoreal_candid_lifestyle"",
|
|
2775
|
+
""sharpness"": ""crisp_but_natural"",
|
|
2776
|
+
""film_grain"": ""subtle"",
|
|
2777
|
+
""color_grade"": ""warm_cozy_indoor_tones"",
|
|
2778
|
+
""dynamic_range"": ""natural_not_hdr"",
|
|
2779
|
+
""skin_rendering"": ""real_texture_no_retouch"",
|
|
2780
|
+
""no_text"": true,
|
|
2781
|
+
""no_logos"": true,
|
|
2782
|
+
""no_watermarks"": true,
|
|
2783
|
+
""no_ui"": true
|
|
2784
|
+
},
|
|
2785
|
+
""creative_prompt"": {
|
|
2786
|
+
""scene_summary"": ""Ultra-photorealistic candid lifestyle scene in a cozy bathroom at home. A young couple playfully applies a blue face mask to each other, smiling and laughing. The woman sits casually on the bathroom sink while the man stands close in front of her. Intimate, playful, non-sexual domestic moment. No text."",
|
|
2787
|
+
""environment"": {
|
|
2788
|
+
""location"": ""small modern bathroom"",
|
|
2789
|
+
""details"": ""sink, countertop, mirror edge, warm indoor lighting"",
|
|
2790
|
+
""lighting"": ""soft warm household lighting, natural shadows""
|
|
2791
|
+
},
|
|
2792
|
+
""subjects"": {
|
|
2793
|
+
""female_adult"": {
|
|
2794
|
+
""wardrobe"": {
|
|
2795
|
+
""top"": ""red spaghetti-strap crop top"",
|
|
2796
|
+
""bottom"": ""matching red pajama pants""
|
|
2797
|
+
},
|
|
2798
|
+
""pose"": ""sitting on sink counter, one leg bent slightly, relaxed posture"",
|
|
2799
|
+
""expression"": ""smiling, playful"",
|
|
2800
|
+
""action"": ""gently touching the man's face while applying face mask""
|
|
2801
|
+
},
|
|
2802
|
+
""male_adult"": {
|
|
2803
|
+
""wardrobe"": {
|
|
2804
|
+
""top"": ""black t-shirt"",
|
|
2805
|
+
""bottom"": ""black pajama pants""
|
|
2806
|
+
},
|
|
2807
|
+
""pose"": ""standing close to the sink, leaning slightly forward"",
|
|
2808
|
+
""expression"": ""smiling, amused"",
|
|
2809
|
+
""action"": ""allowing face mask application, relaxed body language""
|
|
2810
|
+
}
|
|
2811
|
+
},
|
|
2812
|
+
""details_and_props"": {
|
|
2813
|
+
""face_mask"": ""blue clay or gel face mask partially applied on both faces"",
|
|
2814
|
+
""interaction"": ""natural hand placement, gentle touch, realistic contact points""
|
|
2815
|
+
},
|
|
2816
|
+
""anatomy_constraints"": {
|
|
2817
|
+
""priority"": ""maximum"",
|
|
2818
|
+
""requirements"": [
|
|
2819
|
+
""natural facial proportions and symmetry"",
|
|
2820
|
+
""correct hands with five fingers, accurate joints"",
|
|
2821
|
+
""no warped limbs or twisted wrists"",
|
|
2822
|
+
""realistic sitting and standing posture"",
|
|
2823
|
+
""no floating body parts""
|
|
2824
|
+
]
|
|
2825
|
+
},
|
|
2826
|
+
""camera_and_style_notes"": {
|
|
2827
|
+
""shot_type"": ""candid close-to-medium shot"",
|
|
2828
|
+
""camera_angle"": ""eye-level to slightly angled"",
|
|
2829
|
+
""lens_look"": ""35mm-50mm lifestyle perspective"",
|
|
2830
|
+
""mood"": ""intimate, cozy, playful home moment""
|
|
2831
|
+
}
|
|
2832
|
+
},
|
|
2833
|
+
""negative_prompt"": [
|
|
2834
|
+
""text"",
|
|
2835
|
+
""letters"",
|
|
2836
|
+
""w""
|
|
2837
|
+
]
|
|
2838
|
+
}
|
|
2839
|
+
}","Özge Döner","https://x.com/astronomerozge1/status/2013320441406935172"
|
|
2840
|
+
"99","Product Marketing - Luxury Car Interior Flash Photography Portrait Prompt","","A JSON prompt for generating a photorealistic, influencer-style portrait of a woman (Josephine Langford) sitting in the passenger seat of a luxury car (Mercedes-Benz). It details the subject's appearance (platinum blonde hair, black bodycon dress), the high-end environment (white diamond-quilted leather seats), and the technical style (soft direct flash photography, high contrast, 8K resolution), including a full negative prompt list.","{
|
|
2841
|
+
""prompt_data"": {
|
|
2842
|
+
""subject"": {
|
|
2843
|
+
""appearance"": ""Stunning young woman with long, straight platinum blonde hair, pale porcelain skin, and glamorous makeup with pink lipstick."",
|
|
2844
|
+
""apparel"": ""Tight-fitting black long-sleeve bodycon mini dress with a deep plunging V-neckline."",
|
|
2845
|
+
""pose"": ""Sitting in the passenger seat of a car, legs crossed, one hand resting on her chest, the other arm raised holding the ceiling handle, looking directly at the camera with a soft gaze."",
|
|
2846
|
+
""details"": ""Manicured nails with black and white design.""
|
|
2847
|
+
},
|
|
2848
|
+
""environment"": {
|
|
2849
|
+
""location"": ""Interior of a high-end luxury vehicle ({argument name=""car brand"" default=""Mercedes-Benz""})."",
|
|
2850
|
+
""elements"": ""White diamond-quilted leather bucket seats, black dashboard, Mercedes steering wheel logo visible on the left, car door interior details.""
|
|
2851
|
+
},
|
|
2852
|
+
""technical_specs"": {
|
|
2853
|
+
""style"": ""Photorealistic, influencer lifestyle photography, Instagram aesthetic."",
|
|
2854
|
+
""lighting"": ""Soft direct flash photography, bright interior lighting, high contrast."",
|
|
2855
|
+
""quality"": ""8k resolution, highly detailed, sharp focus, realistic skin texture.""
|
|
2856
|
+
},
|
|
2857
|
+
""full_prompt_string"": ""A photorealistic vertical shot of a beautiful platinum blonde woman sitting inside a luxury Mercedes. She is wearing a tight black long-sleeve deep-v mini dress. She is posed on white diamond-stitched leather seats, one hand raised holding the handle. Flash photography style, glamour lighting, high detail, 8k, realistic texture, influencer aesthetic."",
|
|
2858
|
+
""negative_prompt"": ""cartoon, painting, illustration, 3d render, anime, low quality, jpeg artifacts, blurry, bad anatomy, distorted hands, extra fingers, missing limbs, bad eyes, watermark, text, signature, ugly, deformed.""
|
|
2859
|
+
}
|
|
2860
|
+
}","Artificial intelligence (Ai),Open Ai","https://x.com/Vishnudxe/status/2013307593452835105"
|
|
2861
|
+
"100","Product Marketing - Roller Skate Portrait Prompt with Tropical Background","","A highly detailed JSON prompt for generating a full-body portrait of an athletic woman wearing a heather gray bodysuit and knee-high striped socks, seated with quad roller skates. It specifies intricate facial details, hair coloring (balayage), pose (leaning forward, adjusting sock), and the environment (outdoor park/promenade with blurred tropical foliage and soft natural daylight).","{
|
|
2862
|
+
""prompt_type"": ""detailed_image_generation"",
|
|
2863
|
+
""subject"": {
|
|
2864
|
+
""demographics"": {
|
|
2865
|
+
""gender"": ""Female"",
|
|
2866
|
+
""age_range"": ""20s"",
|
|
2867
|
+
""ethnicity"": ""Caucasian""
|
|
2868
|
+
},
|
|
2869
|
+
""physique"": {
|
|
2870
|
+
""body_type"": ""Athletic, toned, slim but curvy fit"",
|
|
2871
|
+
""pose"": ""Seated on the edge of a white concrete ledge, leaning forward slightly from the waist. Hands are placed on the right shin just below the knee, as if adjusting a sock. The back is slightly arched, highlighting posture.""
|
|
2872
|
+
},
|
|
2873
|
+
""face_details"": {
|
|
2874
|
+
""shape"": ""Oval face with a defined jawline"",
|
|
2875
|
+
""skin_tone"": ""Light tan/sunkissed, smooth texture, even complexion"",
|
|
2876
|
+
""eyes"": {
|
|
2877
|
+
""color"": ""Light blue or green (light colored)"",
|
|
2878
|
+
""shape"": ""Large, almond-shaped"",
|
|
2879
|
+
""gaze"": ""Direct eye contact with the camera, intense and alluring"",
|
|
2880
|
+
""makeup"": ""Defined upper lashes, subtle eyeliner, natural eyeshadow""
|
|
2881
|
+
},
|
|
2882
|
+
""brows"": ""Arched, well-groomed, medium thickness, light brown"",
|
|
2883
|
+
""nose"": ""Straight bridge, refined and narrow tip"",
|
|
2884
|
+
""lips"": {
|
|
2885
|
+
""shape"": ""Full, particularly the bottom lip"",
|
|
2886
|
+
""color"": ""Soft mauve-pink nude"",
|
|
2887
|
+
""expression"": ""Parted slightly, relaxed, sultry"",
|
|
2888
|
+
""finish"": ""Matte""
|
|
2889
|
+
},
|
|
2890
|
+
""cheeks"": ""High cheekbones, subtle bronzer/contouring for definition""
|
|
2891
|
+
},
|
|
2892
|
+
""hair"": {
|
|
2893
|
+
""color"": ""Light brown roots transitioning to honey blonde and platinum highlights (balayage)"",
|
|
2894
|
+
""length"": ""Long, reaching mid-back"",
|
|
2895
|
+
""texture"": ""Straight with slight body"",
|
|
2896
|
+
""style"": ""Loose, flowing down the back and over the left shoulder""
|
|
2897
|
+
}
|
|
2898
|
+
},
|
|
2899
|
+
""wardrobe"": {
|
|
2900
|
+
""bodysuit"": {
|
|
2901
|
+
""color"": ""{argument name=""bodysuit color"" default=""Heather gray""}"",
|
|
2902
|
+
""fabric"": ""Cotton jersey or spandex blend"",
|
|
2903
|
+
""style"": ""Deep scoop neckline, thick tank-style straps, high-cut leg openings exposing the hip, form-fitting""
|
|
2904
|
+
},
|
|
2905
|
+
""socks"": {
|
|
2906
|
+
""color"": ""White"",
|
|
2907
|
+
""style"": ""Knee-high tube socks"",
|
|
2908
|
+
""details"": ""Two distinct bright pink horizontal stripes at the top cuff""
|
|
2909
|
+
},
|
|
2910
|
+
""footwear"": {
|
|
2911
|
+
""item"": ""Quad roller skates"",
|
|
2912
|
+
""color"": ""Classic white leather boot"",
|
|
2913
|
+
""details"": ""Brown wooden heel base, silver trucks"",
|
|
2914
|
+
""wheels"": ""Translucent hot pink polyurethane wheels"",
|
|
2915
|
+
""toe_stop"": ""Hot pink rubber""
|
|
2916
|
+
}
|
|
2917
|
+
},
|
|
2918
|
+
""environment"": {
|
|
2919
|
+
""setting"": ""Outdoor park or promenade"",
|
|
2920
|
+
""background_objects"": {
|
|
2921
|
+
""immediate"": ""Curved white concrete bench or wall (smooth texture)"",
|
|
2922
|
+
""mid_ground"": ""Light grey paved ground/concrete"",
|
|
2923
|
+
""background"": ""Blurred tropical foliage, palm tree trunks, hints of white architectural structures""
|
|
2924
|
+
},
|
|
2925
|
+
""lighting"": {
|
|
2926
|
+
""type"": ""Soft natural daylight"",
|
|
2927
|
+
""direction"": ""Front-lit"",
|
|
2928
|
+
""quality"": ""Diffused (no harsh shadows on face), likely overcast or open shade""
|
|
2929
|
+
}
|
|
2930
|
+
},
|
|
2931
|
+
""technical_specs"": {
|
|
2932
|
+
""aspect_ratio"": ""4:5 (Vertical portrait)"",
|
|
2933
|
+
""camera_shot"": ""Full body / Medium-long shot"",
|
|
2934
|
+
""depth_of_field"": ""Shallow (subject shar","Artificial intelligence (Ai),Open Ai","https://x.com/Vishnudxe/status/2013303820986785863"
|
|
2935
|
+
"101","Product Marketing - Ultra-Photorealistic Gymnastics Group Portrait","","A detailed JSON prompt for generating an ultra-photorealistic group portrait of three young female athletes in gymnastics leotards in an indoor training facility. It specifies the body type, stance (back facing camera, arms crossed), hair color, and outfit details (mesh sleeves, rhinestones) for each subject, emphasizing a professional athletic look with soft gym lighting.","{
|
|
2936
|
+
""prompt_type"": ""ultra-photorealistic athletic group portrait"",
|
|
2937
|
+
""subjects"": [
|
|
2938
|
+
{
|
|
2939
|
+
""gender"": ""female"",
|
|
2940
|
+
""age_range"": ""18-20"",
|
|
2941
|
+
""position"": ""left"",
|
|
2942
|
+
""body_type"": ""athletic, muscular lower body, strong legs"",
|
|
2943
|
+
""stance"": ""standing with back mostly facing camera, torso slightly turned left, arms crossed"",
|
|
2944
|
+
""face"": {
|
|
2945
|
+
""expression"": ""subtle confident smile"",
|
|
2946
|
+
""face_shape"": ""rounded oval"",
|
|
2947
|
+
""skin_tone"": ""light fair skin with warm undertone"",
|
|
2948
|
+
""eyes"": ""light colored, partially visible due to angle"",
|
|
2949
|
+
""nose"": ""small to medium, straight"",
|
|
2950
|
+
""lips"": ""medium fullness, natural pink tone""
|
|
2951
|
+
},
|
|
2952
|
+
""hair"": {
|
|
2953
|
+
""color"": ""light blonde"",
|
|
2954
|
+
""style"": ""shoulder-length loose waves"",
|
|
2955
|
+
""part"": ""slight side part""
|
|
2956
|
+
},
|
|
2957
|
+
""outfit"": {
|
|
2958
|
+
""type"": ""gymnastics leotard"",
|
|
2959
|
+
""color"": ""dark navy blue"",
|
|
2960
|
+
""sleeves"": ""long mesh sleeves"",
|
|
2961
|
+
""details"": ""small rhinestone embellishments along sleeves"",
|
|
2962
|
+
""fit"": ""snug professional athletic fit""
|
|
2963
|
+
}
|
|
2964
|
+
},
|
|
2965
|
+
{
|
|
2966
|
+
""gender"": ""female"",
|
|
2967
|
+
""age_range"": ""18-20"",
|
|
2968
|
+
""position"": ""center"",
|
|
2969
|
+
""body_type"": ""athletic, toned, muscular legs and glutes"",
|
|
2970
|
+
""stance"": ""back facing camera, torso turned slightly right, arms crossed"",
|
|
2971
|
+
""face"": {
|
|
2972
|
+
""expression"": ""bright friendly smile"",
|
|
2973
|
+
""face_shape"": ""oval"",
|
|
2974
|
+
""skin_tone"": ""light fair skin with neutral undertone"",
|
|
2975
|
+
""eyes"": ""light colored, clearly visible"",
|
|
2976
|
+
""nose"": ""straight bridge, softly rounded tip"",
|
|
2977
|
+
""lips"": ""medium-full, natural pink""
|
|
2978
|
+
},
|
|
2979
|
+
""hair"": {
|
|
2980
|
+
""color"": ""golden blonde"",
|
|
2981
|
+
""style"": ""long loose waves"",
|
|
2982
|
+
""part"": ""center part""
|
|
2983
|
+
},
|
|
2984
|
+
""outfit"": {
|
|
2985
|
+
""type"": ""gymnastics leotard"",
|
|
2986
|
+
""color"": ""white"",
|
|
2987
|
+
""sleeves"": ""long sheer mesh sleeves"",
|
|
2988
|
+
""back_design"": ""open back with crisscross straps"",
|
|
2989
|
+
""fit"": ""snug professional athletic fit""
|
|
2990
|
+
}
|
|
2991
|
+
},
|
|
2992
|
+
{
|
|
2993
|
+
""gender"": ""female"",
|
|
2994
|
+
""age_range"": ""18-20"",
|
|
2995
|
+
""position"": ""right"",
|
|
2996
|
+
""body_type"": ""athletic, strong legs, toned build"",
|
|
2997
|
+
""stance"": ""back facing camera, torso turned left, arms crossed"",
|
|
2998
|
+
""face"": {
|
|
2999
|
+
""expression"": ""wide cheerful smile"",
|
|
3000
|
+
""face_shape"": ""oval with soft jawline"",
|
|
3001
|
+
""skin_tone"": ""light fair skin with cool-neutral undertone"",
|
|
3002
|
+
""eyes"": ""light colored"",
|
|
3003
|
+
""nose"": ""medium, straight"",
|
|
3004
|
+
""lips"": ""medium fullness, natural tone""
|
|
3005
|
+
},
|
|
3006
|
+
""hair"": {
|
|
3007
|
+
""color"": ""light brown"",
|
|
3008
|
+
""style"": ""long straight hair"",
|
|
3009
|
+
""part"": ""side part""
|
|
3010
|
+
},
|
|
3011
|
+
""outfit"": {
|
|
3012
|
+
""type"": ""gymnastics leotard"",
|
|
3013
|
+
""color"": ""dark navy blue"",
|
|
3014
|
+
""sleeves"": ""long mesh sleeves"",
|
|
3015
|
+
""details"": ""subtle rhinestone accents"",
|
|
3016
|
+
""fit"": ""snug professional athletic fit""
|
|
3017
|
+
}
|
|
3018
|
+
}
|
|
3019
|
+
],
|
|
3020
|
+
|
|
3021
|
+
""environment"": {
|
|
3022
|
+
""location"": ""indoor gymnastics training facility"",
|
|
3023
|
+
""floor""}
|
|
3024
|
+
}","Artificial intelligence (Ai),Open Ai","https://x.com/Vishnudxe/status/2013303311441764803"
|
|
3025
|
+
"102","Product Marketing - Avant-Garde Top-Down Fabric Halo Portrait","","A highly technical JSON prompt for generating an avant-garde editorial portrait titled 'Textural Rebellion'. It mandates a strictly vertical 90-degree top-down view of a subject lying on dark slate, surrounded by a 'Crown of Fabric' (pleated silk and crimson brocade frozen in a ripple). It specifies high-intensity beauty lighting (softbox directly overhead) and analog medium format film aesthetics (Hasselblad 503CW, Kodak Ektar 100).","{
|
|
3026
|
+
""vibe_title_en"": ""Textural Rebellion"",
|
|
3027
|
+
""master_prompt"": ""A strictly vertical 90-degree top-down plan view of The Protagonist lying flat against a surface of dark, weathered slate. The subject is surrounded by a 'Crown of Fabric'—a surreal, architectural arrangement of pleated raw silk and heavy crimson brocade that radiates from the head like a halo. These textiles appear frozen in a gravity-defying ripple, suspended as if underwater or caught in a high-speed wind tunnel, serving as a practical effect sculpture. The subject maintains 'The Piercing Minimalist' energy: a stoic, neutral expression with absolute direct eye contact into the lens. Lighting is high-intensity Beauty Lighting: a large softbox directly overhead creates even illumination on the face, eliminating harsh shadows while highlighting skin pores and the sharp details of the irises. Captured on a Hasselblad 503CW with an 80mm lens, utilizing Kodak Ektar 100 film stock for rich, tactile saturation and fine grain. Hyper-realistic textures, no CGI gloss."",
|
|
3028
|
+
""meta"": {
|
|
3029
|
+
""intent"": ""Avant-Garde Editorial"",
|
|
3030
|
+
""priorities"": ""Texture, Symmetry, Surrealism"",
|
|
3031
|
+
""device_profile"": ""Medium Format Analog""
|
|
3032
|
+
},
|
|
3033
|
+
""frame"": {
|
|
3034
|
+
""aspect"": ""4:5"",
|
|
3035
|
+
""composition"": ""Central Symmetrical"",
|
|
3036
|
+
""layout"": ""Subject Centered, surrounded by texture"",
|
|
3037
|
+
""camera_angle"": ""90-degree Top-Down (Bird's Eye)"",
|
|
3038
|
+
""tilt_roll_degrees"": ""0""
|
|
3039
|
+
},
|
|
3040
|
+
""subject"": {
|
|
3041
|
+
""gender"": ""Female"",
|
|
3042
|
+
""identity"": ""The Protagonist"",
|
|
3043
|
+
""demographics"": ""Universal High-Fashion Model"",
|
|
3044
|
+
""face"": ""Symmetrical, defined bone structure, hyper-realistic skin texture"",
|
|
3045
|
+
""hair"": ""Slicked back or integrated into the fabric sculpture"",
|
|
3046
|
+
""body"": ""Shoulders up, lying flat"",
|
|
3047
|
+
""expression"": ""Stoic, neutral, high-intensity gaze, lips relaxed but closed"",
|
|
3048
|
+
""pose"": ""Supine, perfectly aligned with the vertical axis""
|
|
3049
|
+
},
|
|
3050
|
+
""wardrobe_accessories"": {
|
|
3051
|
+
""garments"": [
|
|
3052
|
+
{
|
|
3053
|
+
""item"": ""High-Collar Tunic"",
|
|
3054
|
+
""material"": ""Raw Silk"",
|
|
3055
|
+
""color"": ""Deep Charcoal"",
|
|
3056
|
+
""fit"": ""Structured/Architectural""
|
|
3057
|
+
}
|
|
3058
|
+
],
|
|
3059
|
+
""accessories"": [
|
|
3060
|
+
{
|
|
3061
|
+
""item"": ""Fabric Halo"",
|
|
3062
|
+
""color"": ""Crimson and Midnight Blue"",
|
|
3063
|
+
""material"": ""Pleated Silk and Brocade"",
|
|
3064
|
+
""brand_style"": ""Surreal Couture""
|
|
3065
|
+
}
|
|
3066
|
+
]
|
|
3067
|
+
},
|
|
3068
|
+
""environment"": {
|
|
3069
|
+
""setting"": ""Abstract Texture Surface"",
|
|
3070
|
+
""surfaces"": ""Weathered Slate, Layered Textiles"",
|
|
3071
|
+
""depth"": ""Shallow (Planar)"",
|
|
3072
|
+
""atmosphere"": ""Vacuum-like stillness, suspended motion"",
|
|
3073
|
+
""lens_interaction"": ""Sharp edge-to-edge focus""
|
|
3074
|
+
},
|
|
3075
|
+
""lighting"": {
|
|
3076
|
+
""key"": ""Overhead Beauty Dish (Soft)"",
|
|
3077
|
+
""fill"": ""White Reflector (from below camera)"",
|
|
3078
|
+
""rim"": ""None"",
|
|
3079
|
+
""shadows"": ""Minimal, soft fall-off under chin"",
|
|
3080
|
+
""color_temperature"": ""5600K (Daylight Balanced)"",
|
|
3081
|
+
""sensor_flare"": ""None""
|
|
3082
|
+
},
|
|
3083
|
+
""camera"": {
|
|
3084
|
+
""lens_type"": ""Prime Macro-Capable"",
|
|
3085
|
+
""focal_length"": ""80mm"",
|
|
3086
|
+
""aperture"": ""f/8"",
|
|
3087
|
+
""focus"": ""Locked on E""
|
|
3088
|
+
}
|
|
3089
|
+
}","timedoctor.eth","https://x.com/timedoctor_nft/status/2013302693515661588"
|
|
3090
|
+
"103","Product Marketing - Golden Hour Luxury Hotel Portrait Prompt","","A highly detailed JSON prompt for generating an ultra-photorealistic, 8K portrait of a woman reclining in a luxury hotel room during golden hour. It emphasizes direct, hard natural sunlight creating strong geometric shadows, detailed textures (ribbed dress, wet hair), and a low-angle perspective focusing on the subject's legs and bare feet, achieving a casual luxury, unbothered aesthetic.","{
|
|
3091
|
+
""meta"": {
|
|
3092
|
+
""aspect_ratio"": ""4:5"",
|
|
3093
|
+
""quality"": ""ultra_photorealistic, raw, influencer lifestyle, high-end editorial"",
|
|
3094
|
+
""resolution"": ""8k"",
|
|
3095
|
+
""camera"": ""Mirrorless camera (e.g., Sony A7R IV)"",
|
|
3096
|
+
""lens"": ""35mm f/1.4 lens (capturing full body and environment)"",
|
|
3097
|
+
""style"": ""Casual luxury, sun-drenched, golden hour aesthetic, relaxed confidence"",
|
|
3098
|
+
""composition"": ""Full body shot of a woman reclining in a chair, low angle perspective emphasizing legs, centered framing.""
|
|
3099
|
+
},
|
|
3100
|
+
""scene"": {
|
|
3101
|
+
""location"": ""A modern, minimalist hotel room or bedroom."",
|
|
3102
|
+
""environment"": [
|
|
3103
|
+
""Modern beige fabric lounge chair with a matching footrest"",
|
|
3104
|
+
""Light wooden floating nightstand with blue over-ear headphones resting on it"",
|
|
3105
|
+
""White wall radiator visible in background"",
|
|
3106
|
+
""Plain neutral beige/off-white walls"",
|
|
3107
|
+
""Beige lampshade in the upper corner""
|
|
3108
|
+
],
|
|
3109
|
+
""time"": ""Late afternoon, Golden Hour."",
|
|
3110
|
+
""atmosphere"": ""Lazy, warm, quiet luxury, unbothered, chic.""
|
|
3111
|
+
},
|
|
3112
|
+
""lighting"": {
|
|
3113
|
+
""type"": ""Direct, hard natural sunlight."",
|
|
3114
|
+
""source"": ""Window off-camera to the left."",
|
|
3115
|
+
""effect"": ""Creates strong, distinct geometric shadows (likely from window frames) on the wall behind, high contrast highlights on the face and legs, warm golden tone.""
|
|
3116
|
+
},
|
|
3117
|
+
""subject"": {
|
|
3118
|
+
""identity"": ""A stunning young woman with long, wet-look platinum blonde hair falling over her shoulders. She has a tan complexion, full lips, and a confident, direct gaze."",
|
|
3119
|
+
""body"": {
|
|
3120
|
+
""pose"": ""Reclining deeply into the lounge chair, legs crossed and extended towards the camera (focus on bare feet and legs), one hand resting on the chair arm, the other on her leg."",
|
|
3121
|
+
""physique"": ""Fit, curvy figure.""
|
|
3122
|
+
},
|
|
3123
|
+
""outfit"": {
|
|
3124
|
+
""clothing"": ""Tight-fitting, long-sleeved {argument name=""dress color"" default=""purple""} ribbed mini dress."",
|
|
3125
|
+
""accessories"": ""Red string bracelet on wrist, black nail polish on hands and toes.""
|
|
3126
|
+
}
|
|
3127
|
+
},
|
|
3128
|
+
""realism_focus"": {
|
|
3129
|
+
""textures"": ""Ribbed knit texture of the purple dress, realistic skin texture under direct harsh sunlight, individual wet strands of blonde hair, fabric weave of the beige chair."",
|
|
3130
|
+
""imperfections"": ""Harsh realistic shadows on the wall, natural creases in the dress where the body bends, casual placement of the headphones.""
|
|
3131
|
+
}
|
|
3132
|
+
}","Mikasa","https://x.com/Mikasa_rose729/status/2013300949834702966"
|
|
3133
|
+
"104","Product Marketing - Ultra-Realistic High-Fashion Crawling Portrait","","A highly detailed prompt for Nano Banana Pro, focused on generating an ultra-realistic, high-fashion editorial portrait of a woman in a low, crawling pose, conveying predatory tension. It emphasizes extreme realism in skin texture, natural anatomy, cinematic studio lighting (soft key, strong rim light), and avant-garde fashion with detailed fabric and feather textures.","Ultra-realistic high-fashion editorial portrait.
|
|
3134
|
+
A young woman captured in a low, forward-leaning crawling pose, body set diagonally across the frame, conveying controlled dominance and predatory tension. One hand firmly grounded on the studio floor, fingers naturally spread under weight; the other hand lifted close to the face, forming a sharp, claw-like gesture that subtly frames the eyes without distortion.Her expression is seductive yet intimidating — half-lidded eyes with a heavy, deliberate gaze, lips slightly parted, facial muscles relaxed but intentional. Sharp facial structure rendered with natural proportions, visible bone definition, realistic asymmetry, and true skin texture: pores, micro-imperfections, soft tonal transitions, no artificial smoothing.
|
|
3135
|
+
Long, straight hair with blunt bangs, slightly uneven and organic, glossy but not plastic, individual strands catching the light.
|
|
3136
|
+
Avant-garde fashion styling: fitted pants with precise tailoring and believable fabric tension; arms wrapped in feathered or fur-textured elements showing individual fibers, irregular density, and tactile depth, clearly separated from skin.
|
|
3137
|
+
Lighting: cinematic studio setup — soft key light from the upper front shaping facial planes, strong rim light from behind to carve the silhouette, deep controlled shadows with high contrast, no flat illumination.
|
|
3138
|
+
Camera: fashion editorial perspective, 50–85mm look, shallow depth of field, sharp focus on eyes and hands, subtle falloff across the body.
|
|
3139
|
+
Minimalist studio background with a dark gradient or solid tone, clean and distraction-free, enhancing the sculptural pose.
|
|
3140
|
+
Overall mood: dark, glamorous, high-fashion Vogue editorial energy — powerful, sensual, intimidating, grounded in realism.
|
|
3141
|
+
Extreme detail, photographic realism, natural anatomy, professional fashion editorial quality, 8K clarity.
|
|
3142
|
+
--ar 9:16 --v 6 --style raw --s 250
|
|
3143
|
+
🚫 NEGATIVE PROMPT:
|
|
3144
|
+
extra fingers, fused or deformed hands, incorrect anatomy, distorted joints, exaggerated proportions, plastic skin, over-smoothed texture, flat lighting, low contrast, cartoon, anime, CGI look, blur, low detail, awkward or impossible pose","Anissa","https://x.com/SimplyAnnisa/status/2013296513519346097"
|
|
3145
|
+
"105","Product Marketing - Minimalist Studio Portrait of a Man","","A prompt for generating a minimalist studio portrait of a confident man seated on a geometric cube against a solid muted blue background. It details his pose (grounded, relaxed), appearance (well-groomed beard, textured hair), and attire (off-white crewneck, denim jeans, athletic sneakers), emphasizing soft, diffused frontal lighting for a clean, contemporary streetwear look.","Create a minimalist studio portrait of a confident man seated casually on a simple geometric cube against a solid muted blue background. He sits with his legs apart and feet planted firmly on the ground, leaning slightly forward with both hands resting naturally near his knees, creating a grounded, relaxed, and quietly powerful posture. He has medium-length, textured dark hair styled with natural volume, a full, well-groomed beard, and an intense yet calm expression as he looks directly at the camera. His outfit is clean and understated: a soft off-white crewneck sweatshirt with a relaxed fit, paired with classic blue denim jeans featuring elasticated cuffs. He wears modern blue athletic sneakers with white accents, adding a casual, contemporary streetwear touch. The background is a smooth, seamless blue studio wall with no distractions, emphasizing simplicity and balance. Lighting is soft, diffused, and frontal, evenly illuminating the subject while gently sculpting facial features and fabric texture without harsh shadows. The color palette is cohesive and calm. Use aspect ratio 4:5.","ImaginewithRashid","https://x.com/ImaginewithR/status/2013291612659716427"
|
|
3146
|
+
"106","E-commerce Main Image - Cherry Soda Commercial Splash Macro Shot","","A highly detailed prompt for generating an ultra-photorealistic commercial beverage advertisement. It describes a crushed cherry-red aluminum soda can floating mid-air with a violent liquid explosion, surrounded by frozen cherries and micro-droplets, emphasizing macro texture, dramatic lighting, and high-speed splash photography aesthetics.","Ultra-photorealistic commercial beverage advertisement, vertical composition, a crushed glossy aluminum soda can floating in mid-air, deep metallic cherry-red can body with silver top and bottom rims, the can is violently torn open at the center, sharp jagged aluminum edges bent outward, interior packed with two dark maroon cherries inside the opening, juice dripping from the torn metal.
|
|
3147
|
+
|
|
3148
|
+
Branding style: classic flowing white script across the can, gold accent outline on the lettering, the word “Cherry” in bold white block text below, realistic embossed print on wet aluminum.
|
|
3149
|
+
|
|
3150
|
+
Exact composition & motion: The can is centered, tilted slightly to the right, suspended in mid-air.
|
|
3151
|
+
A violent splash of thick dark-red cherry soda explodes upward and outward from the tear, forming a liquid crown around the opening.
|
|
3152
|
+
Multiple ripe glossy cherries with long green stems are frozen in mid-air:
|
|
3153
|
+
|
|
3154
|
+
• One cherry above the can slightly left
|
|
3155
|
+
• One cherry above the can slightly right
|
|
3156
|
+
• One cherry to the right side mid-air
|
|
3157
|
+
• Two cherries inside the torn opening
|
|
3158
|
+
• One cherry partially exiting the lower tear
|
|
3159
|
+
|
|
3160
|
+
Small bright green leaves are scattered in the air between cherries.
|
|
3161
|
+
|
|
3162
|
+
Liquid physics: High-speed splash photography look, thick syrup-like cherry soda, sharp droplets suspended in the air, micro-droplets everywhere, liquid arcs wrapping around the can edges.
|
|
3163
|
+
|
|
3164
|
+
Surface detail: Cold condensation beads covering the can, ultra-sharp macro texture on aluminum, visible tiny water droplets, reflective wet metal.
|
|
3165
|
+
|
|
3166
|
+
Lighting: Dramatic low-key studio lighting, strong white rim light from upper left, soft red fill from front, subtle backlight outlining splash edges, high contrast highlights on droplets, cinematic specular reflections.
|
|
3167
|
+
|
|
3168
|
+
Background: Smooth deep crimson-to-black gradient backdrop, darker at edges, brighter behind the can to create a halo glow.
|
|
3169
|
+
|
|
3170
|
+
Camera & style: 85mm macro lens look, shallow depth of field, center-weighted focus on can opening, frozen motion, hyper-real fluid simulation, luxury beverage advertising style, ultra-clean studio scene, cinematic color grading, high contrast, 8K ultra-detail, photorealistic, premium commercial photography aesthetic.","𝐌","https://x.com/Strength04_X/status/2013216643103793212"
|
|
3171
|
+
"107","E-commerce Main Image - High-Detail Praline Food Photography","","A highly specific prompt for generating high-level AI food photography of assorted pralines. It details the composition (staggered tower), filling textures (hazelnut chunks, raspberry gel, salted caramel), lighting (dramatic side lighting), and background (teal-to-navy gradient).","Assorted pralines loosely stacked center on brushed gold stand, side reveals natural filling cascade: bottom hazelnut chunks irregularly clumped, raspberry gel naturally puddled, salted caramel with realistic flow lines, coffee ganache smooth waves, passionfruit with pulp specks. Unique metallic flecks (one gold nut per filling type) organically placed at each layer transition. {argument name=""background color"" default=""Teal-to-navy gradient""} background with gold mote suspension in left 35° dramatic side lighting creating authentic filling refractions and shadow play. Staggered tower composition draws vertical eye path through flavor diversity.","TheAIHeadquarters","https://x.com/DavisonDabiri/status/2013201475346842049"
|
|
3172
|
+
"108","E-commerce Main Image - Skincare Product Key Visual Generator","","A customizable prompt template for generating ultra-realistic premium skincare product key visuals. It uses placeholders for the product, background colors, and key ingredients, focusing on clean studio lighting, crisp reflections, and floating elements (botanicals, gel swirls, water droplets) for a high-end commercial aesthetic.","centered {argument name=""product type"" default=""FACEWASH_PACKAGING""} on a bold {argument name=""background color 1"" default=""BG_COLOR_1""}→{argument name=""background color 2"" default=""BG_COLOR_2""} gradient, modern studio lighting, crisp reflections + soft grounded shadow. Label text perfectly readable: ""{argument name=""brand name"" default=""BRAND""} {argument name=""product name"" default=""PRODUCT_NAME""}"" only.Surround with floating KEY_INGREDIENT_1, KEY_INGREDIENT_2, BOTANICAL in a balanced ring layout, plus glossy gel/foam ribbon swirls (smooth loops), micro water droplets + light mist. Ultra-sharp focus, shallow DOF, 85mm, HDR, ISO100, clean negative space, no clutter, no watermark.Output {ASPECT} (1:1/4:5/9:16).","TheAIHeadquarters","https://x.com/DavisonDabiri/status/2013168193196449941"
|
|
3173
|
+
"109","E-commerce Main Image - 8K Cinematic Product Photography (Perfume)","","A highly detailed, modular prompt for generating 8K cinematic product photography of perfume bottles. It includes two distinct modules: one for a forest-themed bottle and one for an aquatic splash scene, specifying lighting, materials, and extreme micro-detail.","{
|
|
3174
|
+
""global_settings"": {
|
|
3175
|
+
""resolution"": ""8K"",
|
|
3176
|
+
""aspect_ratio"": ""3:4"",
|
|
3177
|
+
""style"": ""photorealistic cinematic product photography"",
|
|
3178
|
+
""detail_level"": ""extreme micro-detail"",
|
|
3179
|
+
""sharpness"": ""ultra-sharp"",
|
|
3180
|
+
""noise"": ""none"",
|
|
3181
|
+
""compression_artifacts"": ""none"",
|
|
3182
|
+
""color_depth"": ""rich 16-bit color"",
|
|
3183
|
+
""render_quality"": ""luxury commercial grade"",
|
|
3184
|
+
""ai_finish"": ""clean AI-enhanced realism""
|
|
3185
|
+
},
|
|
3186
|
+
|
|
3187
|
+
""module_1"": {
|
|
3188
|
+
""scene_identity"": ""forest_green_perfume"",
|
|
3189
|
+
""environment"": {
|
|
3190
|
+
""setting"": ""dense forest atmosphere"",
|
|
3191
|
+
""background"": ""soft blurred green foliage with depth separation"",
|
|
3192
|
+
""foreground"": ""natural forest floor with soil, moss, and small debris"",
|
|
3193
|
+
""props"": [
|
|
3194
|
+
""flat natural stone platform"",
|
|
3195
|
+
""irregular rock placed slightly behind the bottle"",
|
|
3196
|
+
""pine tree branches with visible needles on the right side""
|
|
3197
|
+
],
|
|
3198
|
+
""atmosphere"": ""soft drifting smoke or mist rising behind the bottle""
|
|
3199
|
+
},
|
|
3200
|
+
""product"": {
|
|
3201
|
+
""object_type"": ""perfume bottle"",
|
|
3202
|
+
""material"": ""ribbed translucent glass"",
|
|
3203
|
+
""color"": ""deep emerald green liquid"",
|
|
3204
|
+
""shape"": ""cylindrical with vertical grooves"",
|
|
3205
|
+
""cap"": {
|
|
3206
|
+
""material"": ""metal"",
|
|
3207
|
+
""finish"": ""polished gold"",
|
|
3208
|
+
""shape"": ""smooth cylindrical""
|
|
3209
|
+
},
|
|
3210
|
+
""label"": ""no visible branding text""
|
|
3211
|
+
},
|
|
3212
|
+
""lighting"": {
|
|
3213
|
+
""key_light"": ""soft diffused natural light from front-left"",
|
|
3214
|
+
""fill_light"": ""subtle ambient forest light"",
|
|
3215
|
+
""highlights"": ""gentle reflections on glass ribs and gold cap"",
|
|
3216
|
+
""shadows"": ""soft realistic shadows under bottle and rocks""
|
|
3217
|
+
},
|
|
3218
|
+
""camera"": {
|
|
3219
|
+
""angle"": ""eye-level product angle"",
|
|
3220
|
+
""focus"": ""sharp focus on bottle, shallow depth of field"",
|
|
3221
|
+
""lens_effect"": ""natural bokeh background""
|
|
3222
|
+
},
|
|
3223
|
+
""mood"": ""fresh, woody, calm, premium, nature-inspired""
|
|
3224
|
+
},
|
|
3225
|
+
|
|
3226
|
+
""module_2"": {
|
|
3227
|
+
""scene_identity"": ""blue_water_splash_perfume"",
|
|
3228
|
+
""environment"": {
|
|
3229
|
+
""setting"": ""dark aquatic studio scene"",
|
|
3230
|
+
""background"": ""deep navy to black gradient"",
|
|
3231
|
+
""surface"": ""rippling water with reflective highlights"",
|
|
3232
|
+
""motion_elements"": [
|
|
3233
|
+
""large upward water splash behind bottle"",
|
|
3234
|
+
""floating water droplets suspended mid-air""
|
|
3235
|
+
],
|
|
3236
|
+
""props"": [
|
|
3237
|
+
""lemon slices (yellow flesh visible)"",
|
|
3238
|
+
""green citrus slice"",
|
|
3239
|
+
""small red berries"",
|
|
3240
|
+
""green herb sprigs""
|
|
3241
|
+
]
|
|
3242
|
+
},
|
|
3243
|
+
""product"": {
|
|
3244
|
+
""object_type"": ""perfume bottle"",
|
|
3245
|
+
""material"": ""opaque glass"",
|
|
3246
|
+
""color"": ""deep midnight blue"",
|
|
3247
|
+
""shape"": ""rectangular with sharp edges"",
|
|
3248
|
+
""cap"": {
|
|
3249
|
+
""material"": ""matching dark glass"",
|
|
3250
|
+
""shape"": ""cylindrical""
|
|
3251
|
+
},
|
|
3252
|
+
""text_visible"": [
|
|
3253
|
+
""BLEU DE CHANEL"",
|
|
3254
|
+
""EAU DE PARFUM""
|
|
3255
|
+
]
|
|
3256
|
+
},
|
|
3257
|
+
""lighting"": {
|
|
3258
|
+
""key_light"": ""strong directional light from upper front"",
|
|
3259
|
+
""rim_light"": ""cool highlights on water splash"",
|
|
3260
|
+
""reflections"": ""specular highli","ShaHid WaNii","https://x.com/meng_dagg695/status/2013160227835933059"
|
|
3261
|
+
"110","E-commerce Main Image - Smart Doorbell Product Visualization Collage Prompt","","A detailed structured prompt for Nano Banana Pro designed to generate a multi-frame commercial visualization collage for a smart doorbell. It specifies the product features, defines nine distinct frames (Hero Shot, Close Up, Brand Environment, In Use, Isometric Grid, Levitating, Detail Extreme, Editorial Unexpected, Wide Use Scenario), and sets camera style parameters like color palette and mood.","{
|
|
3262
|
+
""ProductReference"": ""{argument name=""Product Features"" default=""Smart doorbell with facial recognition, two-way audio, night vision, motion detection, weather-resistant, sleek design, app control""}"",
|
|
3263
|
+
""Frame1_HeroShot"": {
|
|
3264
|
+
""Product"": ""Doorbell mounted on entry, lens centered"",
|
|
3265
|
+
""Background"": ""Modern entry seamless gray""
|
|
3266
|
+
},
|
|
3267
|
+
""Frame2_CloseUp"": {
|
|
3268
|
+
""Focus"": ""Camera lens clarity, microphone grille, button mechanism, weather seal, LED indicator lights, mounting bracket""
|
|
3269
|
+
},
|
|
3270
|
+
""Frame3_BrandEnvironment"": {
|
|
3271
|
+
""Setting"": ""Smart home entry aesthetic, modern security"",
|
|
3272
|
+
""Props"": {
|
|
3273
|
+
""Background"": ""Front door texture"",
|
|
3274
|
+
""Surface"": ""Porch area""
|
|
3275
|
+
}
|
|
3276
|
+
},
|
|
3277
|
+
""Frame4_InUse"": {
|
|
3278
|
+
""Interaction"": ""Homeowner receiving notification on phone, two-way conversation gesture"",
|
|
3279
|
+
""Styling"": ""Smart home security interaction""
|
|
3280
|
+
},
|
|
3281
|
+
""Frame5_IsometricGrid"": {
|
|
3282
|
+
""Count"": ""Doorbell with app interface display"",
|
|
3283
|
+
""Arrangement"": ""Smart entry system formation""
|
|
3284
|
+
},
|
|
3285
|
+
""Frame6_Levitating"": {
|
|
3286
|
+
""Concept"": ""Doorbell floating with security zone visualization""
|
|
3287
|
+
},
|
|
3288
|
+
""Frame7_DetailExtreme"": {
|
|
3289
|
+
""Focus"": ""Facial recognition sensor, microphone quality, speaker output, battery backup, WiFi antenna, motion sensor range""
|
|
3290
|
+
},
|
|
3291
|
+
""Frame8_EditorialUnexpected"": {
|
|
3292
|
+
""Concept"": ""Doorbell as home guardian, security network visualization"",
|
|
3293
|
+
""Materials"": ""Smart security ecosystem""
|
|
3294
|
+
},
|
|
3295
|
+
""Frame9_WideUseScenario"": {
|
|
3296
|
+
""Location"": ""Complete smart home entry with security"",
|
|
3297
|
+
""Props"": [""Smart lock"", ""Entry light"", ""Door mat"", ""Planters"", ""Door hardware"", ""Security camera""]
|
|
3298
|
+
},
|
|
3299
|
+
""CameraStyle"": {
|
|
3300
|
+
""ColorPalette"": ""Doorbell black, camera lens blue, LED lights, door color"",
|
|
3301
|
+
""Mood"": ""Smart security, home entry, modern convenience""
|
|
3302
|
+
}
|
|
3303
|
+
}","松果先森","https://x.com/songguoxiansen/status/2013130384897421728"
|
|
3304
|
+
"111","E-commerce Main Image - Transparent Layered Glass Supercar Sculpture Prompt","","A highly technical JSON prompt for generating a photorealistic, ray-traced image of a supercar. The car is rendered as a topological sliced sculpture made of layered optical grade acrylic glass, with internal mechanical details visible. The prompt emphasizes lighting (rim lighting, internal glow, caustics) against a pitch-black void background, creating an exploded view aesthetic.","{
|
|
3305
|
+
""prompt_configuration"": {
|
|
3306
|
+
""parameters"": {
|
|
3307
|
+
""car_model"": ""{argument name=""car model"" default=""SUPERCAR MODEL""}"",
|
|
3308
|
+
""material_color"": ""{argument name=""material color"" default=""warm amber and deep orange""}""
|
|
3309
|
+
},
|
|
3310
|
+
""aspect_ratio"": ""16:9""
|
|
3311
|
+
""viewpoint"": ""front 3/4 angle, full vehicle visibility""
|
|
3312
|
+
},
|
|
3313
|
+
""prompt_payload"": {
|
|
3314
|
+
""subject_definition"": {
|
|
3315
|
+
""core_subject"": ""{car_model}"",
|
|
3316
|
+
""representation_style"": ""topological sliced sculpture, constructed from parallel stacked sheets of translucent material""
|
|
3317
|
+
},
|
|
3318
|
+
""material_physics"": {
|
|
3319
|
+
""medium"": ""layered optical grade acrylic glass"",
|
|
3320
|
+
""texture"": ""laser-cut edges, volumetric transparency, subsurface scattering"",
|
|
3321
|
+
""color_palette"": ""translucent {material_color} gradient, glowing internal refraction""
|
|
3322
|
+
},
|
|
3323
|
+
""technical_details"": {
|
|
3324
|
+
""structure"": ""ribbed laminar structure, cross-section planes, internal mechanical details visible through layers (engine block, suspension, transmission)"",
|
|
3325
|
+
""fidelity"": ""hyper-detailed, CAD-like precision, exploded view aesthetic but assembled""
|
|
3326
|
+
},
|
|
3327
|
+
""lighting_and_atmosphere"": {
|
|
3328
|
+
""environment"": ""pitch black void background, infinite dark studio"",
|
|
3329
|
+
""lighting_setup"": ""rim lighting to catch glass edges, internal volumetric glow, caustics, cinematic high contrast""
|
|
3330
|
+
},
|
|
3331
|
+
""rendering_engine"": {
|
|
3332
|
+
""style"": ""Octane Render, raytracing, 8k resolution, photorealistic material properties, macro photography depth of field""
|
|
3333
|
+
}
|
|
3334
|
+
},
|
|
3335
|
+
""negative_prompt"": [
|
|
3336
|
+
""solid metal body"",
|
|
3337
|
+
""opaque paint"",
|
|
3338
|
+
""cartoon"",
|
|
3339
|
+
""illustration"",
|
|
3340
|
+
""distorted wheels"",
|
|
3341
|
+
""cropped frame"",
|
|
3342
|
+
""daylight"",
|
|
3343
|
+
""reflection of photographer""
|
|
3344
|
+
]
|
|
3345
|
+
}","Lloyd Creates","https://x.com/lloydcreates/status/2013024593246568485"
|
|
3346
|
+
"112","E-commerce Main Image - General Luxury Product Hero Shot Prompt","","A simple, general instruction to create a luxury product hero shot, implying the user should provide the product details.","Create a luxury product hero shot using this prompt 👇","Amira Zairi","https://x.com/azed_ai/status/2012919379575570766"
|
|
3347
|
+
"113","E-commerce Main Image - Cozy Knit Industrial Design Prompt","","This prompt is designed to render any specified object as if it were entirely hand-knitted from chunky wool yarn, blending Scandinavian hygge aesthetics with industrial design. It emphasizes visible stitches, cable knit patterns, warm lighting, and ultra-high resolution to highlight the soft texture of the yarn.","An {argument name=""object"" default=""[OBJECT]""} rendered as if entirely hand-knitted from chunky wool yarn, impossibly functional-looking despite being soft craft. Visible stitches, cable knit patterns on grip areas, ribbing where flexibility is needed, yarn ends neatly tucked. Positioned against a cozy lifestyle backdrop or clean wool-texture studio. Scandinavian hygge meets industrial design. Warm soft lighting emphasizing the yarn texture, the handmade quality, the absurd coziness of machinery. Sharp focus on stitch detail, warm saturated fiber colors, lifestyle product aesthetic, ultra-high resolution, the hard made soft.","Alexandra Aisling","https://x.com/AllaAisling/status/2012909092210381048"
|
|
3348
|
+
"114","E-commerce Main Image - Ultra-Realistic Product Photography of a Pen","","A prompt for generating an ultra-realistic, 8K professional studio product photograph of a premium ballpoint pen. The focus is on showcasing metallic textures, engraved details, and realistic reflections using soft cinematic lighting and a minimalist luxury background, ideal for high-end commercial advertising.","Ultra-realistic professional studio product photography of a premium ballpoint pen, perfectly centered on a clean reflective surface.
|
|
3349
|
+
The pen is angled slightly for elegance, showcasing metallic texture, engraved details, and realistic reflections.
|
|
3350
|
+
Soft cinematic lighting with subtle highlights and shadows to emphasize craftsmanship.
|
|
3351
|
+
Minimalist luxury background with smooth gradient tones.
|
|
3352
|
+
High-end commercial advertising style, hyper detailed materials, sharp focus, depth of field, editorial product shot.
|
|
3353
|
+
No text, no watermark, no blur.
|
|
3354
|
+
Image Size: 3:4
|
|
3355
|
+
Resolution: 8K
|
|
3356
|
+
Style: Premium, modern, minimalist, luxury branding","Milo","https://x.com/Milo_Bahi_02/status/2012843154928783620"
|
|
3357
|
+
"115","E-commerce Main Image - Micro World Discovery Product Photography Prompt","","A creative prompt for product photography that transforms a standard product into a colossal structure within a miniature world. It instructs the AI to generate tiny people interacting with the oversized product using ladders and walkways, emphasizing scale contrast, soft atmospheric haze, and a playful yet premium storytelling style.","[PRODUCT] transformed into a colossal structure within a miniature world, tiny people interacting with it, ladders, walkways, scale contrast, soft atmospheric haze, playful yet premium storytelling.","Aleena Amir","https://x.com/aleenaamiir/status/2012837083627319764"
|
|
3358
|
+
"116","E-commerce Main Image - Ultra-Realistic Banana Caramel Tart Food Photography Prompt","","A highly detailed prompt for generating ultra-realistic, cinematic food photography of a banana caramel tart. It specifies ingredients, textures, lighting (golden hour), background elements (other desserts), and technical camera settings (Sony A1 85mm f/1.4) for a luxury dessert aesthetic.","{
|
|
3359
|
+
""prompt"": ""ultra-realistic close-up food photography of a freshly baked banana caramel tart, rustic golden-brown pastry shell with flaky texture, filled with creamy caramel custard, topped with perfectly sliced ripe bananas lightly torched, drizzled with golden caramel sauce, sprinkled with crushed pistachios and tiny chocolate curls, spoon scooping out a portion showing luscious cross-section of creamy caramel and banana layers, warm bakery environment, soft background blur featuring other desserts: chocolate truffle, mini pavlova with berries, and croissant with almond flakes, wooden rustic board surface, golden hour lighting, soft bokeh, luxury dessert aesthetic, highly detailed textures, photorealistic, cinematic food photography, 8k resolution, shot on Sony A1 85mm f/1.4, razor-sharp focus on tart and spoon, warm rich color palette with caramel browns, banana yellow, and subtle green accents"",
|
|
3360
|
+
""negative_prompt"": ""blurry, lowres, jpeg artifacts, cartoon, illustration, drawing, painting, plastic looking, fake food, deformed spoon, bad proportions, text, watermark, signature, logo, oversaturated, washed out, harsh flash, cold lighting, 3d render, cgi, toy food, dollhouse miniature"",
|
|
3361
|
+
""aspect_ratio"": ""4:5"",
|
|
3362
|
+
""seed"": -1,
|
|
3363
|
+
""cfg_scale"": 7.5,
|
|
3364
|
+
""steps"": 40,
|
|
3365
|
+
""sampler"": ""DPM++ 2M Karras or Euler a"",
|
|
3366
|
+
""clip_skip"": 2
|
|
3367
|
+
}","Waqar Ali","https://x.com/Waqar_sahito01/status/2012754075578978700"
|
|
3368
|
+
"117","E-commerce Main Image - Macro Product Photography for Floating Food","","A concise text prompt for Nano Banana Pro to generate a premium food advertisement image featuring levitating ingredients in a stacked composition against a white seamless background, emphasizing macro detail and commercial editorial style.","{argument name=""food item"" default=""[Food]""} Premium food advertising, white seamless background, high key studio lighting, floating stacked composition, levitating pieces, {argument name=""ingredient details"" default=""[ingredient_bits]""} scattered, clean minimal layout, crisp soft shadow on surface, ultra realistic, macro product photography, 100mm lens look, f/8 sharp focus, subtle texture detail, editorial commercial, 8k","Meem","https://x.com/mehvishs25/status/2012728463443251526"
|
|
3369
|
+
"118","E-commerce Main Image - Hyper-Realistic Commercial Food Photography Prompt","","A detailed prompt for generating hyper-realistic commercial food photography, specifically focusing on high resolution, sharp focus, and controlled studio lighting to capture frozen mid-air action of ingredients. This prompt is structured using JSON for precise control over output settings and aesthetic details.","""resolution"": ""{argument name=""resolution"" default=""8K UHD""}"",
|
|
3370
|
+
|
|
3371
|
+
""aspect_ratio"": ""3:4"",
|
|
3372
|
+
|
|
3373
|
+
{ ""image_style"": ""{argument name=""image style"" default=""hyper-realistic commercial food photography""}"", ""quality"": ""Ultra-high detail, sharp focus, studio-grade clarity"", ""lighting"": ""Soft but controlled studio lighting with visible highlights and splash definition"", ""motion"": ""Frozen mid-air action, ingredients suspended"",
|
|
3374
|
+
|
|
3375
|
+
""global_settings"": {
|
|
3376
|
+
|
|
3377
|
+
""background_style"": ""Solid or smooth gradient background, color varies per module"",
|
|
3378
|
+
""camera"": ""High-speed photography look, shallow to medium depth of field"", ""post_processing"": ""Balanced contrast, natural saturation, no artificial glow"" }}","Oogie","https://x.com/oggii_0/status/2012557350591434765"
|
|
3379
|
+
"119","E-commerce Main Image - Hyper-Realistic Commercial Food Photography","","A technical prompt focused on generating hyper-realistic commercial food photography, specifically capturing frozen mid-air action of ingredients with high-speed camera aesthetics and controlled studio lighting.","{
|
|
3380
|
+
|
|
3381
|
+
'resolution': '8K UHD',
|
|
3382
|
+
|
|
3383
|
+
'aspect_ratio': '3:4',
|
|
3384
|
+
|
|
3385
|
+
'image_style': 'hyper-realistic commercial food
|
|
3386
|
+
|
|
3387
|
+
photography',
|
|
3388
|
+
|
|
3389
|
+
'global_settings': {
|
|
3390
|
+
|
|
3391
|
+
'quality': 'Ultra-high detail, sharp focus,
|
|
3392
|
+
|
|
3393
|
+
studio-grade clarity',
|
|
3394
|
+
|
|
3395
|
+
'lighting': 'Soft but controlled studio lighting with visible highlights and splash definition',
|
|
3396
|
+
|
|
3397
|
+
'motion': 'Frozen mid-air action, ingredients
|
|
3398
|
+
|
|
3399
|
+
suspended',
|
|
3400
|
+
|
|
3401
|
+
'background_style': 'Solid or smooth gradient background, color varies per module',
|
|
3402
|
+
camera': 'High-speed photography look, shallow to medium depth of field',
|
|
3403
|
+
|
|
3404
|
+
'post_processing': 'Balanced contrast, natural saturation, no artificial glow'
|
|
3405
|
+
|
|
3406
|
+
}}","𝐌","https://x.com/Strength04_X/status/2012525300761133195"
|
|
3407
|
+
"120","E-commerce Main Image - Luxury Korean Hanbok Product Mockup (Symmetrical Flat Lay)","","A highly specific prompt designed to generate a luxury product mockup of traditional Korean Hanbok items in a symmetrical, centered flat-lay composition. It mandates a seamless, pure white background and meticulously details the placement, color, and texture of every item, from the central crimson silk Jeogori to the surrounding accessories like the Bokjumeoni and Binyeo, aiming for a balanced, editorial commercial photography style.","A luxury Korean traditional Hanbok (한복) product mockup with perfectly balanced centered composition on seamless white background.
|
|
3408
|
+
|
|
3409
|
+
CANVAS & BACKGROUND - CRITICAL:
|
|
3410
|
+
- Seamless infinity white backdrop fills entire frame edge to edge
|
|
3411
|
+
- Background extends from corner to corner with no visible borders
|
|
3412
|
+
- Clean warm white (#FFFAF5) continuous uniform tone across full canvas
|
|
3413
|
+
- No vignetting, no falloff, no darkening at edges
|
|
3414
|
+
- All four corners identical in color and brightness
|
|
3415
|
+
- Even exposure across entire image from left to right, top to bottom
|
|
3416
|
+
COMPOSITION - SYMMETRICAL CENTERED LAYOUT:
|
|
3417
|
+
- Perfect center axis alignment
|
|
3418
|
+
- Equal visual weight on left and right sides
|
|
3419
|
+
- Products arranged in triangular hierarchy
|
|
3420
|
+
- Minimum 10% margin between products and frame edges
|
|
3421
|
+
BACK ROW (Top Center):
|
|
3422
|
+
- CENTER-BACK: Matte black gift box with gold Dancheong border, 연꽃문 lotus embossed, ""한스타일 Hstyle"" in gold
|
|
3423
|
+
- LEFT-BACK: Cream shopping bag with gold Taegeuk symbol
|
|
3424
|
+
- RIGHT-BACK: Open box showing cream silk lining with gold crane pattern
|
|
3425
|
+
MIDDLE ROW (Center Hero):
|
|
3426
|
+
- EXACT CENTER: Crimson red silk Hanbok Jeogori (저고리) with gold peony embroidery on cream silk cloth, sleeves spread symmetrically, white collar (동정) visible
|
|
3427
|
+
FRONT ROW (Evenly Spaced):
|
|
3428
|
+
- LEFT: Traditional fan (부채) with plum blossom
|
|
3429
|
+
- CENTER-LEFT: Plum blossom sprig
|
|
3430
|
+
- CENTER: Royal blue Bokjumeoni (복주머니) with gold 福
|
|
3431
|
+
- CENTER-RIGHT: Gold Binyeo (비녀) on cream cushion
|
|
3432
|
+
- RIGHT: Plum blossom sprig
|
|
3433
|
+
LIGHTING:
|
|
3434
|
+
- Soft diffused overhead lighting
|
|
3435
|
+
- Even illumination including all corners and edges
|
|
3436
|
+
- No directional shadows toward frame edges
|
|
3437
|
+
- Consistent brightness across full frame
|
|
3438
|
+
CAMERA:
|
|
3439
|
+
- Shot straight-on, camera perfectly centered
|
|
3440
|
+
- 4:5 aspect ratio
|
|
3441
|
+
- Products composed with safe margin from all edges
|
|
3442
|
+
- Full frame background coverage
|
|
3443
|
+
STYLE: Balanced editorial luxury, Korean heritage, commercial product photography
|
|
3444
|
+
Negative prompt: vignetting, dark corners, uneven background, cropped edges, gradient falloff, visible backdrop edges, inconsistent lighting at borders
|
|
3445
|
+
A stylish handwritten signature ""Willy"" in small gold letters at bottom right corner.","Willy","https://x.com/jw660227/status/2012485594723848458"
|
|
3446
|
+
"121","E-commerce Main Image - Ultra-Cinematic Splash Photography of Coffee and Chocolate","","A highly detailed JSON prompt for generating an ultra-cinematic, vertical image of coffee elements suspended in mid-air, designed for premium café advertising. It specifies cascading coffee beans, floating chocolate bonbons, swirling latte art, and frozen splashes of milk and espresso, using dramatic high-contrast studio lighting and macro photography details for hyper-realism.","{
|
|
3447
|
+
""composition"": {
|
|
3448
|
+
""orientation"": ""vertical"",
|
|
3449
|
+
""style"": ""ultra-cinematic"",
|
|
3450
|
+
""scene_type"": ""mid-air suspended elements"",
|
|
3451
|
+
""depth_of_field"": ""cinematic shallow depth""
|
|
3452
|
+
},
|
|
3453
|
+
""subject"": {
|
|
3454
|
+
""main_elements"": [
|
|
3455
|
+
""cascading roasted coffee beans"",
|
|
3456
|
+
""floating chocolate bonbons"",
|
|
3457
|
+
""mid-air coffee cup with swirling latte art"",
|
|
3458
|
+
""splashes of milk frozen in motion"",
|
|
3459
|
+
""splashes of espresso frozen in motion"",
|
|
3460
|
+
""fine coffee grounds dusting through the air""
|
|
3461
|
+
],
|
|
3462
|
+
""motion_state"": ""frozen action splash photography""
|
|
3463
|
+
},
|
|
3464
|
+
""color_palette"": {
|
|
3465
|
+
""primary_colors"": [
|
|
3466
|
+
""rich coffee brown"",
|
|
3467
|
+
""warm cream"",
|
|
3468
|
+
""espresso black""
|
|
3469
|
+
],
|
|
3470
|
+
""background"": ""deep velvety black""
|
|
3471
|
+
},
|
|
3472
|
+
""lighting"": {
|
|
3473
|
+
""type"": ""dramatic high-contrast studio lighting"",
|
|
3474
|
+
""highlights"": ""glossy reflections on liquids"",
|
|
3475
|
+
""shadows"": ""deep cinematic shadows""
|
|
3476
|
+
},
|
|
3477
|
+
""texture_detail"": {
|
|
3478
|
+
""liquids"": [
|
|
3479
|
+
""glossy milk splashes"",
|
|
3480
|
+
""glossy espresso splashes"",
|
|
3481
|
+
""crema bubbles with micro-detail""
|
|
3482
|
+
],
|
|
3483
|
+
""solids"": [
|
|
3484
|
+
""matte roasted coffee beans"",
|
|
3485
|
+
""smooth chocolate bonbon surfaces"",
|
|
3486
|
+
""fine granular coffee grounds""
|
|
3487
|
+
]
|
|
3488
|
+
},
|
|
3489
|
+
""photography_style"": {
|
|
3490
|
+
""genre"": ""premium café advertising"",
|
|
3491
|
+
""aesthetic"": ""editorial splash photography"",
|
|
3492
|
+
""clarity"": ""crisp ultra-detailed""
|
|
3493
|
+
},
|
|
3494
|
+
""camera"": {
|
|
3495
|
+
""camera_model"": ""Nikon D850 (virtual)"",
|
|
3496
|
+
""lens"": ""105mm macro"",
|
|
3497
|
+
""aperture"": ""f/4.0"",
|
|
3498
|
+
""focus"": ""sharp subject focus with background falloff""
|
|
3499
|
+
},
|
|
3500
|
+
""render_quality"": {
|
|
3501
|
+
""detail_level"": ""hyper-detailed"",
|
|
3502
|
+
""realism"": ""photorealistic"",
|
|
3503
|
+
""finish"": ""high-end commercial output""
|
|
3504
|
+
}
|
|
3505
|
+
}","Sharon Riley","https://x.com/Just_sharon7/status/2012291576119312710"
|
|
3506
|
+
"122","E-commerce Main Image - Gourmet Chocolate Collection 2x2 Grid","","A structured prompt for generating a 2x2 grid collage of high-resolution professional food photography focused on gourmet chocolate. Each panel depicts a different aspect of chocolate (bars, truffles, fondue, and the making process), specifying lighting (soft, diffused studio light) and color scheme (rich browns, deep reds) to create an indulgent and appetizing mood.","{
|
|
3507
|
+
""image_metadata"": {
|
|
3508
|
+
""title"": ""Gourmet Chocolate Collection"",
|
|
3509
|
+
""layout"": ""Four-panel grid (2x2 collage)"",
|
|
3510
|
+
""theme"": ""Culinary arts and confectionery"",
|
|
3511
|
+
""image_type"": ""High-resolution professional food photography""
|
|
3512
|
+
},
|
|
3513
|
+
""panels"": [
|
|
3514
|
+
{
|
|
3515
|
+
""position"": ""top_left"",
|
|
3516
|
+
""subject"": ""Artisan Dark Chocolate Bars"",
|
|
3517
|
+
""details"": {
|
|
3518
|
+
""base"": ""Two thick slabs of dark chocolate"",
|
|
3519
|
+
""toppings"": [""Whole almonds"", ""Walnut halves"", ""Dried cranberries"", ""Cashews""],
|
|
3520
|
+
""surface"": ""Rustic weathered wood tabletop"",
|
|
3521
|
+
""composition"": ""Close-up angled shot highlighting texture""
|
|
3522
|
+
}
|
|
3523
|
+
},
|
|
3524
|
+
{
|
|
3525
|
+
""position"": ""top_right"",
|
|
3526
|
+
""subject"": ""Assorted Chocolate Truffles Box"",
|
|
3527
|
+
""details"": {
|
|
3528
|
+
""packaging"": ""Elegant dark brown gift box with a cream base"",
|
|
3529
|
+
""varieties"": [
|
|
3530
|
+
""Milk chocolate swirls"",
|
|
3531
|
+
""White chocolate striped truffles"",
|
|
3532
|
+
""Cocoa-dusted dark chocolate balls"",
|
|
3533
|
+
""Gold-leaf accented squares"",
|
|
3534
|
+
""Hazelnut-topped pralines""
|
|
3535
|
+
],
|
|
3536
|
+
""quantity"": ""12 visible handcrafted pieces in individual paper liners""
|
|
3537
|
+
}
|
|
3538
|
+
},
|
|
3539
|
+
{
|
|
3540
|
+
""position"": ""bottom_left"",
|
|
3541
|
+
""subject"": ""Chocolate Fondue Fountain"",
|
|
3542
|
+
""details"": {
|
|
3543
|
+
""fountain"": ""Tiered stainless steel fountain with flowing melted milk chocolate"",
|
|
3544
|
+
""dipping_items"": [""{argument name=""dipping item 1"" default=""Fresh red strawberries""}"", ""{argument name=""dipping item 2"" default=""White and pink fluffy marshmallows""}""],
|
|
3545
|
+
""background"": ""Soft bokeh (blurred) background showing more treats"",
|
|
3546
|
+
""vibe"": ""Dessert party or luxury buffet setting""
|
|
3547
|
+
}
|
|
3548
|
+
},
|
|
3549
|
+
{
|
|
3550
|
+
""position"": ""bottom_right"",
|
|
3551
|
+
""subject"": ""Chocolate Making Process"",
|
|
3552
|
+
""details"": {
|
|
3553
|
+
""person"": ""Chef in a white professional culinary uniform"",
|
|
3554
|
+
""action"": ""Pouring tempered liquid chocolate from a metal pitcher into clear polycarbonate molds"",
|
|
3555
|
+
""equipment"": [""Chocolate molds"", ""Mixing bowls"", ""Professional kitchen counter""],
|
|
3556
|
+
""focus"": ""Precision and craftsmanship in chocolate tempering""
|
|
3557
|
+
}
|
|
3558
|
+
}
|
|
3559
|
+
],
|
|
3560
|
+
""aesthetic_summary"": {
|
|
3561
|
+
""lighting"": ""Soft, diffused studio lighting to enhance food textures"",
|
|
3562
|
+
""color_scheme"": ""Rich browns, deep reds, creamy whites, and warm wood tones"",
|
|
3563
|
+
""overall_mood"": ""Indulgent, sophisticated, and appetizing""
|
|
3564
|
+
}
|
|
3565
|
+
}","Bahar azam","https://x.com/BaharAzamm561/status/2012186879136035098"
|
|
3566
|
+
"123","Game Asset - Workflow for Style Transfer and Storyboard Generation","","This is not a single prompt but a description of a multi-step workflow using Nano Banana Pro for style transfer and storyboard creation, requiring both a character image and a reference image for the desired style ('inflated' character).","realistic image of my character + reference image of an ""inflated"" character","proper","https://x.com/ProperPrompter/status/2013309729167089868"
|
|
3567
|
+
"124","Game Asset - Early 2000s Video Game Render Style Transfer","","A text prompt designed to transform a given image into the aesthetic of an early 2000s video game render, specifically mimicking the look of Maya 4.0 rendering. It focuses on low-poly geometry, low-resolution textures, and atmospheric effects like fogging distant objects, while explicitly avoiding pixel art or voxel styles.","Low poly, low res textures
|
|
3568
|
+
- Distant objects get simplified and fogged out
|
|
3569
|
+
- Avoids gotchas like pixel art and voxels
|
|
3570
|
+
- Based on Maya 4.0 rendering","fofr","https://x.com/fofrAI/status/2013250137661817194"
|
|
3571
|
+
"125","Game Asset - Character Turnaround Sheet Generation","","A simple text prompt used with Nano Banana Pro to generate a three-view turnaround sheet (front, side, back) of a character based on an uploaded source image created with Stable Diffusion. This demonstrates how to quickly create character design assets.","Please create a three-view turnaround sheet for the attached girl.","Kuchan","https://x.com/kuchan5963/status/2013072871703429311"
|
|
3572
|
+
"126","Game Asset - Dramatic Character Transformation Prompt","","A Nano Banana Pro prompt designed to transform an original photo into four different photorealistic, ultra-detailed character styles, using mid close-up wide-angle shots and extreme, dynamic camera angles.","Transform the original photo into a dramatic, photorealistic, ultra-detailed set of 4 different styles characters are included , each a mid close up wide-angle shot with an extreme, dynamic camera angle with different positioned right next to the lens and appear huge.","ANKIT PATEL 🇮🇳 | AI","https://x.com/Ankit_patel211/status/2012751932407107585"
|
|
3573
|
+
"127","Game Asset - 3D Isometric Diorama of a Household Object as Architecture","","A prompt for generating a clean, minimal 3D isometric diorama where a specified household object is transformed into a small architectural structure. It emphasizes realistic materials, soft studio lighting, and a miniature architectural model style.","A clean, minimal 3D isometric diorama transforming a {argument name=""household object"" default=""HOUSEHOLD OBJECT""} into a small architectural structure. Functional elements are abstracted into doors, windows, and volumes, realistic materials, soft studio lighting, rounded edges, miniature architectural model style, neutral background.","Aleena Amir","https://x.com/aleenaamiir/status/2012743833902370831"
|
|
3574
|
+
"128","Game Asset - Generating an Isometric Room Illustration Based on a Character Concept","","A prompt used with Nano Banana Pro to generate an isometric illustration of a room that reflects a specific character's personality, explicitly excluding the character themselves from the image.","Please describe this character's room in an imaginary isometric illustration.
|
|
3575
|
+
No depiction of the person is requested.","十三不塔","https://x.com/shiisanpuutaa13/status/2012729009126416430"
|
|
3576
|
+
"129","Game Asset - 360-Degree Equirectangular Panorama Prompt","","A highly technical prompt designed to generate a seamless 360-degree equirectangular panorama image, optimized for consistent lighting and composition across the full spherical view. It specifies a historical scene and includes rules to prevent visual artifacts like seams or directional shadows, making it ideal for virtual reality environments.","[SCENE] = {argument name=""scene description"" default=""Troy, Anatolia, approx. 12th century BC. The moments after the Trojan Horse is pulled inside the city walls.""}
|
|
3577
|
+
|
|
3578
|
+
Make a 360-degree equirectangular panorama in 21:9 aspect ratio.
|
|
3579
|
+
Render the scene as a full spherical panorama with correct equirectangular projection.
|
|
3580
|
+
Set the entire environment strictly based on [SCENE].
|
|
3581
|
+
Place the camera at the exact center of the scene with a fixed viewpoint.
|
|
3582
|
+
Design the environment as a continuous, circular world with no left or right edge.
|
|
3583
|
+
Ensure the first and last horizontal edges align perfectly.
|
|
3584
|
+
Distribute architecture, people, and objects evenly around the full 360° view.
|
|
3585
|
+
Use realistic real-world lighting, materials, and physical behavior.
|
|
3586
|
+
Keep sharp focus across the entire panorama.
|
|
3587
|
+
Use uniform natural daylight with no dominant light direction.
|
|
3588
|
+
Ensure lighting intensity and color remain consistent across the full 360° panorama.
|
|
3589
|
+
Treat the environment as lit by an evenly diffused sky dome rather than a single sun source.
|
|
3590
|
+
Apply soft global shadows that do not favor any horizontal direction.
|
|
3591
|
+
Avoid directional sunlight gradients that could cause seam lighting mismatches.
|
|
3592
|
+
Avoid modern elements, UI overlays, borders, frames, cropped views, fantasy styling, or broken panorama seams.","Aimi Kōda","https://x.com/aimikoda/status/2012694679628677523"
|