Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计未展示

userorbituserorbit 搜索

Agent Skill

userorbit 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,683

周安装

149

GitHub Stars

公开资料未说明

下载量

1,156
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install userorbit

简介

通过公共 API 管理 Userorbit 平台资源,包括反馈、公告、路线图等模块。

  • 适用于客户支持系统维护、社区运营及订阅者关系管理。
  • 支持创建看板、标签与帮助文章,实现自动化内容分发与状态跟踪。
  • 安装命令为 openclaw skills install userorbit,需配置 API 访问令牌。
  • 操作前请确认权限边界,避免误删或越权修改生产环境数据。

SKILL.md

name
userorbit
description
Manage Userorbit resources via the public API. Create and manage feedback, announcements, roadmap topics, help center articles, boards, tags, subscribers, and more.
metadata
clawdbot
requires
env

Userorbit API

Manage Userorbit resources programmatically via the REST API.

Setup

Before the first API call, verify that USERORBIT_API_KEY and USERORBIT_TEAM_ID environment variables are set. If they are missing, ask the user to provide them (available in Settings → API or from the Userorbit onboarding page).

Making API calls

Use curl directly with the environment variables:

  • Base URL: https://api.userorbit.com/api/v1
  • All endpoints use POST
  • Endpoint format: <resource>.<action> (e.g., announcements.list, feedbacks.create)
  • Success response: { "data": ... }
  • List response: { "pagination": { "offset", "limit", "total" }, "data": [...] }
  • Error response: { "error": "..." }

Usage:

curl -s -X POST "https://api.userorbit.com/api/v1/<endpoint>" \
  -H "Authorization: Bearer ${USERORBIT_API_KEY}" \
  -H "Content-Type: application/json" \
  -H "x-team-id: ${USERORBIT_TEAM_ID}" \
  -d '<json body>'

Example:

curl -s -X POST "https://api.userorbit.com/api/v1/announcements.list" \
  -H "Authorization: Bearer ${USERORBIT_API_KEY}" \
  -H "Content-Type: application/json" \
  -H "x-team-id: ${USERORBIT_TEAM_ID}" \
  -d '{"limit": 5}' | jq '.data'

Resources

Feedback

User-submitted feedback with voting, status tracking, and board organization.

OperationEndpointRequired fields
Createfeedbacks.createtitle
Listfeedbacks.list-
Getfeedbacks.infoid
Updatefeedbacks.updateid
Deletefeedbacks.deleteid
Archivefeedbacks.archiveid
Restorefeedbacks.restoreid
Votefeedbacks.voteid

Statuses: in_review, planned, in_progress, completed, closed

Sort modes for list: newest, top (by votes), trending (activity)

Feedback Boards

Organize feedback into boards.

OperationEndpointRequired fields
Createfeedback-boards.createname
Listfeedback-boards.list-
Getfeedback-boards.infoid
Updatefeedback-boards.updateid
Deletefeedback-boards.deleteid

Feedback Comments

OperationEndpointRequired fields
Createfeedback-comments.createid (feedbackId), text
Listfeedback-comments.list-
Updatefeedback-comments.updateid, text
Deletefeedback-comments.deleteid

Comments support type: "public" or "private" (internal notes).

Announcements

Product updates and changelogs. Require a collectionId (category).

OperationEndpointRequired fields
Createannouncements.createcollectionId, title, text, meta
Listannouncements.list-
Getannouncements.infoid
Updateannouncements.updateid
Deleteannouncements.deleteid
Searchannouncements.searchquery
Archiveannouncements.archiveid
Restoreannouncements.restoreid
Pinannouncements.pinid
Unpinannouncements.unpinid

The meta object supports: ctaTitle, ctaLink, ctaImage, description, feedback.

Set publish: true to publish immediately. Use scheduledAt (ISO date) to schedule.

Announcement Comments

OperationEndpointRequired fields
Createannouncement-comments.createid (announcementId), text
Listannouncement-comments.listid (announcementId)
Updateannouncement-comments.updateid, text
Deleteannouncement-comments.deleteid

Roadmaps

OperationEndpointRequired fields
Createroadmaps.createname
Listroadmaps.list-
Getroadmaps.infoid
Updateroadmaps.updateid
Deleteroadmaps.deleteid
Stagesroadmaps.stagesid

Stages

Columns within a roadmap (e.g., "Planned", "In Progress", "Done").

OperationEndpointRequired fields
Createstages.createtitle, roadmapId
Liststages.listroadmapId
Getstages.infoid
Updatestages.updateid
Deletestages.deleteid

Topics (Roadmap Items)

Items that live on a roadmap stage.

OperationEndpointRequired fields
Createtopics.createtitle
Listtopics.listroadmapId, stageId
Gettopics.infoid
Updatetopics.updateid
Deletetopics.deleteid
Counttopics.count-

Topic Comments

OperationEndpointRequired fields
Createtopic-comments.createid (topicId), text
Listtopic-comments.listid (topicId)
Updatetopic-comments.updateid, text
Deletetopic-comments.deleteid

Articles (Help Center)

Knowledge base articles with publishing workflow.

OperationEndpointRequired fields
Createarticles.createtitle, text, collectionIds
Listarticles.list-
Getarticles.infoid
Updatearticles.updateid
Deletearticles.deleteid
Searcharticles.searchquery
Publisharticles.publishid
Unpublisharticles.unpublishid
Archivearticles.archiveid
Revisionsarticles.revisionsid
Restorearticles.restoreid, revisionId

Article statuses: draft, published, archived

Article Collections (Help Center Categories)

OperationEndpointRequired fields
Createarticle-collections.createname
Listarticle-collections.list-
Getarticle-collections.infoid
Updatearticle-collections.updateid
Deletearticle-collections.deleteid

Article Votes

OperationEndpointRequired fields
Getarticle-votes.infoid (articleId)
Votearticle-votes.createid (articleId), value (helpful or not_helpful)
Removearticle-votes.deleteid (articleId)

Collections (Announcement Categories)

OperationEndpointRequired fields
Createcollections.createname
Listcollections.list-
Getcollections.infoid
Updatecollections.updateid
Deletecollections.deleteid

Tags

Labels for organizing feedback.

OperationEndpointRequired fields
Createtags.createname
Listtags.list-
Gettags.infoid
Updatetags.updateid, name
Deletetags.deleteid

Subscribers

Public users who interact with your product.

OperationEndpointRequired fields
Createsubscribers.createemail, name, password
Listsubscribers.list-
Updatesubscribers.updateid
Deletesubscribers.deleteid
Countsubscribers.count-
Searchsubscribers.search-

Projects

OperationEndpointRequired fields
Createprojects.createname
Listprojects.list-
Getprojects.infoid
Updateprojects.updateid
Deleteprojects.deleteid

Feedback Board Tags

Associate tags with feedback boards.

OperationEndpointRequired fields
Createfeedback-board-tags.createboardId, tagId
Listfeedback-board-tags.listboardId
Updatefeedback-board-tags.updateboardId, oldTagId, newTagId
Deletefeedback-board-tags.deleteboardId, tagId

Common Workflows

Create and publish an announcement

  1. Call collections.list to find the right collectionId
  2. Call announcements.create with collectionId, title, text, meta, and publish: true

Add a topic to a roadmap

  1. Call roadmaps.list to find the roadmapId
  2. Call roadmaps.stages with the id to find the stageId
  3. Call topics.create with title, roadmapId, stageId, and publish: true

Publish a help center article

  1. Call article-collections.list to find collection IDs
  2. Call articles.create with title, text, and collectionIds
  3. Call articles.publish with the article id

Detailed API Reference

For full request/response schemas with all optional fields, see references/api.md.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

OpenClaw

97.2%
按下载量换算1,124

安全审计

暂无安全审计结果可展示。

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills