The badge
The EaseClaw badge
Put it on your site and your listing's outbound link becomes dofollow. Our server reads your raw HTML to check, re-checks once a day, and flips the link back if the badge comes down. Honest in both directions.
What counts
- A plain link around a plain image. No image component, no wrapper that turns it into a button, nothing that injects it with JavaScript.
- No rel that cancels it.
nofollow,ugcandsponsoredall disqualify the anchor.relcan simply be absent. - Visible without JavaScript. It has to be in the HTML your server sends. A badge that appears after hydration is invisible to search crawlers, and to us.
Anywhere on your homepage is fine. Most people put it in the footer beside their other badges.
HTMLDrop it in your footer.
<a href="https://www.easeclaw.com/" title="Featured on EaseClaw">
<img src="https://www.easeclaw.com/badge/easeclaw-badge-dark-91f12978.svg" alt="Featured on EaseClaw" width="107" height="30" loading="lazy" style="display:block" />
</a>ReactSame markup, as a component.
export function EaseClawBadge() {
return (
<a href="https://www.easeclaw.com/" title="Featured on EaseClaw">
<img
src="https://www.easeclaw.com/badge/easeclaw-badge-dark-91f12978.svg"
alt="Featured on EaseClaw"
width={107}
height={30}
loading="lazy"
style={{ display: "block" }}
/>
</a>
);
}Prompt for your coding agentPaste it into Claude Code, Cursor, whatever you use.
Add the EaseClaw badge to our site footer (or wherever our other badges sit),
so it is present in the server-rendered HTML of the homepage.
Use exactly this markup:
<a href="https://www.easeclaw.com/" title="Featured on EaseClaw">
<img src="https://www.easeclaw.com/badge/easeclaw-badge-dark-91f12978.svg" alt="Featured on EaseClaw" width="107" height="30" loading="lazy" style="display:block" />
</a>
Rules that matter:
1. Keep it a plain <a> wrapping a plain <img>. No image component, no wrapper
that turns it into a button or injects it with JavaScript.
2. Do NOT add rel="nofollow", rel="ugc" or rel="sponsored" to the anchor. Any
of those cancels the link. rel can simply be absent.
3. It must render on the homepage without JavaScript. If it only appears
after hydration, crawlers do not see it and neither do we.
The rules: https://www.easeclaw.com/directory/badgeNot listed yet? Submit your tool. It takes about a minute, and you can verify the badge before you publish.