hence-search
Original:🇺🇸 English
Translated
3 scriptsChecked / no sensitive code detected
Browse and search the Hence gallery (hence.sh) to discover projects built with AI coding agents. Use when the user wants inspiration, wants to see what others have built, asks about projects on Hence, or mentions searching for AI-built projects. Triggers on queries like "show me cool projects", "search Hence", "find CLI tools on Hence", or "what are people building with Claude Code".
2installs
Sourcehence-sh/hence-skills
Added on
NPX Install
npx skill4agent add hence-sh/hence-skills hence-searchTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Hence Search
Install from your project root directory. Runningfrom a subdirectory will install into the wrong location.npx skills add
Search the Hence gallery to find projects and draw inspiration from what others are building with AI.
Workflow
0. Authenticate
Check for existing credentials. If none found, start the device flow:
bash
python scripts/auth.py --checkIf the check fails, run the device flow:
bash
python scripts/auth.pyThe script will print a URL and a one-time code. Before running the command, tell the user they'll need to:
- Open the URL in their browser
- Log in to Hence if they aren't already (via GitHub or Google)
- Enter the code shown in the terminal
The script will wait and automatically complete once the user approves. No further action is needed from the agent after that.
For CI/CD environments, pass an API key directly:
bash
python scripts/auth.py <api-key>1. Determine search strategy
- Specific query (e.g. "Rust CLI tools"): run directly with keywords.
search.py - Broad browsing (e.g. "show me cool stuff"): run first, suggest 3–5 relevant categories, then search by topic.
fetch_metadata.py topics
2. Execute search
bash
python scripts/search.py "productivity cli"
python scripts/search.py "" --topic game --limit 10
python scripts/search.py "dashboard" --topic react --offset 20For valid topic slugs:
bash
python scripts/fetch_metadata.py topicsPass to either script for raw JSON output when further processing is needed.
--json3. Present results
For each project include:
- Title and pitch — the name and one-liner
- Built with — agent/model if available
- Link —
https://hence.sh/p/<id>
4. Connect inspiration
After showing results, ask: "Does any of this spark ideas for your current build?"
If the user identifies a project as inspiring, store its ID and title via so the skill can suggest an "Inspired by" link later.
save_memoryhence-share5. Paginate
If results are truncated, offer to load more by incrementing .
--offsetAPI details
See references/api.md for full endpoint documentation, response schemas, and available metadata endpoints.