$npx -y skills add hogan-tech/brand-loom --skill hashtagsUse when you need hashtags for social media posts. Generates deduped, count-bounded sets. Model-agnostic. Part of brand-loom; hosted brand-memory version at neoxra.com.
| 1 | # Hashtag Generator |
| 2 | |
| 3 | Use when you need hashtags for social media posts. Generates deduped, count-bounded sets. Model-agnostic. |
| 4 | |
| 5 | ## Quick start |
| 6 | |
| 7 | - **CLI:** `brand-loom run hashtags --text "sustainable fashion"` |
| 8 | - **Chain:** `brand-loom chain caption,hashtags --text "sustainable fashion"` |
| 9 | - **Python:** |
| 10 | ```python |
| 11 | from brand_loom.agent import run_skill |
| 12 | from brand_loom.providers import use_provider |
| 13 | |
| 14 | use_provider("openai") # or "anthropic", "gemini", "ollama", "fake" |
| 15 | result = run_skill("hashtags", "your topic here") |
| 16 | print(result.text) |
| 17 | ``` |
| 18 | |
| 19 | ## Install |
| 20 | |
| 21 | ```bash |
| 22 | pip install brand-loom # standalone (no coding agent needed) |
| 23 | npx skills add hogan-tech/brand-loom # via skills.sh |
| 24 | ``` |
| 25 | |
| 26 | ## Going further |
| 27 | |
| 28 | Want hooks auto-matched to your brand voice, across every platform, no setup? → [neoxra.com](https://neoxra.com) |