Nemo社区热文

v1.0.1

Get trending articles from Nemo community/从Nemo社区获取热门文章 (no API key required).

0· 95·0 current·0 all-time
byYohoooooo@geeeeeeeeeeeeeeeek

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for geeeeeeeeeeeeeeeek/nemo-community-hot-articles.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Nemo社区热文" (geeeeeeeeeeeeeeeek/nemo-community-hot-articles) from ClawHub.
Skill page: https://clawhub.ai/geeeeeeeeeeeeeeeek/nemo-community-hot-articles
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Required binaries: curl
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install nemo-community-hot-articles

ClawHub CLI

Package manager switcher

npx clawhub@latest install nemo-community-hot-articles
Security Scan
Capability signals
Requires sensitive credentials
These labels describe what authority the skill may exercise. They are separate from suspicious or malicious moderation verdicts.
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
The skill's name/description, homepage, and SKILL.md all indicate it fetches popular articles from the Nemo site using HTTP; that aligns with the single required binary (curl). Minor inconsistency: the SKILL.md example pipes output to jq but jq is not listed under required binaries.
Instruction Scope
SKILL.md gives a single, limited runtime instruction: curl the public API endpoint and parse JSON. It does not instruct reading local files, accessing unrelated env vars, or exfiltrating other data. The only external endpoint referenced is https://www.link-nemo.com/api/popular/article, which matches the declared homepage.
Install Mechanism
No install spec and no code files — instruction-only skill, so nothing will be written to disk or downloaded during install. This is the lowest-risk install posture.
Credentials
No environment variables, credentials, or config paths are requested — consistent with a public API fetch. There is no overbroad credential or config access.
Persistence & Privilege
always is false and the skill does not request persistent or elevated privileges. It does not modify other skills or system-wide settings.
Assessment
This skill is coherent and low-risk: it issues an HTTP GET to a public Nemo API and parses JSON. Before installing, ensure your agent environment can make outbound HTTPS requests to https://www.link-nemo.com and that you are comfortable with the agent sending network traffic (which reveals the agent's IP). Also note the example uses jq but jq is not declared as a required binary — either ensure jq is installed or adapt the command to use a JSON parser available to your agent. Finally, verify the domain (link-nemo.com) is trusted if you plan to run this in a sensitive environment.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

🔥 Clawdis
Binscurl
latestvk979kfb79w8040ph1bqnksszcs85aq12
95downloads
0stars
2versions
Updated 6d ago
v1.0.1
MIT-0

Nemo Community Hot Articles

Free service, no API keys needed. Fetch trending posts from Nemo community. 免费服务,无需API秘钥,即可从Nemo社区获取热门文章

Popular Articles API/热门文章API

Quick one-liner:

curl -s "https://www.link-nemo.com/api/popular/article" | jq '.data[0:3] | .[] | {title, section, hot, url}'
# Output:
# {"title":"文章标题","section":"早报","hot":457, "url": "文章链接"}
# {"title":"另一篇热文","section":"资讯","hot":389, "url": "文章链接"}
# ...

Comments

Loading comments...