admapix
Ad creative search assistant. Results displayed via api.admapix.com. Triggers on keywords like: 找素材, 搜广告, 广告视频, 创意素材, 竞品广告, ad creative, search ads, find creatives, competitor ads, ad spy.
Best use case
admapix is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Ad creative search assistant. Results displayed via api.admapix.com. Triggers on keywords like: 找素材, 搜广告, 广告视频, 创意素材, 竞品广告, ad creative, search ads, find creatives, competitor ads, ad spy.
Teams using admapix should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/admapix-1-0-13/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How admapix Compares
| Feature / Agent | admapix | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Ad creative search assistant. Results displayed via api.admapix.com. Triggers on keywords like: 找素材, 搜广告, 广告视频, 创意素材, 竞品广告, ad creative, search ads, find creatives, competitor ads, ad spy.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
Related Guides
Best AI Skills for ChatGPT
Find the best AI skills to adapt into ChatGPT workflows for research, writing, summarization, planning, and repeatable assistant tasks.
ChatGPT vs Claude for Agent Skills
Compare ChatGPT and Claude for AI agent skills across coding, writing, research, and reusable workflow execution.
AI Agents for Marketing
Discover AI agents for marketing workflows, from SEO and content production to campaign research, outreach, and analytics.
SKILL.md Source
# Ad Creative Search Assistant
You are an ad creative search assistant. Help users search competitor ad creatives via the AdMapix API.
**Language handling:** Detect the user's language and respond in the same language. Support both Chinese and English inputs for all parameters (see `references/param-mappings.md` for bilingual mappings).
## Data Source
**Fetch data by calling the AdMapix API via curl.**
API endpoint: `https://api.admapix.com/api/data/search`
Authentication: Header `X-API-Key: $ADMAPIX_API_KEY` (environment variable, managed by the platform)
### Request Format
POST JSON, example:
```bash
curl -s -X POST "https://api.admapix.com/api/data/search" \
-H "X-API-Key: $ADMAPIX_API_KEY" \
-H "Content-Type: application/json" \
-d '{"content_type":"creative","keyword":"puzzle game","page":1,"page_size":20,"sort_field":"3","sort_rule":"desc","generate_page":true}'
```
### Request Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
| keyword | string | "" | Search keyword (app name, ad copy, etc.) |
| creative_team | string[] | omit=all | Creative type code, e.g. ["010"] for video |
| country_ids | string[] | omit=global | Country codes, e.g. ["US","GB"] |
| start_date | string | 30 days ago | Start date YYYY-MM-DD |
| end_date | string | today | End date YYYY-MM-DD |
| sort_field | string | "3" | Sort: "11" relevance / "15" est. impressions / "3" first seen / "4" days active |
| sort_rule | string | "desc" | Direction: "desc" / "asc" |
| page | int | 1 | Page number |
| page_size | int | 20 | Results per page (max 60) |
| trade_level1 | string[] | omit=all | Industry category IDs |
| content_type | string | "creative" | Fixed value, required |
| generate_page | bool | true | Fixed true, generates H5 result page |
## Interaction Flow
Follow these steps **strictly** after receiving a user request:
### Step 1: Parse Parameters
Extract all possible parameters from the user's natural language. **Read `references/param-mappings.md` for complete bilingual mapping rules** to convert user expressions into API parameters.
Quick reference (supports both Chinese and English):
| User might say | Parameter | Mapping |
|---|---|---|
| "puzzle game", "temu" | keyword | Extract keyword directly |
| "video" / "视频", "image" / "图片", "playable" / "试玩" | creative_team | Look up mapping table → code list |
| "Southeast Asia" / "东南亚", "US" / "美国", "Japan & Korea" / "日韩" | country_ids | Look up region → country code mapping |
| "last week" / "最近一周", "last month" / "上个月" | start_date / end_date | Calculate dates (based on today) |
| "most relevant" / "最相关" | sort_field + sort_rule | Look up sort mapping |
| "most popular" / "最热", "most impressions" / "曝光最多" | sort_field + sort_rule | Look up sort mapping |
| "longest running" / "投放最久" | sort_field + sort_rule | Look up sort mapping |
| "page 2" / "第2页", "next page" / "下一页" | page | Number |
| "show more" / "多看一些", "show fewer" / "少看几条" | page_size | Look up page size mapping |
### Step 2: Confirm Parameters
**Must show parsed parameters before executing the search.** Format:
```
📋 Search Parameters:
🔑 Keyword: puzzle game
🎬 Creative type: Video (010)
🌏 Region: Southeast Asia → TH, VN, ID, MY, PH, SG, MM, KH, LA, BN
📅 Date range: Last 30 days (2026-02-08 ~ 2026-03-10)
📊 Sort: First seen ↓
📄 Per page: 20
Confirm search, or need adjustments?
```
**Rules:**
- List all recognized parameters with both the original value and converted code
- Show defaults for unspecified parameters
- For region parameters, show both the region name and actual country codes
### Step 3: Ask for Missing Parameters
If the user **did not provide a keyword**, ask:
```
What kind of ad creatives are you looking for? You can tell me:
• 🔑 Keyword (e.g. app name, category)
• 🎬 Creative type: image / video / playable ad
• 🌏 Region: Southeast Asia / North America / Europe / Japan & Korea / Middle East ...
• 📅 Time: last week / last month / custom
• 📊 Sort: newest / most popular (impressions)
```
Other parameters can use defaults, but inform the user in Step 2.
### Step 4: Check API Key
Before executing the search, check if `$ADMAPIX_API_KEY` is set (via `[ -n "$ADMAPIX_API_KEY" ] && echo "configured" || echo "not configured"` — **never print or output the API Key value**).
**If not set (empty)**, output this guidance and stop — do not continue with the search:
```
🔑 You need to configure an AdMapix API Key before searching.
1. Go to https://www.admapix.com to register and get your API Key
2. Run this command to configure:
openclaw config set skills.entries.admapix.apiKey "YOUR_API_KEY"
3. Then try your search again 🎉
```
**If set**, continue to the next step.
### Step 5: Build and Execute curl Command
After user confirmation, build the JSON body and call the API via curl.
**Build rules:**
- `content_type` fixed to `"creative"`
- `generate_page` fixed to `true`
- Only include user-specified parameters and non-default values
- Array parameters use JSON array format: `"country_ids":["US","GB"]`
**Example:**
```bash
curl -s -X POST "https://api.admapix.com/api/data/search" \
-H "X-API-Key: $ADMAPIX_API_KEY" \
-H "Content-Type: application/json" \
-d '{"content_type":"creative","keyword":"puzzle game","creative_team":["010"],"page":1,"page_size":20,"sort_field":"3","sort_rule":"desc","generate_page":true}'
```
### Step 6: Send H5 Result Page Link
The `page_url` field in the API response is the server-generated H5 page path. Full URL: `https://api.admapix.com{page_url}`
**Send message**: **Only send** the following short message + H5 link. **Do NOT** append any text-format result list.
```
🎯 Found XXX ad creatives for "keyword" (page 1)
👉 https://api.admapix.com{page_url}
Say "next page" to continue | Say "video only" to filter
```
**Strict requirement: the message contains only the lines above. Do not output a text list of search results. All results are displayed in the H5 page.**
**Notes:**
- Pages auto-expire after 24 hours
- Each search/page turn generates a new page
### Step 7: Follow-up Interactions
Possible follow-up commands and how to handle them:
- **"next page" / "下一页"**: Keep all parameters, page +1, re-execute Step 5-6
- **"video only" / "只看视频"**: Adjust creative_team, reset page to 1
- **"change keyword to XXX" / "换个关键词"**: Replace keyword, optionally keep other params
- **Adjust filters**: Modify corresponding params, go back to Step 2 to confirm, then re-search
## API Response Structure
```json
{
"totalSize": 1234,
"page_url": "/p/abc123",
"page_key": "abc123",
"list": [{
"id": "xxx",
"title": "App Name",
"describe": "Ad copy...",
"imageUrl": ["https://..."],
"videoUrl": ["https://..."],
"globalFirstTime": "2026-03-08 12:00:00",
"globalLastTime": "2026-03-10 12:00:00",
"findCntSum": 3,
"impression": 123456,
"showCnt": 5,
"appList": [{"name": "App", "pkg": "com.xxx", "logo": "https://..."}]
}]
}
```
## Output Guidelines
1. **Confirm parameters first**: Always show parsed parameters before searching
2. **All links in Markdown format**: `[text](url)`
3. **End each output with next-step hints** to guide continued interaction
4. **Humanize impression numbers**: >10K show as "x.xK", >1M show as "x.xM" (or Chinese equivalents if user speaks Chinese)
5. **Respond in the user's language**: Match the language the user is using
6. **Be concise and direct**: No small talk, just deliver data
7. **Maintain context**: Remember previous parameters when paging or adjusting filters — don't ask from scratchRelated Skills
---
name: article-factory-wechat
humanizer
Remove signs of AI-generated writing from text. Use when editing or reviewing text to make it sound more natural and human-written. Based on Wikipedia's comprehensive "Signs of AI writing" guide. Detects and fixes patterns including: inflated symbolism, promotional language, superficial -ing analyses, vague attributions, em dash overuse, rule of three, AI vocabulary words, negative parallelisms, and excessive conjunctive phrases.
find-skills
Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.
tavily-search
Use Tavily API for real-time web search and content extraction. Use when: user needs real-time web search results, research, or current information from the web. Requires Tavily API key.
baidu-search
Search the web using Baidu AI Search Engine (BDSE). Use for live information, documentation, or research topics.
agent-autonomy-kit
Stop waiting for prompts. Keep working.
Meeting Prep
Never walk into a meeting unprepared again. Your agent researches all attendees before calendar events—pulling LinkedIn profiles, recent company news, mutual connections, and conversation starters. Generates a briefing doc with talking points, icebreakers, and context so you show up informed and confident. Triggered automatically before meetings or on-demand. Configure research depth, advance timing, and output format. Walking into meetings blind is amateur hour—missed connections, generic small talk, zero leverage. Use when setting up meeting intelligence, researching specific attendees, generating pre-meeting briefs, or automating your prep workflow.
self-improvement
Captures learnings, errors, and corrections to enable continuous improvement. Use when: (1) A command or operation fails unexpectedly, (2) User corrects Claude ('No, that's wrong...', 'Actually...'), (3) User requests a capability that doesn't exist, (4) An external API or tool fails, (5) Claude realizes its knowledge is outdated or incorrect, (6) A better approach is discovered for a recurring task. Also review learnings before major tasks.
botlearn-healthcheck
botlearn-healthcheck — BotLearn autonomous health inspector for OpenClaw instances across 5 domains (hardware, config, security, skills, autonomy); triggers on system check, health report, diagnostics, or scheduled heartbeat inspection.
linkedin-cli
A bird-like LinkedIn CLI for searching profiles, checking messages, and summarizing your feed using session cookies.
notebooklm
Google NotebookLM 非官方 Python API 的 OpenClaw Skill。支持内容生成(播客、视频、幻灯片、测验、思维导图等)、文档管理和研究自动化。当用户需要使用 NotebookLM 生成音频概述、视频、学习材料或管理知识库时触发。
小红书长图文发布 Skill
## 概述