Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计提醒

v2exv2ex 开发

Agent Skill

v2ex 用于补充开发相关能力,适合在 OpenClaw 中需要让 Agent 承接开发相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

21,768

周安装

898

GitHub Stars

公开资料未说明

下载量

7,112
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:v2ex(v2ex 开发)
来源仓库:https://github.com/timqian/v2ex
安装命令:
openclaw skills install v2ex
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install v2ex

简介

v2ex 提供 V2EX 论坛 API 2.0 集成,支持访问主题、节点和成员资料。

  • 适合在 OpenClaw 中获取社区动态或管理通知类任务。
  • 通过 clawhub 安装,使用命令 openclaw skills install v2ex。
  • 需确认 API 调用频率限制及数据隐私合规要求。
  • 建议查阅原始仓库文档了解认证方式和错误处理机制。

SKILL.md

name
v2ex
description
V2EX API 2.0 integration for accessing V2EX forum data, notifications, topics, nodes, and member profiles
license
MIT
compatibility
opencode
metadata
audience
developers
category
api-integration
provider
v2ex.com

Overview

This skill provides integration with V2EX API 2.0 Beta, allowing you to access V2EX forum functionality including notifications, topics, nodes, and member information.

Authentication

V2EX API 2.0 requires a Personal Access Token for authentication.

  1. Visit https://www.v2ex.com/settings/tokens to create a token
  2. Use the token in the Authorization header: Authorization: Bearer <your-token>
  3. Store your token securely (e.g., in environment variables)

API Base URL

https://www.v2ex.com/api/v2/

Available Endpoints

Notifications

Get Latest Notifications

GET /notifications

Optional parameters:

  • p - Page number (default: 1)

Example:

curl -H "Authorization: Bearer <token>" \
  "https://www.v2ex.com/api/v2/notifications?p=1"

Delete a Notification

DELETE /notifications/:notification_id

Example:

curl -X DELETE \
  -H "Authorization: Bearer <token>" \
  "https://www.v2ex.com/api/v2/notifications/123456"

Member

Get Your Profile

GET /member

Example:

curl -H "Authorization: Bearer <token>" \
  "https://www.v2ex.com/api/v2/member"

Token

Get Current Token Info

GET /token

Example:

curl -H "Authorization: Bearer <token>" \
  "https://www.v2ex.com/api/v2/token"

Nodes

Get Node Information

GET /nodes/:node_name

Example:

curl -H "Authorization: Bearer <token>" \
  "https://www.v2ex.com/api/v2/nodes/programmer"

Get Topics in a Node

GET /nodes/:node_name/topics

Example:

curl -H "Authorization: Bearer <token>" \
  "https://www.v2ex.com/api/v2/nodes/programmer/topics"

Topics

Get Hot Topics (Classic API)

GET https://www.v2ex.com/api/topics/hot.json

Returns the currently trending topics across all nodes. No authentication required.

Example:

curl -s "https://www.v2ex.com/api/topics/hot.json"

Get Latest Topics (Classic API)

GET https://www.v2ex.com/api/topics/latest.json

Returns the most recent topics across all nodes. No authentication required.

Example:

curl -s "https://www.v2ex.com/api/topics/latest.json"

Get Topic Details (API v2)

GET /topics/:topic_id

Example:

curl -H "Authorization: Bearer <token>" \
  "https://www.v2ex.com/api/v2/topics/12345"

Get Topic Replies (API v2)

GET /topics/:topic_id/replies

Example:

curl -H "Authorization: Bearer <token>" \
  "https://www.v2ex.com/api/v2/topics/12345/replies"

Rate Limiting

Default rate limit: 600 requests per hour per IP

Rate limit headers in responses:

  • X-Rate-Limit-Limit - Total allowed requests
  • X-Rate-Limit-Reset - Unix timestamp when limit resets
  • X-Rate-Limit-Remaining - Remaining requests in current window

Note: CDN-cached requests only consume rate limit on the first request.

Common Workflows

Check New Notifications

  1. Call GET /notifications to fetch latest notifications
  2. Parse the response for unread items
  3. Optionally delete notifications after reading

Browse Hot Topics

  1. Call GET /api/topics/hot.json to get trending topics (no token required)
  2. Parse response to see popular discussions across all nodes
  3. Use topic URLs or IDs to view details on V2EX website

Browse Node Topics

  1. Call GET /nodes/:node_name/topics to get topics
  2. Use topic IDs to fetch detailed information with GET /topics/:topic_id
  3. Fetch replies with GET /topics/:topic_id/replies

Monitor Specific Topics

  1. Store topic IDs of interest
  2. Periodically poll GET /topics/:topic_id for updates
  3. Check GET /topics/:topic_id/replies for new comments

Response Format

All API responses are in JSON format. Common fields include:

  • success - Boolean indicating request success
  • message - Error message if request failed
  • Data fields specific to each endpoint

Error Handling

Common HTTP status codes:

  • 200 - Success
  • 401 - Unauthorized (invalid or missing token)
  • 403 - Forbidden (insufficient permissions)
  • 404 - Not found
  • 429 - Rate limit exceeded
  • 500 - Server error

Best Practices

  1. Store Personal Access Tokens securely (environment variables, not in code)
  2. Handle rate limits by checking headers and implementing backoff
  3. Cache responses when appropriate to reduce API calls
  4. Use pagination for endpoints that support it
  5. Handle errors gracefully with user-friendly messages

References

  • V2EX API Documentation: https://www.v2ex.com/help/api
  • Personal Access Tokens: https://www.v2ex.com/settings/tokens
  • V2EX API Node: https://www.v2ex.com/go/v2ex-api

Example Implementation (Python)

import os
import requests

class V2EXClient:
    BASE_URL = "https://www.v2ex.com/api/v2"
    
    def __init__(self, token=None):
        self.token = token or os.environ.get('V2EX_TOKEN')
        if not self.token:
            raise ValueError("V2EX token is required")
        self.headers = {
            "Authorization": f"Bearer {self.token}"
        }
    
    def get_notifications(self, page=1):
        """Get latest notifications"""
        response = requests.get(
            f"{self.BASE_URL}/notifications",
            headers=self.headers,
            params={"p": page}
        )
        response.raise_for_status()
        return response.json()
    
    def delete_notification(self, notification_id):
        """Delete a specific notification"""
        response = requests.delete(
            f"{self.BASE_URL}/notifications/{notification_id}",
            headers=self.headers
        )
        response.raise_for_status()
        return response.json()
    
    def get_member(self):
        """Get current member profile"""
        response = requests.get(
            f"{self.BASE_URL}/member",
            headers=self.headers
        )
        response.raise_for_status()
        return response.json()
    
    def get_node(self, node_name):
        """Get node information"""
        response = requests.get(
            f"{self.BASE_URL}/nodes/{node_name}",
            headers=self.headers
        )
        response.raise_for_status()
        return response.json()
    
    def get_node_topics(self, node_name):
        """Get topics in a node"""
        response = requests.get(
            f"{self.BASE_URL}/nodes/{node_name}/topics",
            headers=self.headers
        )
        response.raise_for_status()
        return response.json()
    
    def get_topic(self, topic_id):
        """Get topic details"""
        response = requests.get(
            f"{self.BASE_URL}/topics/{topic_id}",
            headers=self.headers
        )
        response.raise_for_status()
        return response.json()
    
    def get_topic_replies(self, topic_id):
        """Get replies for a topic"""
        response = requests.get(
            f"{self.BASE_URL}/topics/{topic_id}/replies",
            headers=self.headers
        )
        response.raise_for_status()
        return response.json()
    
    def get_hot_topics(self):
        """Get trending topics across all nodes (classic API, no token required)"""
        response = requests.get("https://www.v2ex.com/api/topics/hot.json")
        response.raise_for_status()
        return response.json()
    
    def get_latest_topics(self):
        """Get latest topics across all nodes (classic API, no token required)"""
        response = requests.get("https://www.v2ex.com/api/topics/latest.json")
        response.raise_for_status()
        return response.json()

# Usage example
if __name__ == "__main__":
    client = V2EXClient()
    
    # Get notifications
    notifications = client.get_notifications()
    print(f"You have {len(notifications.get('result', []))} notifications")
    
    # Get member profile
    member = client.get_member()
    print(f"Hello, {member.get('result', {}).get('username')}!")
    
    # Get node info
    node = client.get_node("python")
    print(f"Node: {node.get('result', {}).get('title')}")
    
    # Get topics from a node
    topics = client.get_node_topics("python")
    for topic in topics.get('result', []):
        print(f"- {topic.get('title')}")
    
    # Get hot topics (no token required)
    hot_topics = client.get_hot_topics()
    print("\
🔥 Hot Topics:")
    for topic in hot_topics[:5]:
        print(f"- [{topic['node']['title']}] {topic['title']} ({topic['replies']} replies)")

Testing with REST Client

You can use VS Code's REST Client extension to test the API:

### Get hot topics (classic API, no auth required)
GET https://www.v2ex.com/api/topics/hot.json

### Get latest topics (classic API, no auth required)
GET https://www.v2ex.com/api/topics/latest.json

### Get notifications
GET https://www.v2ex.com/api/v2/notifications
Authorization: Bearer <your-token>

### Get member profile
GET https://www.v2ex.com/api/v2/member
Authorization: Bearer <your-token>

### Get node info
GET https://www.v2ex.com/api/v2/nodes/programmer
Authorization: Bearer <your-token>

### Get topic
GET https://www.v2ex.com/api/v2/topics/12345
Authorization: Bearer <your-token>

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

80.02%
按下载量换算5,691

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills