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

tapauthtapauth 搜索

Agent Skill

用于辅助安全审计、权限检查、凭据风险、认证流程和常见漏洞排查。它适合让 Agent 梳理敏感配置、检查依赖风险、分析鉴权逻辑或生成安全复核清单。使用时不能把工具输出直接当最终结论,涉及密钥、令牌、用户数据或生产系统时,应先确认最小权限、脱敏方式和操作边界。

总安装

21,258

周安装

877

GitHub Stars

公开资料未说明

下载量

6,946
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install tapauth

简介

tapauth 作为 OpenClaw 的 OAuth 令牌代理提供商。

  • 支持 Google Calendar、GitHub、Slack 等第三方服务接入。
  • 简化鉴权流程并集中管理各类访问令牌。
  • 令牌存储需加密,建议定期轮换密钥。
  • 部分服务可能限制代理访问频率。tapauth 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
tapauth
description
>-
license
MIT
compatibility
Requires curl and bash. Designed for OpenClaw's exec secrets provider.
metadata
author
tapauth
version
1.0
website
https://tapauth.ai
docs
https://tapauth.ai/docs

TapAuth — OAuth Tokens via OpenClaw Secrets Manager

TapAuth provides OAuth tokens through OpenClaw's exec secrets provider. Tokens are resolved at gateway startup and held in memory — they never appear in shell commands or config files as plaintext.

You must NEVER use tapauth.sh --token directly in shell commands, curl calls, or $(...) substitutions. Tokens are always resolved through the secrets manager. Your job as an agent is to configure the secrets provider, not to fetch tokens yourself.

When a user asks you to do something that needs an OAuth token

Follow these steps in order. Do not skip to step 3. Do not run --token yourself.

1. Create a grant and show the approval URL

Run the script without --token to create a grant. Set TAPAUTH_HOME so the grant cache is stored in a stable location that the exec provider can also find:

TAPAUTH_HOME=/home/node/.tapauth /home/node/.openclaw/skills/tapauth/scripts/tapauth.sh <provider> <scopes>

Example for Google Calendar:

TAPAUTH_HOME=/home/node/.tapauth /home/node/.openclaw/skills/tapauth/scripts/tapauth.sh google calendar.readonly

Output:

Approve access: https://tapauth.ai/approve/abc123

Show this URL to the user. Once they approve, run with --token to get the bearer token.

Show the approval URL to the user and ask them to approve. Wait for them to confirm before proceeding. That final line is the script's generic output. In OpenClaw, do not run --token yourself — proceed to step 2 and let the secrets manager invoke it.

2. Configure the exec secrets provider in openclaw.json

After the user confirms they approved, edit ~/.openclaw/openclaw.json to add an exec provider under secrets.providers:

{
  "secrets": {
    "providers": {
      "tapauth_google_calendar": {
        "source": "exec",
        "command": "/home/node/.openclaw/skills/tapauth/scripts/tapauth.sh",
        "args": ["--token", "google", "calendar.readonly"],
        "passEnv": ["HOME"],
        "env": {"TAPAUTH_HOME": "/home/node/.tapauth"},
        "jsonOnly": false
      }
    }
  }
}

Key fields:

  • command: Absolute path to scripts/tapauth.sh in this skill directory
  • args: ["--token", "<provider>", "<scopes>"] — must match the grant you created in step 1
  • jsonOnly: false: The script outputs a raw token string, not JSON
  • passEnv: Must include HOME
  • env.TAPAUTH_HOME: Must be /home/node/.tapauth — the same path used when creating the grant in step 1

Use the naming convention tapauth_<provider> or tapauth_<provider>_<scope> for the provider key.

3. Reload secrets and confirm

After editing openclaw.json, run:

openclaw secrets reload

This tells the gateway to re-resolve all secret providers. The exec provider runs tapauth.sh --token in the background and stores the result in the in-memory secrets snapshot.

Tell the user the setup is complete. The token is now resolved and will be available at every gateway startup. If the user repeats their request in a new session, the token will already be available.

If you need to verify immediately, run openclaw secrets reload and then retry the user's request through the normal OpenClaw secret path. Do not invoke tapauth.sh --token directly.

Rules

  • NEVER run tapauth.sh --token directly. Do not use it in $(...), do not capture its output, do not pipe it to curl. The secrets manager runs it for you.
  • NEVER skip the approval step. Always create the grant first (step 1), get user approval, then configure the provider (step 2).
  • No API key or credentials needed. TapAuth is zero-config. Do not look for API keys, client secrets, or environment variables.
  • Always use absolute paths for the command field in the exec provider config.

Quick Reference — Provider + Scopes

ProviderArgs for exec providerScopes Reference
Google Calendar["--token", "google", "calendar.readonly"]references/google.md
Google Drive["--token", "google", "drive.readonly"]references/google.md
Google Sheets["--token", "google", "spreadsheets.readonly"]references/google.md
Gmail["--token", "google", "gmail.send"]references/gmail.md
GitHub["--token", "github", "repo"]references/github.md
Vercel["--token", "vercel", "deployment"]references/vercel.md
Notion["--token", "notion", "read_content"]references/notion.md
Slack["--token", "slack", "users:read"]references/slack.md
Asana["--token", "asana", "tasks:read"]references/asana.md
Linear["--token", "linear", "read"]references/linear.md
Sentry["--token", "sentry", "project:read"]references/sentry.md
Discord["--token", "discord", "identify"]references/discord.md
Apify["--token", "apify", "full_api_access"]references/apify.md

Multiple scopes: comma-separate in a single string, e.g. ["--token", "google", "calendar.readonly,drive.readonly"].

Token Lifecycle

  • Resolution: Fresh tokens fetched at each gateway startup and openclaw secrets reload.
  • Caching: tapauth.sh caches tokens locally with expiry. Subsequent calls return instantly if valid.
  • Refresh: Expired tokens are refreshed automatically from the TapAuth API. No user interaction needed.
  • Re-approval: If a grant is revoked, delete ~/.tapauth/<provider>-<scopes>.env and re-run scripts/tapauth.sh to create a new grant.

Troubleshooting

SymptomCauseFix
token refresh failedGrant revoked or expiredDelete ~/.tapauth/<provider>-<scopes>.env, re-run scripts/tapauth.sh
Token works locally but not in OpenClawpassEnv missing HOMEAdd HOME to passEnv array
command must be absolute pathRelative path in commandResolve scripts/tapauth.sh to its absolute path
Symlink errorSkill installed via symlinkAdd allowSymlinkCommand: true and trustedDirs to provider config
tapauth: timed outGrant not pre-approvedRun scripts/tapauth.sh <provider> <scopes> without --token first

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

97.35%
按下载量换算6,762

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills