image-generation-tools
NewImage generation and editing tools
Overview
A collection of skills for Claude agents to perform specialized tasks.
What Are Skills?
Skills are folders of instructions, scripts, and resources that Claude loads dynamically to improve performance on specialized tasks. They teach Claude how to complete specific tasks in a repeatable way.
Available Skills
This repository contains 6 specialized skills organized by domain:
๐จ Content Creation & Brand Management
Generate FeedMob-branded content including reports, presentations, charts, and artifacts following official brand guidelines.
Key Features:
- โขComplete FeedMob brand identity system (colors, typography, logos)
- โขProfessional design guidelines for reports and presentations
- โขData visualization standards with consistent color mapping
- โขLogo usage specifications and asset management
- โขQuality checklists for brand compliance
Use when: Creating any FeedMob-branded materials, reports, presentations, charts, or marketing content.
Create, edit, and analyze PowerPoint presentations with professional styling, themes, and layouts using python-pptx and OOXML manipulation.
Key Features:
- โขMultiple color schemes (FeedMob, Binance, Professional, Modern, Corporate)
- โขAutomatic background selection based on content
- โขSmart logo insertion and brand consistency
- โขAdvanced slide types (metrics dashboards, comparisons, two-column layouts)
- โขDirect OOXML editing for complex modifications
- โขDesign principles implementation (6x6 rule, typography standards, grid alignment)
Use when: Creating or editing PowerPoint presentations, especially for FeedMob or professional business contexts.
๐ Data Analysis & Processing
Generate and execute SQL queries against the civitai_records PostgreSQL database to analyze video performance on Civitai platform.
Key Features:
- โขNatural language to SQL query generation
- โขEngagement metrics analysis (likes, hearts, comments)
- โขTag and theme performance analysis
- โขWeekly report generation (JSON/HTML formats)
- โขWoW (week-over-week) comparison analysis
- โขBilingual support (English/ไธญๆ)
Use when: Analyzing Civitai video performance, engagement metrics, content strategy, or generating weekly reports.
Triggers: Civitai, video stats, engagement, likes, hearts, comments, weekly report, tag analysis, quality score, ๆฐๆฎๅๆ, ่ง้ข่กจ็ฐ, ๅจๆฅ
Parse URLs in CSV files and extract query parameters as new columns for data analysis.
Key Features:
- โขAutomatic URL column detection
- โขQuery parameter extraction and column creation
- โขMultiple value handling (joined with '|')
- โขBatch processing of multiple CSV files
- โขPreserves original data integrity
Use when: Working with CSV files containing URLs that need parameter extraction and analysis.
๐ค AI & Media Generation
Generate, edit, or transform images using Gemini AI (Flash or Pro models) with support for various aspect ratios, resolutions, and image-to-image transformations.
Key Features:
- โขText-to-image generation with customizable aspect ratios
- โขImage editing and image-to-image transformations
- โขLogo overlay capabilities
- โขReference image support (up to 14 images on Pro)
- โขMultiple resolution options (1K, 2K, 4K on Pro)
- โขAspect ratio support: 1:1, 2:3, 3:2, 3:4, 4:3, 4:5, 5:4, 9:16, 16:9, 21:9
Use when: Generating images from text, editing existing images, placing logos, or creating image variations.
Automatically fetch and summarize the latest AI news, research, and industry developments from multiple authoritative sources.
Key Features:
- โขMulti-source news aggregation (TechCrunch, VentureBeat, arXiv, etc.)
- โขCategorized search (general news, research papers, company announcements, market trends)
- โขCustomizable output formats (brief, detailed, report)
- โขTime-based filtering (daily, weekly updates)
- โขSource quality prioritization
- โขTopic-specific deep dives
Use when: Requesting daily AI news updates, latest AI research, industry trends, or automated briefings.
Skill Compatibility Matrix
Some skills work exceptionally well together. Here are recommended combinations:
| Primary Skill | Compatible With | Use Case |
|---|---|---|
| feedmob-presentations | feedmob-brand-guidelines | Create branded FeedMob PowerPoint presentations with automatic brand compliance |
| gemini-image-generator | feedmob-presentations | Generate custom images and insert them into presentation slides |
| civitai-analyst | feedmob-presentations | Create visual reports from Civitai analytics data |
| ai-news-daily | feedmob-presentations | Generate AI industry briefing presentations |
| url-parameter-parser | civitai-analyst | Process CSV data before database analysis |
Quick Start Examples
Example 1: Create a Branded FeedMob Presentation
# Automatically uses feedmob-brand-guidelines for compliance
# and feedmob-presentations for generation
"Create a FeedMob presentation about Q1 analytics results
with title slide, 3 content slides, and a metrics dashboard"Example 2: Analyze Civitai Video Performance
# Uses civitai-analyst skill
"Show me the top 10 performing videos this week with
engagement metrics and tag analysis"
# Or in Chinese:
"็ๆๆฌๅจ็่ง้ข่กจ็ฐๅจๆฅ"Example 3: Generate Marketing Images
# Uses gemini-image-generator skill
"Generate a 16:9 hero image for our landing page featuring
a modern office with people using mobile devices.
Give me 3 variations in 2K resolution."Example 4: Daily AI News Briefing
# Uses ai-news-daily skill
"Give me today's top AI news stories focusing on
LLMs and computer vision developments"Example 5: Process URL Data
# Uses url-parameter-parser skill
"Extract all query parameters from the URLs in
campaign_data.csv and add them as new columns"Trigger Keywords Reference
Skills can be automatically activated when you mention certain keywords or phrases:
| Skill | Trigger Keywords/Phrases |
|---|---|
| feedmob-brand-guidelines | FeedMob branding, brand guidelines, FeedMob colors, FeedMob logo, branded content |
| feedmob-presentations | PowerPoint, PPT, presentation, slides, create presentation |
| civitai-analyst | Civitai, video stats, engagement, likes, hearts, comments, weekly report, tag analysis, ๆฐๆฎๅๆ, ่ง้ข่กจ็ฐ, ๅจๆฅ |
| url-parameter-parser | URL parameters, parse URLs, CSV, extract parameters, query string |
| gemini-image-generator | generate image, edit image, Gemini, image generation, aspect ratio, logo overlay |
| ai-news-daily | AI news, latest AI, AI research, AI trends, AI developments, daily briefing |
Project Structure
agent-skills/
โโโ .claude-plugin/ # Claude Code plugin configuration
โโโ skills/ # 6 skill implementations
โ โโโ ai-news-daily/
โ โโโ civitai-analyst/
โ โโโ feedmob-brand-guidelines/
โ โโโ feedmob-presentations/
โ โโโ gemini-image-generator/
โ โโโ url-parameter-parser/
โโโ spec/ # Agent Skills specification
โโโ template/ # Skill template for creating new skills
โโโ README.mdCreating a Skill
Skills are simple to createโjust a folder with a SKILL.md file containing YAML frontmatter and instructions:
---
name: my-skill-name
description: A clear description of what this skill does and when to use it
---
# My Skill Name
[Add your instructions here that Claude will follow when this skill is active]
## Examples
- Example usage 1
- Example usage 2
## Guidelines
- Guideline 1
- Guideline 2Required Frontmatter Fields
- โข
name- Unique identifier (lowercase, hyphens for spaces) - โข
description- Complete description of skill purpose and use cases
Using Skills
Claude Code
You can register this repository as a Claude Code Plugin marketplace by running the following command in Claude Code:
/plugin marketplace add feed-mob/agent-skillsThen, to install a specific set of skills:
- Select
Browse and install plugins - Select
feedmob-agent-skills - Select
feedmob-content-toolsordata-processing-tools - Select
Install now
Alternatively, directly install either Plugin via:
/plugin install feedmob-content-tools@feedmob-agent-skills
/plugin install data-processing-tools@feedmob-agent-skillsAfter installing the plugin, you can use the skill by just mentioning it.
Claude.ai
To use any skill from this repository or upload custom skills, follow the instructions in Using skills in Claude.
Claude API
Use pre-built or custom skills via the API. See the Skills API documentation.
Getting Started
- Browse the
skills/directory for examples - Use the
template/directory as a starting point for new skills - Follow the
spec/for detailed guidelines
Install & Usage
mkdir -p .claude/skillsmkdir -p .claude/skills && curl -o .claude/skills/image-generation-tools.md https://raw.githubusercontent.com/feed-mob/agent-skills/main/SKILL.md/image-generation-toolsFrequently Asked Questions
What is image-generation-tools?
Image generation and editing tools
How to install image-generation-tools?
To install image-generation-tools, create the .claude/skills directory in your project, then run the curl command to download the skill file. Once installed, invoke it in Claude Code with /image-generation-tools.
What is image-generation-tools best for?
image-generation-tools is a community categorized under Development. Created by FeedMob Inc..