skills/claude-skills-open/skills/core/documents/SKILL.md
Manage company & personal documents — rekvizity, passport, INN, bank details, scans. Store locally + Google Drive. Send data blocks on request.
npx skillsauth add aaaaqwq/claude-code-skills documentsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Manage company & personal documents: structured data (rekvizity, passport, bank) + scans in Google Drive. Quick retrieval and sending when clients/partners request.
google-drive, email-send-bulk (for sending)| What | Path |
|------|------|
| Passport & INN data | $DATA_PATH/personal/passport_data.md |
| Company wiki | ~/company-wiki/ |
| Folder | ID | Purpose |
|--------|----|---------|
| Company (root) | <YOUR_COMPANY_FOLDER_ID> | All company/personal docs |
| Legal | <YOUR_LEGAL_FOLDER_ID> | Contracts, NDA, agreements (signed) |
| Personal | <YOUR_PERSONAL_FOLDER_ID> | Passport, INN, personal ID scans |
| Bank | <YOUR_BANK_FOLDER_ID> | Bank statements, account details |
WeLabelData (root: <YOUR_DRIVE_ROOT_ID>)
├── Company/ <- THIS SKILL
│ ├── Legal/ <- signed contracts, NDA, agreements
│ ├── Personal/ <- passport, INN, ID scans
│ └── Bank/ <- bank statements, account details
├── Clients/ <- client-workspace skill
│ ├── ClientF/
│ ├── ClientG/
│ └── ...
└── Templates/ <- invoice, NDA, proposal templates
├── Invoices/
├── NDA/
└── Proposals/
These are ready-to-send text blocks. Read from passport_data.md and format for the context.
ФОП <YOUR_FULL_NAME>
ІПН (РНОКПП): <YOUR_TAX_ID>
Тел: <YOUR_PHONE>
Email: <YOUR_EMAIL>
Паспорт громадянина України:
- Серія та номер: <YOUR_PASSPORT_SERIES_NUMBER>
- Виданий: <YOUR_PASSPORT_ISSUER>
ФОП <YOUR_FULL_NAME>
ІПН (РНОКПП): <YOUR_TAX_ID>
Паспорт: серія <YOUR_PASSPORT_SERIES> №<YOUR_PASSPORT_NUMBER>, виданий <YOUR_PASSPORT_ISSUER>
Тел: <YOUR_PHONE>
Email: <YOUR_EMAIL>
passport_data.mdsend_email.py or copy to clipboard)# Read current data
cat $DATA_PATH/personal/passport_data.md
passport_data.md if the scan contains new structured dataDM="$GOOGLE_TOOLS_PATH/.venv/bin/python3 $GOOGLE_TOOLS_PATH/drive_manager.py"
# Personal documents (passport, INN, etc.)
$DM upload /path/to/scan.jpg --folder <YOUR_PERSONAL_FOLDER_ID> --name "Descriptive-name.jpg"
# Legal documents (contracts, NDA)
$DM upload /path/to/contract.pdf --folder <YOUR_LEGAL_FOLDER_ID> --name "Contract-ClientName-YYYY-MM.pdf"
# Bank documents
$DM upload /path/to/statement.pdf --folder <YOUR_BANK_FOLDER_ID> --name "Bank-statement-YYYY-MM.pdf"
cd $GOOGLE_TOOLS_PATH
# Send FOP rekvizity (reply to thread)
.venv/bin/python3 send_email.py \
--to [email protected] \
--subject "Re: Original Subject" \
--body "BLOCK_TEXT_HERE" \
--reply-to "from:[email protected] subject:Original Subject"
DM="$GOOGLE_TOOLS_PATH/.venv/bin/python3 $GOOGLE_TOOLS_PATH/drive_manager.py"
# All company docs
$DM list <YOUR_COMPANY_FOLDER_ID>
# Personal docs (passport, INN)
$DM list <YOUR_PERSONAL_FOLDER_ID>
# Legal docs
$DM list <YOUR_LEGAL_FOLDER_ID>
# Bank docs
$DM list <YOUR_BANK_FOLDER_ID>
| Type | Format | Example |
|------|--------|---------|
| Passport scan | Passport-pages-{N}-{M}.jpg | Passport-pages-2-3.jpg |
| INN card | IPN-card.jpg | IPN-card.jpg |
| Contract | Contract-{Client}-{YYYY-MM}.pdf | Contract-ClientG-2026-03.pdf |
| NDA | NDA-{Client}-{YYYY-MM}.pdf | NDA-ClientG-2026-03.pdf |
| Bank statement | Bank-statement-{YYYY-MM}.pdf | Bank-statement-2026-02.pdf |
| ID card | ID-card-{type}.jpg | ID-card-biometric.jpg |
Passport-pages-2-3.jpg — main passport page (photo, name, DOB)Passport-pages-4-5.jpg — passport issuance pagePassport-pages-10-11-registration.jpg — registration stampIPN-card.jpg — tax identification cardWhen user provides new documents (e.g., bank details, biometric passport, driving license):
passport_data.md (or create separate file if large)passport_data.md contains sensitive PII — NEVER commit to public reposdata/personal/ which is in .gitignorecompany-wiki — company infrastructure, services, accounts (not personal data)google-drive — underlying Drive API commandsclient-workspace — client folder managementinvoice-generator-agent — uses FOP rekvizity for invoice generationlegal-review — review contracts before signingtesting
通用自媒体文章自动发布工具。支持百家号、搜狐号、知乎、微信公众号、小红书、抖音号六个平台的自动化发布流程。使用Playwright自动化实现平台导航和发布,支持通过storageState管理Cookie实现账号切换。
development
# SKILL.md - Model Configuration Status (mcstatus) ## 触发条件 - `/mcstatus` 命令 - 用户询问模型配备、模型配置、model status、模型列表等 ## 功能 实时生成 Agent + Cron 的模型配置报告,展示当前所有 agent 的主模型/fallback链和所有 cron 任务的模型分配。 ## 执行步骤 ### Step 1: 收集 Agent 模型配置 读取各 agent 的 models.json 获取主模型和 fallback 链: ```bash for agent in main ops code quant data research content market finance pm law product sales batch; do config=$(cat ~/.openclaw/agents/$agent/agent/models.json 2>/dev/null) if [ -n "$config" ]; then echo "=== $agent
tools
MCP 服务器智能管理助手。自动检测 MCP 可用性、智能开关、功能问答,提供人性化的 MCP 管理体验。
tools
从GitHub搜索并自动安装配置MCP(Model Context Protocol)服务器工具到Claude配置文件。当用户需要安装MCP工具时触发此技能。工作流程:搜索GitHub上的MCP项目 -> 提取npx配置 -> 添加到~/.claude.json -> 处理API密钥(如有)。