---
name: Hashtag Generator
slug: hashtags
category: Writing
description: Generates deduplicated, count-bounded hashtag sets for social media posts. Model-agnostic and useable from CLI, chain, or Python.
github: "https://github.com/hogan-tech/brand-loom/tree/main/skills/hashtags"
language: Python
stars: 21
forks: 2
install: "git clone https://github.com/hogan-tech/brand-loom"
added: 2026-07-16T13:43:12.317Z
last_synced: 2026-07-18T04:41:48.763Z
canonical_url: "https://dirskills.com/skills/hashtags"
---

# Hashtag Generator

Generates deduplicated, count-bounded hashtag sets for social media posts. Model-agnostic and useable from CLI, chain, or Python.

**Install:** `git clone https://github.com/hogan-tech/brand-loom`

## README

# Hashtag Generator

Use when you need hashtags for social media posts. Generates deduped, count-bounded sets. Model-agnostic.

## Quick start

- **CLI:**  `brand-loom run hashtags --text "sustainable fashion"`
- **Chain:** `brand-loom chain caption,hashtags --text "sustainable fashion"`
- **Python:**
  ```python
  from brand_loom.agent import run_skill
  from brand_loom.providers import use_provider

  use_provider("openai")  # or "anthropic", "gemini", "ollama", "fake"
  result = run_skill("hashtags", "your topic here")
  print(result.text)
  ```

## Install

```bash
pip install brand-loom            # standalone (no coding agent needed)
npx skills add hogan-tech/brand-loom  # via skills.sh
```

## Going further

Want hooks auto-matched to your brand voice, across every platform, no setup? → [neoxra.com](https://neoxra.com)
