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

Update Skillranking Readme

skill-aiworkskills-skillranking-update-skillranking-readme · by aiworkskills

从 clawhub 数据库重查并更新当前仓库 README.md(每类 Top 8)

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

Install

$ agentstack add skill-aiworkskills-skillranking-update-skillranking-readme

✓ 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 Used
  • 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-aiworkskills-skillranking-update-skillranking-readme)

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 Update Skillranking Readme? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Update Skillranking README

适用场景

  • 用户要求“重查数据库并更新 README”
  • 需要基于 clawhub_skills + clawhub_skill_classifications 重新生成榜单

成功标准

  • 当前仓库 README.md 被覆盖为最新数据版本
  • 每个主类输出 8 条,按 stars desc, downloads desc, installs_current desc 排序
  • 链接统一为新窗口打开(target="_blank"
  • 不执行 git commit / git push(除非用户明确要求)

执行步骤

  1. clawhub/.env 读取 DATABASE_URL(及 SSL 配置)
  2. 查询:
  • clawhub_skills(仅 deleted_at IS NULL
  • clawhub_skill_classifications
  1. COALESCE(c.primary_domain, '其他') 分组,每组取 Top 8
  2. 覆盖写入当前仓库 README.md
  3. 回报结果与变更文件

参考命令(在 skillranking 仓库执行)

python3 Clawhub 与 AI Agent / Codex / Cursor 等环境的精选 skill 推荐:按业务场景分品类,每类 8 条,综合站内星级(stars)、下载量、历史安装排序,便于按场景快速选用。')
lines.append('')
lines.append('> EN / for search: Curated Clawhub agent skills by use-case (8 per category), ranked by stars, downloads, and install history.')
lines.append('')
lines.append(f'- **清单生成日期**:{date.today().isoformat()}')
lines.append('')
lines.append('## 目录')
lines.append('')
lines.append('| 品类 | 锚点 |')
lines.append('|------|------|')
for d in PRIMARY_DOMAINS:
    a = ANCHORS[d]
    lines.append(f'| {d} | #{a} |')
lines.append('')
lines.append('---')
lines.append('')

for d in PRIMARY_DOMAINS:
    a = ANCHORS[d]
    lines.append(f'')
    if d == '视频内容创作':
        lines.append(f'## {d}')
    else:
        lines.append('')
        lines.append(f'{d}')
        lines.append('')
    items = by_domain.get(d, [])
    for idx, (slug, name, owner, stars, dl, inst, summary) in enumerate(items, start=1):
        url = f'https://clawhub.ai/{owner}/{slug}' if owner else f'https://clawhub.ai/{slug}'
        lines.append(f'### {idx}. {name}')
        lines.append('')
        lines.append(f'- **热度**:⭐ {stars} · 下载 {dl} · 历史安装 {inst}')
        lines.append(f'- **简介**:{summary[:300] + ("..." if len(summary) > 300 else "")}')
        lines.append('')
    if d != '视频内容创作':
        lines.append('')
        lines.append('')
    else:
        lines.append('---')
        lines.append('')

lines.append('## 本仓库 Star 趋势')
lines.append('')
lines.append(' ')
lines.append('')
lines.append('')

Path('README.md').write_text('\n'.join(lines) + '\n', encoding='utf-8')
print('README.md updated')
PY

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.