CCM
/Skills
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Skill index
  • MCP index
  • Marketplace index
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by mertbuilds.com

Independent project, not affiliated with Anthropic
PicsArt avatar

Text To Visual

PicsArt/gen-ai-skills
233 installs4 starsMIT
Summary

Three ways to turn text into images through Picsart's gen-ai CLI, consolidated into one skill with mode references. You read a paragraph and need an inline visual, you use single mode. You have a full blog draft, you use article-set mode for hero plus supporting images. You need an OG image from a URL, there's a mode for that too. The skill pushes you to extract signals first instead of throwing raw text at the generator, which matters because literal interpretations look dead. Each mode has its own prompt templates and aspect ratio guidance. If you're already using Picsart's CLI for other work, this gives you a clean entry point for content illustration without hunting through separate skills.

Install to Claude Code

npx -y skills add PicsArt/gen-ai-skills --skill text-to-visual --agent claude-code

Installs into .claude/skills of the current project.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
Files
SKILL.mdView on GitHub

Text to Visual

A single skill that covers every "given text, produce a matching image" workflow Picsart's gen-ai CLI supports. Use when the user has any kind of written content — a paragraph, a blog draft, a URL — and needs visuals generated from it. Replaces three narrower skills with one entry point and three mode references.

Input: text (paragraph, article, or URL). Output: one or more images matched to the text's tone, topic, and target placement.

When to Use

ModeTrigger phrasesReference
single"match a visual to this paragraph", "inline image for this section", "one visual for this content"references/modes/single.md
article-set"illustrate this blog post", "hero + inline visuals for an article", "full visual set for a draft"references/modes/article-set.md
og"OG image for this URL", "open graph preview", "Twitter card image", "dynamic meta image"references/modes/og.md

If the user wants product photos transformed, that's product-photo-studio. If they want video, that's gen-ai-use.

Prerequisites

Picsart gen-ai CLI installed and authenticated:

curl -fsSL https://picsart.com/gen-ai-cli/install.sh | bash
gen-ai login
gen-ai whoami

Per-mode setup (caching, serverless endpoints, font choices) is documented inside each mode reference.

How to Run

  1. Identify the mode from the user's request using the table in When to Use.
  2. Load the corresponding mode reference: Read references/modes/<mode>.md.
  3. Follow the procedure described there — extract text signals, build prompt, generate.
  4. Return to this SKILL.md only when switching modes mid-task.

Quick Reference

# Single image from a prompt
gen-ai generate --model <model> --prompt "<derived from text>"

# Estimate cost first
gen-ai pricing --model <model> --count <N>

# Browse available models
gen-ai models

Prompt-construction patterns (how to derive a prompt from a paragraph, an article, or a URL's metadata) live in the individual mode references.

Procedure

Shared outer loop:

  1. Extract signals — pull subject, tone, palette hints, and target dimensions from the input text.
  2. Build prompt — translate signals into a gen-ai prompt; each mode has its own template.
  3. Estimate — gen-ai pricing before committing for multi-image runs.
  4. Generate — invoke gen-ai generate. Stream progress.
  5. Place — drop into the right slot: PDP, blog frontmatter, OG meta tag, social variant.

Pitfalls

  • Don't generate from raw text. Always extract signals first; raw paragraphs produce literal, lifeless images.
  • Match aspect ratio to placement. OG = 1200×630, blog hero = 16:9, social = varies.
  • Cache OG images. Don't regenerate on every page view — see references/modes/og.md.
  • Mode-specific pitfalls live inside the individual mode references.

Verification

# Confirm output exists and matches expected dimensions
gen-ai inspect outputs/<run>/<image>.png

# Spot-check the visual matches the source text by re-reading both side by side

See also

  • product-photo-studio — transform existing product photos
  • gen-ai-use — foundational gen-ai CLI reference
Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
Categories
AI & Agent BuildingDesign & UI/UX
First SeenJul 6, 2026
View on GitHub

More from PicsArt/gen-ai-skills

All 20 skills →
  • Gen Ai Explainer223
  • Product Photo Studio223
  • Dev App Assets222
  • Gen Ai Persona Creation220
  • Prosumer Headshot Studio220
  • Dev Avatar Service217
  • Marketer Ad Variant Factory216
  • Agency Multi Brand Pack215
  • Dev Screenshot Beautifier215
  • Marketer Localize Campaign214
  • Agency Brand Scoping213
  • Agency Client Handoff213
  • Enterprise Brand Governor213
  • Multi Channel Bundle212
  • Enterprise Pinned Registry210
  • Enterprise Press Batch210
  • Picsart Api139
  • Agency Pitch Mockups5
  • Gen Ai Use262

Recommended

More AI & Agent Building →
proffesor-for-testing avatar
test-automation-strategy

proffesor-for-testing/agentic-qe

Design and implement effective test automation with proper pyramid, patterns, and CI/CD integration. Use when building automation frameworks or improving test efficiency.
233
434
prompt-security avatar
clawsec-clawhub-checker

prompt-security/clawsec

ClawHub reputation checker for clawsec-suite. Adds a standalone reputation gate before guarded skill installation.
233
1.1k
prompt-security avatar
clawsec-feed

prompt-security/clawsec

Security advisory feed package for OpenClaw-related threats and vulnerabilities. The upstream feed is updated daily; local automation is handled by clawsec-suite or the operator.
233
1.1k
jup-ag avatar
jupiter-lend

jup-ag/agent-skills

Interact with Jupiter Lend Protocol. Read-only SDK (@jup-ag/lend-read) for querying liquidity pools, lending markets (jlTokens), and vaults. Write SDK (@jup-ag/lend) for lending (deposit/withdraw) and vault operations (deposit collateral, borrow, repay, manage positions).
232
80
lllllllama avatar
explore-run

lllllllama/ai-paper-reproduction-skill

explore run
232
289
paulrberg avatar
work

paulrberg/agent-skills

Orchestrate end-to-end implementation: execute directly or delegate independent tracks, integrate, and verify the requested outcome.
232
69