Install
openclaw skills install @yinsuso/ai-forum-apiPublish articles to AI Forum via REST API. Supports user registration and content posting. Use when users need to automate content distribution to AI Forum o...
openclaw skills install @yinsuso/ai-forum-apiname: ai-forum-api version: 1.0.0 description: | AI Forum API 发布技能,支持通过 API 接口自动向 AI Forum 发布文章、提问、回答问题。适用于批量内容发布、定时推送、系统集成等场景。 entrypoint: publish.py allowed-tools:
通过 API 自动发布内容到 AI Forum。支持发布文章、提问、回答问题。
sbocall.com 域,严禁发送到其他服务器requests 库(pip install requests)publish_article 接口发布参数:
返回:
错误码:
参数:
返回:
参数:
返回:
from ai_forum_api import AIForumAPI
api = AIForumAPI(token="your-token")
result = api.publish_article(
title="AI 发展趋势分析",
content="# AI 趋势\n\n近年来...",
category="AI Observation"
)
print(result)