Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计提醒

skool-all-in-one-apiskool ALL IN ONE API 搜索

Agent Skill

用于辅助 API 设计、接口文档、请求响应结构和服务集成说明。它适合让 Agent 梳理 endpoint、生成 OpenAPI 草稿、检查字段命名、整理错误码或辅助前后端联调。使用时需要确认真实业务语义、鉴权方式、分页和错误处理规则;涉及生成接口文档时,应避免凭空补字段,最好从现有代码、schema 或接口样例中提取事实。

总安装

2,564

周安装

109

GitHub Stars

公开资料未说明

下载量

898
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install skool-all-in-one-api

简介

提供对 Skool 社区的全读写访问权限接口。

  • 支持会员管理、帖子创建和回复等社交功能操作。
  • 适合需要自动化运营在线学习社区的场景。
  • 使用前必须验证 OAuth 令牌的有效性和权限范围。
  • 建议遵循最小权限原则配置访问凭证。skool-all-in-one-api 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
skool-all-in-one-api
description
Full read AND write access to Skool communities. Use when user asks to manage Skool members (approve, reject, list pending), read or create posts, reply to comments, mention users, or automate community management. The only Skool tool with write capabilities.
metadata
{"openclaw":{"emoji":"🎓","homepage":"https://apify.com/cristiantala/skool-all-in-one-api","requires":{"env":["APIFY_TOKEN"],"bins":["node","mcpc"]},"primaryEnv":"APIFY_TOKEN","install":[{"id":"mcpc","kind":"node","package":"@apify/mcpc","bins":["mcpc"],"label":"Install mcpc CLI (npm)"}]}}

Skool All-in-One API

Full read AND write access to Skool communities via Apify.

Prerequisites

  • .env file with APIFY_TOKEN
  • Node.js 20.6+
  • mcpc CLI tool

CRITICAL: Skool Data Model

Posts and comments are the SAME object in Skool.

  • To read comments: use posts:getComments — NOT comments:list
  • To create a comment: use posts:createComment — NOT comments:create
  • There is NO comments: namespace. Everything is posts:.

Content is PLAIN TEXT, not HTML.

  • CORRECT: Hello world
  • WRONG: <p>Hello world</p>

User mentions: [@Display Name](obj://user/{userId})

Workflow

Copy this checklist and track progress:

Task Progress:
- [ ] Step 1: Determine action needed
- [ ] Step 2: Login (auth:login) or use existing cookies
- [ ] Step 3: Execute the action
- [ ] Step 4: Present results

Step 1: Determine Action

Select the action based on user needs:

User NeedActionParams
Authentication
Login to Skoolauth:loginemail, password, groupSlug
Posts
List postsposts:listpage?, sortType?
Filter posts (date, unanswered)posts:filtersince?, until?, notAnsweredBy?, maxPosts?
Get single postposts:getpostId
Create postposts:createtitle, content (plain text), labelId?
Edit post or commentposts:updatepostId, title?, content?
Delete post or commentposts:deletepostId
Pin/unpin postposts:pin / posts:unpinpostId
Like/unlikeposts:votepostId, vote ("up" or "")
Comments
Get comments (nested tree)posts:getCommentspostId
Reply to postposts:createCommentcontent, rootId=postId, parentId=postId
Reply to comment (nested)posts:createCommentcontent, rootId=postId, parentId=commentId
Members
List membersmembers:listpage?
List pending applicationsmembers:pending(none)
Approve membermembers:approvememberId (use member.memberId, NOT member.id)
Reject membermembers:rejectmemberId
Ban membermembers:banmemberId
Events
List calendar eventsevents:list(none)
List upcoming eventsevents:upcoming(none)

Step 2: Authentication

Recommended flow (fast):

  1. Run auth:login once to get cookies
  2. Use cookies in all subsequent calls (~2s each instead of ~10s)
  3. Cookies expire every ~3.5 days — re-login when you get auth errors
# Login and get cookies
export $(grep APIFY_TOKEN .env | xargs)
RESULT=$(curl -s -X POST "https://api.apify.com/v2/acts/cristiantala~skool-all-in-one-api/runs?token=$APIFY_TOKEN&waitForFinish=120" \
  -H "Content-Type: application/json" \
  -d '{
    "action": "auth:login",
    "email": "USER_EMAIL",
    "password": "USER_PASSWORD",
    "groupSlug": "GROUP_SLUG"
  }')

RUN_ID=$(echo $RESULT | jq -r '.data.id')
COOKIES=$(curl -s "https://api.apify.com/v2/actor-runs/$RUN_ID/dataset/items?token=$APIFY_TOKEN" | jq -r '.[0].cookies')
echo "Cookies saved. Valid for ~3.5 days."

Step 3: Execute Action

With cookies (fast, ~2s):

export $(grep APIFY_TOKEN .env | xargs)
curl -s -X POST "https://api.apify.com/v2/acts/cristiantala~skool-all-in-one-api/runs?token=$APIFY_TOKEN&waitForFinish=120" \
  -H "Content-Type: application/json" \
  -d '{
    "action": "ACTION_NAME",
    "cookies": "COOKIES_FROM_LOGIN",
    "groupSlug": "GROUP_SLUG",
    "params": { PARAMS_HERE }
  }'

With email+password (slower, ~10s, uses Playwright):

export $(grep APIFY_TOKEN .env | xargs)
curl -s -X POST "https://api.apify.com/v2/acts/cristiantala~skool-all-in-one-api/runs?token=$APIFY_TOKEN&waitForFinish=120" \
  -H "Content-Type: application/json" \
  -d '{
    "action": "ACTION_NAME",
    "email": "USER_EMAIL",
    "password": "USER_PASSWORD",
    "groupSlug": "GROUP_SLUG",
    "params": { PARAMS_HERE }
  }'

Get results from dataset:

RUN_ID=$(echo $RESULT | jq -r '.data.id')
curl -s "https://api.apify.com/v2/actor-runs/$RUN_ID/dataset/items?token=$APIFY_TOKEN" | jq .

Step 4: Present Results

Format results based on the action:

  • posts:list — Show title, author, likes, commentCount, url
  • posts:getComments — Show nested comment tree with replies
  • members:pending — Show name, bio, location, application answers, source
  • members:list — Show name, level, points, bio, social links

Common Workflows

Get unanswered posts from last 7 days

To find which posts the user hasn't replied to, you need their Skool user ID.

1. auth:login → save cookies
2. members:list → find the user by name/email → get their "id" field (this is the user ID, NOT memberId)
3. posts:filter with params:
   {
     "since": "2026-03-20T00:00:00Z",
     "notAnsweredBy": "USER_ID_FROM_STEP_2",
     "maxPosts": 50
   }
4. Show the filtered posts — these are posts the user has NOT replied to

How to get USER_ID: Run members:list and find the user by firstName/lastName. The id field (NOT memberId) is what you pass to notAnsweredBy.

Alternative — just get posts with 0 comments:

1. auth:login → save cookies
2. posts:list with params: { "page": 1 }
3. Filter results where commentCount === 0

Approve pending members

1. auth:login → save cookies
2. members:pending → get list with application answers
3. For each member to approve: members:approve with params: { "memberId": member.memberId }
IMPORTANT: Use member.memberId (membership ID), NOT member.id (user ID)

Reply to a post with user mention

1. auth:login → save cookies
2. posts:createComment with params:
   - content: "Great point [@Name](obj://user/{userId})! I agree with your analysis."
   - rootId: "post-id"
   - parentId: "post-id" (same as rootId for top-level comment)

Reply to a specific comment (nested)

1. posts:getComments → find the comment ID
2. posts:createComment with params:
   - content: "Thanks for sharing!"
   - rootId: "original-post-id" (ALWAYS the root post, never a comment)
   - parentId: "comment-id" (the comment you're replying to)

Important Notes

  1. memberId vs id: For approve/reject/ban, use memberId field (membership ID), NOT id (user account ID). They are different.
  2. Content format: Posts and comments use PLAIN TEXT. Never send HTML tags.
  3. Mentions: Use [@Name](obj://user/{userId}) format. Get userId from members:list.
  4. Rate limits: Skool limits writes to ~20-30/min. Reads are ~60/min.
  5. Cookie expiry: Cookies last ~3.5 days. Re-login when you get 403 errors.
  6. Comment nesting: rootId is ALWAYS the original post ID. parentId is the post (for top-level) or comment (for nested reply).

Actor Details

  • Actor: cristiantala~skool-all-in-one-api
  • Actor ID: g2VGrINIS7pb8t2bs
  • Apify Store: https://apify.com/cristiantala/skool-all-in-one-api

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

91.25%
按下载量换算819

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills