Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

submit-directories提交目录

Agent Skill

submit-directories 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

11,731

周安装

470

GitHub Stars

公开资料未说明

下载量

3,798
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:submit-directories(提交目录)
来源仓库:https://github.com/man0l/submit-directories
安装命令:
openclaw skills install submit-directories
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install submit-directories

简介

用于查找、检索和筛选相关信息,适合根据关键词或任务场景快速定位候选结果。

  • 适用于 OpenClaw 中需要结合来源仓库、安装命令和原始 README 核验具体用法的场景。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 安装命令为 openclaw skills install submit-directories,可通过来源仓库进一步了解功能细节。
  • 涉及敏感操作时,应先评估风险并确保操作边界清晰,避免误触关键系统。

SKILL.md

name
submit-directories
description
Use when submitting a product to AI/startup directories - covers the full pipeline from collecting product info, analyzing directories, discovering forms, auto-submitting, handling captchas/OAuth/GitHub PRs, and tracking progress in checkpoint.md.

Submit Directories

Overview

Full lifecycle for submitting a product to 800+ AI tool directories: collect product info → analyze directories → build submission plan → discover forms → auto-submit → manual browser submissions → track progress.

Setup

Install dependencies

pip install -r requirements.txt
playwright install chromium

Configure credentials via environment variables

Never hardcode credentials in scripts. Set these before running any pipeline step:

# Required
export SUBMIT_PRODUCT_URL="https://yourproduct.com"
export SUBMIT_PRODUCT_NAME="Your Product Name"
export SUBMIT_TAGLINE="Your one-line tagline"
export SUBMIT_EMAIL="you@throwaway.com"        # use throwaway email
export SUBMIT_AUTHOR_NAME="Jane Doe"

# Recommended
export SUBMIT_AUTHOR_FIRST="Jane"
export SUBMIT_AUTHOR_LAST="Doe"
export SUBMIT_USERNAME="youruser"
export SUBMIT_PASSWORD="throwaway-pass"        # use throwaway password

# Optional
export SUBMIT_GITHUB_URL="https://github.com/you/repo"
export SUBMIT_TWITTER_URL="https://twitter.com/yourhandle"
export SUBMIT_KEYWORDS="ai,saas,marketing,automation"
export SUBMIT_LOGO="logo.png"                  # relative to script dir
export SUBMIT_SCREENSHOT="site-image.png"      # relative to script dir

Tip: save these to a local .env file (already in .gitignore) and load with:

set -a && source .env && set +a

Place assets

  • logo.png — product logo (used for file upload fields)
  • site-image.png — product screenshot (used for file upload fields)

Both should be in the same directory as the scripts.

Phase 0: Collect Product Info

Ask one at a time (never dump all at once):

#FieldQuestion
1Product URL"What is your product/startup website URL?"
2Product Name"What is your product name?"
3Tagline"Give me a one-line tagline."
4Description"Write 2-3 sentences: what it does, who it's for, what makes it different."
5Pricing"What is your pricing model?" (Free / Freemium / Open Source / Paid)
6Keywords"List 5-7 category keywords."
7Email"What email for submissions?"
8Name"What name on submissions?" (get first + last separately too)
9Username"Preferred username for sites requiring registration?"
10Password"Throwaway password for sites requiring registration?" ⚠️ Use a throwaway — never a real password. Set via SUBMIT_PASSWORD env var; passwords are stripped from submission_plan.json before saving.
11GitHub URL(optional)
12Twitter/X(optional)

Then ask submission preferences:

  • "Submit to Google-login directories? (You complete auth manually)"
  • "Skip all paid directories, or flag for review?"
  • "Fill forms on captcha sites and pause for you to solve, or skip?"

Assets: Tell user to place logo.png and site-image.png in project root.

Phase 1: Configure

  1. Set all required environment variables (see Setup section above)
  2. Generate 30 unique copy variations (title + description pairs):

- Different angles: features, benefits, pricing, use case, comparison - Vary length: short punchy vs. detailed - Different keywords, never same opening

  1. Store in submission_plan.json
  2. Update checkpoint.md with product info (omit passwords)

Phase 2: Analyze & Classify

.venv/bin/python analyze_directories.py         # HTTP-level: auth, captcha, pricing, dead domains
.venv/bin/python cleanup_and_categorize.py      # Triage errors, build browser_check_list.json
.venv/bin/python browser_verify.py              # Playwright verification (10 concurrent workers)
.venv/bin/python browser_verify.py --recheck-unknown  # Deep recheck unknowns

Report auth type breakdown when done.

Phase 3: Build Submission Plan

Filter directories.json:

  • site_status = active
  • auth_type = none OR auth_type = email_password
  • Include google_only / google_and_email only if user opted in

Create submission_plan.json entries with copy variation (rotate evenly), credentials, status: pending.

Phase 4: Discover Forms

.venv/bin/python discover_forms.py

Visits each submission URL, extracts form field metadata, updates submission_plan.json. Report: discovered / not found / timeout counts.

Phase 5: Auto-Submit

.venv/bin/python submit_directories.py

Report: submitted / no matching fields / timed out / needs manual attention.

Phase 6: Manual Browser Submissions

Use Playwright MCP (mcp__playwright namespace) for sites needing manual interaction.

Captcha sites

  1. browser_navigate → submission URL
  2. browser_snapshot → understand page
  3. browser_fill_form / browser_type → fill all fields
  4. Ask user to solve captcha
  5. browser_click submit → verify confirmation

Google login sites

  1. browser_navigate → login page
  2. Click "Sign in with Google"
  3. Ask user to complete Google auth
  4. After login, proceed to submission form
  5. Use browser_tabs to switch between OAuth popup and main tab

Rich text / complex forms

  • TinyMCE/Quill: use browser_evaluate to set content directly
  • Combobox/select: browser_click dropdown → click option
  • Multi-step forms: browser_snapshot after each step for new fields
  • Custom upload widgets: use browser_file_upload for logo/screenshot

Phase 7: GitHub PR Submissions

Requirements: gh CLI installed and authenticated (gh auth login). Set SUBMIT_GITHUB_URL if you want your repo linked in entries.

For awesome-list directories:

gh repo fork <owner>/<repo>
# Create branch, add product entry following repo format
gh pr create

Record PR URL in checkpoint.md.

Tracking

Update checkpoint.md after each phase with: counts by status, successful list, failed list with reasons, next steps.

Status Values

StatusMeaning
submittedConfirmed submitted
skipped_paidRequires payment
skipped_login_requiredRequires account creation
captchaNeeds manual captcha solve
no_form_foundNo submission form on page
no_fields_matchedForm exists, no fields matched
timeout / submit_timeoutPage/submit timed out
cloudflare_blockedCloudflare challenge
domain_parkedDead domain

Rules

  1. Never assume — unclear about product/preferences? Ask.
  2. Never commit real passwords — use env vars only; passwords are stripped from submission_plan.json automatically before each save.
  3. Report after every phase — never run pipeline silently.
  4. Explain every skip — tell user why a directory was skipped.
  5. Verify submissions — check for confirmation or error states.
  6. Rate limit — max 5 concurrent submissions to avoid IP blocks.
  7. Strip personal data before git push — search for email, name, password in all files.

Common Submission Blockers

BlockerFrequencyDetection
Paid listing~20%Pricing page, Stripe links, "$" on submit page
reCAPTCHA / Turnstile~10%iframe[src*=recaptcha] or [data-turnstile]
Login required~15%Redirect to /login on submit URL
Newsletter-only forms~10%Looks like submit but is email signup
Domain parked/dead~8%No content, DNS failure
Cloudflare blocked~3%Challenge page, 403
Reciprocal link required~5%Old web directories requiring backlink

Best ROI Directory Types

  1. AI tool directories with simple HTML forms
  2. Startup directories using Google Forms
  3. GitHub awesome-lists accepting PRs (free, high-quality backlinks)
  4. NoCode/SaaS aggregators
  5. General web directories with DA≥30

File Reference

FilePurpose
directories.jsonMaster database (827+ directories)
submission_plan.jsonTargets with copy, fields, status (no credentials stored)
checkpoint.mdProgress tracking — source of truth
analyze_directories.pyHTTP-level analysis
cleanup_and_categorize.pyTriage + browser check list
browser_verify.pyPlaywright browser verification
discover_forms.pyForm field discovery
submit_directories.pyAuto-submission engine

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

84.59%
按下载量换算3,213

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills