Case 01026
A fast, offline static risk analysis CLI for AI agent skill files. Detects malicious instructions, steganographic payloads, and dangerous capability chains.
npx -y skills add knownasnaffy/prompthound --skill case_01026Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Batch submit websites to AI tool directories and SEO directories to earn backlinks. Use when: user says "submit site to directories", "SEO backlinks", "submit to SEO directories", "submit to AI tool directories", or "directory submission". Automatically detects whether directories accept free submissions, with Playwright browser automation for form filling.
SKILL.md
3.2 KB, 663 tokens by cl100k_base, as published. Nobody here has run it
Cleanup Review
python scripts/_cache_clear.py is an optional cleanup helper for the SEO Backlink Submitter skill. It may recursively remove /tmp/_skill_run/*, /tmp/_skill_run/.cache. Show the exact paths first, explain whether they are skill-private temporary paths or user state, and run the cleanup only after the user confirms.
SEO Backlink Submitter
Batch submits websites to AI tool directories and SEO directories to earn backlinks.
Data Format
{
"name": "Site Name",
"url": "https://example.com",
"description": "Site description",
"email": "[email protected]",
"category": "Developer Tools",
"tags": ["AI", "Agents", "Automation"]
}
Execution Flow
Step 1: Prerequisites
Install Playwright:
pip install playwright && playwright install chromium
Step 2: Batch Submit
Run scripts/batch_submit.py:
cd .agent/skills/seo-backlink-submitter
python scripts/batch_submit.py \
--site "https://your-site.com" \
--data '{"name":"Site Name","url":"https://your-site.com","description":"Description","email":"[email protected]","category":"Developer Tools"}' \
--directories "references/directories.txt"
Step 3: Check Single Directory
Check if a directory accepts free submissions:
python scripts/check_directory.py https://aitoolshunt.com/submit
Step 4: Submit to Single Directory
Submit directly to one directory:
python scripts/quick_submit.py https://aitoolshunt.com/submit \
--data '{"name":"Name","url":"https://site.com","description":"Desc","email":"[email protected]"}'
Directory List
Located at references/directories.txt, includes:
- AI Skills / Agent Skills Marketplaces
- Agent Skills Directories
- AI Tool Directories (ProductHunt, Futurepedia, FutureTools, etc.)
- Developer/Tools Directories (StackShare, DevPost, etc.)
- GitHub Awesome Lists
Output Format
Results saved as JSON:
| Field | Description |
|---|---|
| directory | Directory name |
| url | Submission page URL |
| status | success / failed / paid / needs_login / error |
| timestamp | Submission time |
| error | Error reason if any |
Status Meanings
| Status | Meaning |
|---|---|
| success | Submitted successfully |
| failed | Submission failed |
| paid | Directory requires payment, skipped |
| needs_login | Login required, skipped |
| error | Unexpected error |
Notes
- Directories requiring login are marked
needs_login - Paid directories are marked
paidand skipped - Add 2-5 second delay between directories to avoid rate limits
- Check directory policies periodically as free tiers may become paid
- Submit in batches of 10 or fewer per session
Dependencies
- Python 3.8+
- playwright (
pip install playwright && playwright install chromium) - aiohttp (for async HTTP requests)
What ships with it: 8 files
19.2 KB alongside SKILL.md, 5 of them executable
references/
- directories_list.md14 B
- directories.txt1.1 KB
scripts/
- batch_submit.pyruns9.4 KB
- _cache_clear.pyruns497 B
- check_directory.pyruns3.7 KB
- quick_submit.pyruns3.4 KB
- submit_to_directory.pyruns14 B
targets/
- README.md1.0 KB