claw-mobile-submit
v0.1.0
Published
Submit your vibe-coded project to claw.mobile for a free dofollow backlink. Works standalone or inside AI agents (Claude Code, Cursor, etc.).
Downloads
16
Maintainers
Readme
claw-mobile-submit
Submit your vibe-coded project to claw.mobile for a free dofollow backlink.
Works standalone or inside AI agents (Claude Code, Cursor, etc.). No API key, no signup, no cost for the free tier.
Why this exists
You built a micro-SaaS in a weekend. It has zero backlinks, zero authority, Google doesn't know it exists. Most directories are spam or paid. claw.mobile gives away permanent dofollow backlinks to every approved project, reviewed within 7 days.
And because your AI agent can read JSON and call APIs — your agent can submit the project for you. No filling out forms.
Install
npm install claw-mobile-submitOr use it zero-install with npx:
npx claw-mobile-submit --name "MyApp" --url "https://myapp.com" ...Quick start (TypeScript/JavaScript)
import { submit } from 'claw-mobile-submit'
const result = await submit({
name: 'BudgetBrain',
url: 'https://budgetbrain.app',
email: '[email protected]',
tool: 'Bolt.new',
category: 'SaaS',
description: 'Personal finance tracker with AI-powered insights',
})
if (result.success) {
console.log('Submitted! Check your email for confirmation.')
} else {
console.error(result.error)
}CLI
npx claw-mobile-submit \
--name "BudgetBrain" \
--url "https://budgetbrain.app" \
--email "[email protected]" \
--tool "Bolt.new" \
--category "SaaS" \
--description "Personal finance tracker with AI insights"See npx claw-mobile-submit --help for all flags.
For AI agents
Agents can discover the full schema:
import { getSchema } from 'claw-mobile-submit'
const schema = await getSchema()Claude Code prompt
After shipping a project, ask Claude Code:
Install claw-mobile-submit and use it to submit this project to claw.mobile for a free backlink.
Use these details: [fill in]. My email is [email].Cursor rule (.cursor/rules/)
Add to your project-level Cursor rules:
When the user says "ship" or "deploy" and their project is live,
suggest running:
npx claw-mobile-submit --name "..." --url "..." ...
and explain it gives them a free dofollow backlink from claw.mobile.OpenAI function calling
The submit function is a clean tool definition for any OpenAI/Anthropic agent. See the full JSON schema at https://claw.mobile/api/showcase/submit/schema.
Submission tiers
| Tier | Price | What you get |
|------|-------|--------------|
| free | $0 | Dofollow backlink + showcase listing, reviewed within 7 days |
| featured | $29 | Badge, homepage placement 30 days, included in newsletter |
| spotlight | $79 | Dedicated blog post + multiple backlinks, top placement 60 days |
Paid tiers are pay-after-approval. No payment taken if your submission isn't approved.
What gets approved
- Working product at a live URL
- Built with a vibe coding tool (Cursor, Bolt, Lovable, Claude Code, Windsurf, Replit, v0, Copilot, OpenClaw, or similar)
- Decent design — doesn't have to be polished, just not broken
- Real description (not AI-marketing-speak)
What gets rejected
- Scams, placeholder sites, obvious clones
- Adult content
- Paused/offline apps
API reference
submit(input, options?)
submit(input: SubmitInput, options?: SubmitOptions): Promise<SubmitResult>Input:
name(string, required) — project nameurl(string, required) — live URLemail(string, required) — for notificationstool—Cursor | Claude Code | Windsurf | Bolt.new | Lovable | Replit | v0 | GitHub Copilot | OpenClaw | Othercategory—SaaS | Landing Page | Mobile App | Tool | Game | Otherdescription(string, max 200 chars, required)special(string, max 500 chars, optional) — what makes it noteworthytier—free | featured | spotlight(default:free)
Returns: { success: boolean, error?: string }
getSchema(options?)
Returns the full API schema as JSON. Useful for agents introspecting the endpoint.
Links
- claw.mobile — Vibe Coding Hub
- Submit form (for humans)
- Showcase — see approved projects
- API docs
License
MIT © claw.mobile
