用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tubecreate/tubecli --skill auth-manager命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | auth_manager |
| description | Manage OAuth credentials & tokens for Google, Facebook, TikTok |
This skill is responsible for generating the authorization URL (Google, Facebook, TikTok) that the user can click to grant app permissions, e.g. managing video uploads to YouTube, Fanpage, TikTok.
If the user asks for an authorization link, analyze the platform (provider) and return the following JSON:
{
"action": "generate_auth_link",
"provider": "google",
"scopes": ["youtube", "youtube_upload"]
}
Supported provider values: google, facebook, tiktok.
If you don't know the scopes, you can leave it empty [], and the system will automatically use the most common default scope.
Note: After the bot responds with JSON, the system will return a link for the user to click and grant permission.
When the agent sits inside a Flow Builder group that contains a Sheet node, the group prompt block lists that sheet by alias and the exact JSON syntax. Five actions are handled here (auth_manager owns the Google token):
| action | needs access | purpose |
|---|---|---|
gsheet_read | read | rows of a tab / range (max_rows, tail) |
gsheet_tabs | read | list tabs |
gsheet_append | append | add rows after the last filled row |
gsheet_update | write | overwrite an explicit range |
gsheet_create_tab | manage | add a tab |
Rules: refer to the sheet by its alias ("sheet": "<alias>") — never by id or
credential; a sheet that is not in the agent's group(s) does not exist and the action
is refused. Without any group sheet the answer is "No Google Sheet is shared with this
agent". The HTTP side used by the cloud Sheet node: GET /gsheets/inspect,
GET /gsheets/{id}/values, POST /gsheets/{id}/append under /api/v1/auth-manager.