소스 정보
- 저장소
- tubecreate/tubecli
- 최근 소스 활동
- 2026년 8월 22일 14:02
- 감지된 SKILL.md 언어
- 영어
- 스타
- 166
- 포크
- 3
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tubecreate/tubecli --skill auth-manager명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Manage anti-detect browser profiles, open/close browsers, automate the web
Manage files and folders on the computer
Manage and deploy Cloudflare Workers websites. Provides a card list of websites, manual add, and automatic creation from templates (git clone → build OpenNext → wrangler deploy → D1 + R2). Integrates with cloud_api for Cloudflare credentials (CF_API_TOKEN + CF_ACCOUNT_ID, or Global API Key + email).
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.