skills/hashtag-research/SKILL.md
Find relevant and trending hashtags for social media content
npx skillsauth add ticruz38/skills skills/hashtag-researchInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Find relevant and trending hashtags for social media platforms. Research hashtags by keywords, discover niche tags with low competition, and get suggestions based on your content.
npm install
npm run build
# Basic research
npm run cli -- research fitness workout
# With platform and limit
npm run cli -- research fitness workout -p instagram -l 30
# Specific category
npm run cli -- research startup -c business -p twitter
# Analyze content and suggest hashtags
npm run cli -- suggest "Check out my new workout routine!" -p instagram
# Limit results
npm run cli -- suggest "Vegan pasta recipe" -l 15
# All trending
npm run cli -- trending
# By platform and category
npm run cli -- trending -p instagram -c fitness -l 20
# Find low-competition hashtags
npm run cli -- niche "vegan recipes" --max-competition low
# Deep search
npm run cli -- niche "digital art" -d 30 -p instagram
npm run cli -- add --tag mycustomtag -c lifestyle --competition low
npm run cli -- stats
npm run cli -- history
npm run cli -- categories
npm run cli -- platforms
import { HashtagResearchSkill } from './index';
const skill = new HashtagResearchSkill();
await skill.initialize();
// Research hashtags
const result = await skill.research({
keywords: ['fitness', 'workout'],
platform: 'instagram',
category: 'fitness',
limit: 30,
});
console.log(result.hashtags);
console.log(result.trending);
console.log(result.niche);
// Suggest based on content
const suggestions = await skill.suggestHashtags(
'Check out my new workout routine!',
'instagram',
15
);
// Get trending
const trending = await skill.getTrending('instagram', 'fitness', 20);
// Discover niches
const niche = await skill.discoverNiches({
topic: 'vegan recipes',
platform: 'instagram',
maxCompetition: 'low',
});
// Add custom hashtag
await skill.addCustomHashtag({
tag: 'mycustomtag',
platform: 'instagram',
category: 'lifestyle',
competitionLevel: 'low',
trendingScore: 60,
relatedTags: ['custom', 'tag', 'example'],
});
await skill.close();
interface Hashtag {
id: number;
tag: string; // The hashtag (without #)
platform: SocialPlatform; // instagram, twitter, tiktok, linkedin, facebook, generic
category: HashtagCategory; // 16 categories
postCount?: number; // Estimated post count
trendingScore: number; // 0-100 trending score
relevanceScore?: number; // Calculated relevance to query
competitionLevel: 'low' | 'medium' | 'high';
relatedTags: string[]; // Related hashtags
description?: string;
lastUpdated: string;
}
SQLite database stored at ~/.openclaw/skills/hashtag-research/hashtags.db
Tables:
hashtags - Hashtag data with scores and metadatasearch_history - Search query historytrending_cache - Cached trending data| Command | Description |
|---------|-------------|
| research <keywords...> | Research hashtags by keywords |
| suggest <content> | Suggest hashtags for content |
| trending | Show trending hashtags |
| niche <topic> | Discover niche hashtags |
| add --tag <tag> | Add custom hashtag |
| stats | Show database statistics |
| history | Show search history |
| categories | List categories |
| platforms | List platforms |
| health | Health check |
| Option | Description |
|--------|-------------|
| -p, --platform | Social platform |
| -c, --category | Content category |
| -l, --limit | Result limit |
| --no-trending | Exclude trending |
| --no-niche | Exclude niche |
| --max-competition | Max competition level |
| --depth | Search depth for niche |
This skill uses a local database of curated hashtags with scoring algorithms. No API keys or external services required.
testing
Suggest recipes based on dietary preferences, available ingredients, and cuisine preferences
development
Extract data from receipt photos using Google Vision API
business
QuickBooks Online integration for accounting sync - sync customers, invoices, and transactions with two-way sync and conflict resolution
testing
QuickBooks OAuth adapter for QuickBooks Online accounting integration. Built on top of auth-provider for secure token management with automatic refresh, multi-profile support, sandbox/production toggle, and health checks.