スキル一覧に戻る
ghostmind-dev

banana

by ghostmind-dev

0🍴 0📅 2025年11月30日
GitHubで見るManusで実行

SKILL.md


name: banana description: Generate images using Google's Gemini image generation model with Deno. Use this skill when the user wants to create AI-generated images, perform image-to-image transformations, or generate visual content from text prompts. Triggers include requests like "generate an image of...", "create a picture of...", "make an image with...", or "transform this image to...".

Banana Image Generation Skill

Generate images using Google's Gemini 2.0 Flash image generation model, running with Deno.

Quick Start

Generate an image from a text prompt:

deno run --allow-all scripts/generate-image.ts "A cat eating a nano-banana in a fancy restaurant"

Transform an existing image:

deno run --allow-all scripts/generate-image.ts "Make this cat wear a top hat" --input cat.png --output fancy-cat.png

Requirements

  • GOOGLE_API_KEY environment variable must be set
  • Deno runtime

Script Usage

The scripts/generate-image.ts script supports:

FlagDescription
<prompt>Text description of the image to generate (required)
--input <path>Input image for image-to-image generation (optional)
--output <path>Output path for generated image (default: generated-image.png)

Examples

Text-to-image:

deno run --allow-all scripts/generate-image.ts "A futuristic city at sunset"

Image-to-image with custom output:

deno run --allow-all scripts/generate-image.ts "Add a rainbow to the sky" --input landscape.jpg --output rainbow-landscape.png

Programmatic Usage

Import and use in Deno scripts:

import { generateImage } from "./scripts/generate-image.ts";

await generateImage({
  prompt: "A nano-banana floating in space",
  outputPath: "space-banana.png"
});

With input image:

await generateImage({
  prompt: "Make this banana purple",
  imagePath: "banana.png",
  outputPath: "purple-banana.png"
});

スコア

総合スコア

50/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です