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

teamapp-admin团队应用管理员

Agent Skill

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

总安装

2,868

周安装

116

GitHub Stars

公开资料未说明

下载量

1,015
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install teamapp-admin

简介

对接 teamapp.com 管理员接口管理新闻与活动日程。

  • 支持创建、读取、更新俱乐部内容与成员通知。
  • 适用于社区运营与组织内部通讯维护。teamapp-admin 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 需获取有效的 API 访问凭证与权限范围。
  • 操作日志默认公开,敏感内容请加密处理。

SKILL.md

name
teamapp-admin-api
description
Use when interacting with TeamApp club admin JSON endpoints on teamapp.com to create/read/update News articles and Schedule events, and to resolve Team and Access Group IDs needed for visibility, roster, and targeting fields.

TeamApp Admin API

Use this skill for TeamApp admin operations against JSON endpoints discovered from the web app.

Quick Workflow

  1. Resolve IDs first.
  1. Read form schemas before writing.
  • Open new.json or edit.json endpoint for the target resource.
  • Use the embedded onSubmit controller and URL as source of truth for method and endpoint.
  1. Create or update content.
  • Submit payload fields exactly as named in the schema.
  • For visibility-scoped content, set ...access_level_ids_csv only when visibility is access_groups.
  1. Verify by reloading list endpoints.
  • Re-read list JSON and confirm returned object IDs, titles, and action URLs.

Auth and Session Requirements

MANDATORY: All interactions with the TeamApp API via this skill must use the provided wrapper script bin/api-wrapper.sh.

This wrapper automatically handles:

  • Session bootstrapping (fetching the dashboard to establish a session).
  • CSRF token extraction and caching.
  • Cookie management (ta_auth_token and _teamapp_session).
  • Session refreshing on expiration (401/422 errors).

Required Environment Variables

The wrapper requires the following variables to be set in your shell environment:

  • TA_AUTH_TOKEN: The ta_auth_token cookie value (extracted from a browser session).

Usage

Call the wrapper with the HTTP method, the full URL, and any curl options (like data payloads).

# General Syntax
./bin/api-wrapper.sh [METHOD] [URL] [CURL_OPTIONS...]

Example: Read Articles

./bin/api-wrapper.sh GET "https://examplesite.teamapp.com/clubs/$TA_CLUB_ID/articles.json?_detail=v1"

Example: Create Article

./bin/api-wrapper.sh POST "https://examplesite.teamapp.com/clubs/$TA_CLUB_ID/articles.json?_post_response=v1" \
  --data-urlencode "article[subject]=My Title" \
  --data-urlencode "article[body]=My Body" \
  --data-urlencode "article[visibility]=public" \
  --data-urlencode "article[comments_enabled]=1" \
  --data-urlencode "article[feature]=0" \
  --data-urlencode "article[html_body]=0" \
  --data-urlencode "article[release_pending]=0" \
  --data-urlencode "send_notifications=0"

Scheduling and Notifications

All News and Events support scheduling and configurable notification delivery.

Scheduling (Release Control)

  • ...[release_pending]: Set to 0 for immediate release, or 1 to schedule for later.
  • ...[release_at]: When release_pending is 1, provide an ISO 8601 timestamp (e.g., 2026-03-25 10:00).

Notification Delivery

The send_notifications parameter controls how users are alerted:

  • 0: None (Silent release)
  • 1: Push OR Email (Default: sends push if enabled on device, falls back to email if notifications are disabled)
  • 2: Push AND Email (Sends both regardless of app notification status)

Event Reminders

Events include an additional event[reminder] field for automated alerts:

  • -1: None
  • 0: At starting time
  • 1800: 30 minutes before
  • 3600: 1 hour before
  • 86400: 1 day before (and other standard intervals in seconds)
  • -2: Custom (requires event[reminder_datetime])

Operations

News Articles (create/read/update)

Required baseline fields for create:

  • article[subject]
  • article[body]
  • article[visibility] (public|approved_members|access_groups)
  • article[comments_enabled] (0|1)
  • article[feature] (0|1)
  • article[html_body] (0|1)
  • article[release_pending] (0|1)
  • send_notifications (0|1|2)

Schedule Events (create/read/update)

Key fields:

  • event[team_id], event[title]
  • event[datetime], event[datetime_end] or all-day fields
  • event[details] / html variant fields
  • event[visibility], event[access_level_ids_csv]
  • event[release_pending], event[release_at]
  • send_notifications, event[reminder], event[reminder_datetime]

Teams and Access Groups (ID resolution + targeting)

Use list endpoints to resolve IDs before posting news/events:

Use team/access-group IDs in:

  • event[team_id]
  • article[access_level_ids_csv]
  • event[access_level_ids_csv]
  • team[access_level_ids_csv]
  • roster_access_level_id

References

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

85.07%
按下载量换算863

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills