Install
$ agentstack add skill-aiworkskills-skillranking-update-skillranking-readme ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
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 →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(除非用户明确要求)
执行步骤
- 从
clawhub/.env读取DATABASE_URL(及 SSL 配置) - 查询:
clawhub_skills(仅deleted_at IS NULL)clawhub_skill_classifications
- 以
COALESCE(c.primary_domain, '其他')分组,每组取 Top 8 - 覆盖写入当前仓库
README.md - 回报结果与变更文件
参考命令(在 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.
- Author: aiworkskills
- Source: aiworkskills/skillranking
- License: MIT
- Homepage: https://aiworkskills.cn/skills
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.