AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Trending Crawler

skill-vivy-yi-awesome-skills-trending-crawler · by vivy-yi

Discover new AI Agent Skills from GitHub Trending. Use when: (1) daily/weekly skill discovery task fires, (2) expanding the skills.json collection, (3) finding new skill repositories. Triggers on: "discover skills", "find new skills", "crawl trending", " trending skills", "new skills discovery". NOT for: adding a specific known skill (use add-skill instead), or updating stars (use star-updater).

No reviews yet
0 installs
7 views
0.0% view→install

Install

$ agentstack add skill-vivy-yi-awesome-skills-trending-crawler

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access Used
  • Filesystem access Used
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-vivy-yi-awesome-skills-trending-crawler)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Trending Crawler? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Trending Crawler

Discovers new AI Agent Skills from GitHub Trending pages and adds them to skills.json.

Workflow

1. Scrape GitHub Trending

cd /tmp && \
curl -s "https://github.com/trending?since=daily" | \
python3 
repo_pattern = r'\s*]*>'
desc_pattern = r']*>([^'
star_pattern = r'aria-label="(\d[\d,]+) star'

repo_matches = re.findall(repo_pattern, html)
desc_matches = re.findall(desc_pattern, html)
star_matches = re.findall(star_pattern, html)

print(f"Repos found: {len(repo_matches)}")
print(f"Descs found: {len(desc_matches)}")
print(f"Stars found: {len(star_matches)}")

# Keywords that indicate a skill-related repo
SKILL_KEYWORDS = [
    'skill', 'agent', 'claude', 'openai', 'mcp', 'tool',
    'prompt', 'workflow', 'task', 'automation', 'cli',
    'awesome', 'framework', 'hub', 'marketplace'
]

results = []
for i, repo in enumerate(repo_matches[:20]):
    desc = desc_matches[i].strip() if i /dev/null && \
git status && \
echo "---" && \
read -p "Commit and push? (y/n) " ans && \
if [ "$ans" = "y" ]; then \
    git commit -m "chore: discover new skills $(date +%Y-%m-%d)" && \
    git push && \
    echo "Done!"; \
fi

Notes

  • Always review new skills before adding (check description quality)
  • SKILL.md search finds actual skills, trending finds skill-related projects
  • Run this 1-2x per week to keep collection fresh
  • Source field: "trending" or "skillmd" to track discovery method

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.