用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/aAAaqwq/AGI-Super-Team --skill google-drive命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
币安广场合约投机雷达 v5:以最近24小时专业交易帖为主要证据,回源核验帖子, 联合币安公共合约行情、4周期K线、布林带、ATR、量能和RR,生成可审计的本地影子报告。 触发词:币安广场、扫描币安、binance square、合约机会、交易信号雷达、4小时雷达
BTC 5分钟K线实时方向预测。v5.9对抗式审查重构: 13因子收敛到3个有证据信号(half_body延续+volume放量+meanrev回归, 11个47-49%硬币因子清零) + 三层独立信息过滤(多周期4h/1h/15m趋势 + 跨资产ETH/SOL广度 + 真订单流OFI) + 移除bull×0.92惩罚/Platt置信度门控。半K线策略第2分钟执行。黑天鹅防护: ATR spike+FNG<25。Binance端点双向故障切换。
BB 双向套利策略:加密合约 10x 杠杆布林带均值回归。布林带收窄=横盘→在下轨买、上轨卖;三重过滤器(1h趋势/RSI/BB甜区)确认碗平放,轨对轨止盈(RR 2:1~4:1)。含实时WebSocket模拟盘(paper)、历史回测(simulate/backtest_daily)、币安永续实盘CLI(trade_exec)。触发:'bb套利'、'布林带'、'bollinger'、'横盘策略'、'NEAR'、'回测'、'模拟盘'、'paper trading'。
基于 SOC 职业分类
正在显示 SKILL.md
| name | google-drive |
| description | Upload files, create folders, list and search Google Drive via CLI |
Upload files, create folders, list and search Google Drive via CLI.
google-auth (if token expired)google-api-python-client, google-auth| What | Path |
|---|---|
| Script | $GOOGLE_TOOLS_PATH/drive_manager.py |
| Token | $GOOGLE_TOOLS_PATH/token.json |
| Credentials | $GOOGLE_TOOLS_PATH/credentials.json |
| Venv Python | $GOOGLE_TOOLS_PATH/.venv/bin/python3 |
| Folder | ID |
|---|---|
| Root (WeLabelData) | <YOUR_DRIVE_ROOT_ID> |
| Clients | <YOUR_CLIENTS_FOLDER_ID> |
| Templates | <YOUR_TEMPLATES_FOLDER_ID> |
cd $GOOGLE_TOOLS_PATH && python3 drive_manager.py list FOLDER_ID
cd $GOOGLE_TOOLS_PATH && python3 drive_manager.py create-folder "Folder Name" --parent FOLDER_ID
cd $GOOGLE_TOOLS_PATH && python3 drive_manager.py upload /path/to/file.pdf --folder FOLDER_ID
cd $GOOGLE_TOOLS_PATH && python3 drive_manager.py upload /path/to/file.pdf --folder FOLDER_ID --name "Custom Name.pdf"
cd $GOOGLE_TOOLS_PATH && python3 drive_manager.py search "query"
cd $GOOGLE_TOOLS_PATH && python3 drive_manager.py search "query" --folder FOLDER_ID
cd $GOOGLE_TOOLS_PATH && ./.venv/bin/python3 drive_manager.py share FILE_ID --email user@example.com --role writer
cd $GOOGLE_TOOLS_PATH && ./.venv/bin/python3 drive_manager.py share FILE_ID --email user@example.com --role reader --notify --message "Please review"
cd $GOOGLE_TOOLS_PATH && ./.venv/bin/python3 drive_manager.py permissions FILE_ID
cd $GOOGLE_TOOLS_PATH && ./.venv/bin/python3 drive_manager.py create-doc "Title" --folder FOLDER_ID
cd $GOOGLE_TOOLS_PATH && ./.venv/bin/python3 drive_manager.py create-doc "Title" --folder FOLDER_ID --html /path/to/content.html
cd $GOOGLE_TOOLS_PATH && ./.venv/bin/python3 drive_manager.py info FILE_ID
| Parameter | Description | Default |
|---|---|---|
folder_id | Folder ID for list command | required |
--parent | Parent folder ID for create-folder | root |
--folder | Target folder ID for upload / search / create-doc | none |
--name | Custom filename for upload | original filename |
--email | Email to share with (share command) | required |
--role | Permission role: reader, writer, commenter | writer |
--notify | Send email notification when sharing | false |
--message | Custom notification message | none |
--html | Path to HTML file for doc content (create-doc) | empty doc |
cd $GOOGLE_TOOLS_PATH && python3 drive_manager.py list <YOUR_CLIENTS_FOLDER_ID>
cd $GOOGLE_TOOLS_PATH && python3 drive_manager.py create-folder "Acme Corp" --parent <YOUR_CLIENTS_FOLDER_ID>
cd $GOOGLE_TOOLS_PATH && python3 drive_manager.py upload ~/invoices/inv-100.pdf --folder CLIENT_FOLDER_ID --name "Invoice #100.pdf"
cd $GOOGLE_TOOLS_PATH && python3 drive_manager.py search "proposal" --folder <YOUR_CLIENTS_FOLDER_ID>
All commands output JSON array. Each entry has:
id — Google Drive file IDname — file/folder namemimeType — MIME type (application/vnd.google-apps.folder for folders)webViewLink — direct link to open in browserdrive.readonly (list/search) + drive.file (create/upload/share). Cannot modify files not created by this app.| Problem | Solution |
|---|---|
token.json expired | Run google-auth skill to refresh |
| 403 insufficient permissions | Check scopes in google_scopes.py, may need to re-auth |
| File not found on upload | Use absolute path or ~ expansion |
| Empty list result | Verify folder ID is correct, check trashed status |
google-auth — OAuth token managementinvoice-generator-agent — generates invoices that can be uploaded here