AI Prompts
Curated prompts and prompt engineering resources — system prompts, templates, jailbreak-proof patterns, and libraries that help you get better results from any AI model.
🍌 World's largest Nano Banana Pro prompt library — 10,000+ curated prompts with preview images, 16 languages. Google Gemini AI image generation. Free & open source.
notes for software engineers getting up to speed on new AI developments. Serves as datastore for https://latent.space writing, and product brainstorming, but has cleaned up canonical references under the /Resources folder.
This repository contains a hand-curated resources for Prompt Engineering with a focus on Generative Pre-trained Transformer (GPT), ChatGPT, PaLM etc
The open source AI engineering platform for agents, LLMs, and ML models. MLflow enables teams of all sizes to debug, evaluate, monitor, and optimize production-quality AI applications while controlling costs and managing access to models and data.
21 Lessons, Get Started Building with Generative AI
A collection of GPT system prompts and various prompt injection/leaking knowledge.
LangGPT: Empowering everyone to become a prompt expert! 🚀 📌 结构化提示词(Structured Prompt)提出者 📌 元提示词(Meta-Prompt)发起者 📌 最流行的提示词落地范式 | Language of GPT The pioneering framework for structured & meta-prompt design 10,000+ ⭐ | Battle-tested by thousands of users worldwide Created by 云中江树
Awesome curated collection of images and prompts generated by GPT-4o and gpt-image-1. Explore AI generated visuals created with ChatGPT and Sora, showcasing OpenAI’s advanced image generation capabilities.
Community-contributed instructions, agents, skills, and configurations to help you make the most of GitHub Copilot.
ChatGPT 中文指南🔥,ChatGPT 中文调教指南,指令指南,应用开发指南,精选资源清单,更好的使用 chatGPT 让你的生产力 up up up! 🚀
LEAKED SYSTEM PROMPTS FOR CHATGPT, GEMINI, GROK, CLAUDE, PERPLEXITY, CURSOR, DEVIN, REPLIT, AND MORE! - AI SYSTEMS TRANSPARENCY FOR ALL! 👐
Structured Outputs
AI Observability & Evaluation
232+ Claude Code skills & agent plugins for Claude Code, Codex, Gemini CLI, Cursor, and 8 more coding agents — engineering, marketing, product, compliance, C-level advisory.
Streamlined interface for generating images with AI in Krita. Inpaint and outpaint with optional text prompt, no tweaking required.
Official implementation for the paper: "Code Generation with AlphaCodium: From Prompt Engineering to Flow Engineering""
[CVPR 2026] PromptEnhancer is a prompt-rewriting tool, refining prompts into clearer, structured versions for better image generation.
🚀 An awesome list of curated Nano Banana pro prompts and examples. Your go-to resource for mastering prompt engineering and exploring the creative potential of the Nano banana pro(Nano banana 2) AI image model.
A playground to generate images from any text prompt using Stable Diffusion (past: using DALL-E Mini)
Structured data gathering from any website using AI-powered scraper, crawler, and browser automation. Scraping and crawling with natural language prompts. Equip your LLM agents with fresh data. AI Studio python SDK for intelligent web data gathering.
Curated list of chatgpt prompts from the top-rated GPTs in the GPTs Store. Prompt Engineering, prompt attack & prompt protect. Advanced Prompt Engineering papers.
Guide and resources for prompt...
A free, open-source course on communicating with artificial...
A short course by Isa Fulford (OpenAI) and Andrew Ng...
Curated GPT-Image-2 prompts for the OpenAI API — portraits, posters, UI mockups, game screenshots, character sheets, and more. Ready-to-use prompts for gpt-image-2.
Enhance AI art creation with tailored prompts and versatile...
Revolutionize AI prompt creation with real-time optimization and...
Scale your content creation and get the best writing from ChatGPT, Copilot, and other AIs. Build and fine-tune prompts for any kind of content, from...
provides a step-by-step guide for beginners to understand and develop AI skills. It covers foundational topics like programming (Python), mathematics, and...
Enhance browsing with integrated AI text...
Optimize ChatGPT prompts, compare outcomes, boost...
Revolutionize eCommerce content creation with tailored, engaging copy...
Unleash creativity with customizable, randomized prompt...
Unleash AI creativity with diverse, free, community-powered content...
Unlock AI creativity: market, monetize, and master generative...
ChatGPT prompt engineering...
Your All-in-one Prompt Management...
Discover, share, and monetize AI prompts effortlessly with...
Enhance AI interactions with 30,000+ tailored...
Practical AI collaboration playbook for research, writing, reading, and coding: article, prompts, agent rules, and reusable skills.
All in One AI Chat Tool( GPT-4 / GPT-3.5 /OpenAI API/Azure OpenAI/Prompt Template Engine)
Elevate AI creativity with intuitive prompt customization and real-time...
Prompt Engineering Platform for Generative...
Harness AI to streamline content creation and workflow...
Streamline AI prompt management, enhance productivity, and...
Enhance AI capabilities with expertly crafted prompts for diverse...
Prompt Refine is an LLM playground designed to help you run better prompt...
Access 100+ expertly designed ChatGPT prompts for various...
Elevate AI interactions with curated, high-impact conversation...
Refine AI interactions with additive, manageable...
Revolutionize AI interactions with customizable, industry-spanning prompt...
Boost creativity, optimize SEO, enhance content...
Auto-prompts for creative...
Optimize content creation and SEO with AI-enhanced...
Top Capabilities
Browse all →Analyzes selected code or entire files and generates natural language explanations of what the code does, how it works, and why certain patterns were chosen. The feature can produce documentation in multiple formats (docstrings, comments, markdown) and supports various documentation styles (JSDoc, Sphinx, etc.). Developers can request explanations at different levels of detail (high-level overview, line-by-line breakdown, architectural context) through the chat interface, with responses appearing as formatted text or code comments.
Translates non-English speech directly to English text using the same Transformer encoder-decoder architecture by prepending a 'translate' task token during decoding, bypassing explicit transcription. The AudioEncoder processes mel spectrograms identically to transcription, but the TextDecoder generates English tokens directly from audio embeddings. This end-to-end approach avoids cascading errors from intermediate transcription-then-translation pipelines and enables language-agnostic audio understanding.
Detects the spoken language in audio by analyzing the AudioEncoder embeddings and using the TextDecoder to predict a language token before generating transcription text. Language detection is implicit in the multitask training; the model learns to identify language from acoustic features without a separate classification head. Supports 99 languages with varying confidence based on training data representation (English: 65% of training data, others: 0.1-2%).
Maintains conversation history within a single chat session, allowing developers to ask follow-up questions, request refinements, and build on previous responses without re-providing context. The extension manages conversation state (messages, responses, context) and sends the full conversation history to ChatGPT's API with each request, enabling contextual understanding of refinement requests like 'make it faster' or 'add error handling'.
Generates new code snippets based on natural language descriptions by sending the user's intent and current editor selection context to OpenAI's API, then inserting the generated code at the cursor position or displaying it in the sidebar. The extension reads the active editor's selected text to provide code context, enabling the model to generate syntactically appropriate code for the detected language. Generation is triggered via keyboard shortcut (Ctrl+Alt+G), command palette, or toolbar button.
Generates docstrings, comments, and API documentation for functions, classes, and modules by analyzing code structure and semantics using GPT-4o. The extension detects function signatures, parameter types, and return types, then generates documentation in multiple formats (JSDoc, Python docstrings, Javadoc, etc.) matching the language and project conventions. Generated docs are inserted inline with proper indentation and formatting.
Analyzes staged or modified code changes in the current Git repository and generates descriptive commit messages using the configured AI provider. The feature integrates with VS Code's Git context to identify changed files and diffs, then sends this information to the AI model to produce commit messages following conventional commit formats or project-specific conventions. This automation reduces the cognitive load of writing commit messages while maintaining code quality and repository history clarity.
Offers a freemium pricing structure where basic problem detection and explanations are available for free, with premium features (likely advanced fix generation, priority support, or higher API quotas) available through paid subscription. The free tier includes GNN-based problem detection and LLM-powered explanations using Metabob's default backend, while premium tiers likely unlock OpenAI ChatGPT integration, higher analysis quotas, or team features. Pricing details are not publicly documented in the marketplace listing.
Browse Other Types
Autonomous AI systems that act on your behalf
ModelsFoundation models, fine-tunes, and specialized AI models
MCP ServersModel Context Protocol tools and integrations
RepositoriesOpen-source AI projects on GitHub
APIsProgrammatic endpoints for AI capabilities
ExtensionsBrowser and IDE extensions powered by AI
View all 14 types →