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/agi-super-team 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 signingdevelopment
Technology-agnostic prompt generator that creates customizable AI prompts for scanning codebases and identifying high-quality code exemplars. Supports multiple programming languages (.NET, Java, JavaScript, TypeScript, React, Angular, Python) with configurable analysis depth, categorization methods, and documentation formats to establish coding standards and maintain consistency across development teams.
tools
Expert-level browser automation, debugging, and performance analysis using Chrome DevTools MCP. Use for interacting with web pages, capturing screenshots, analyzing network traffic, and profiling performance.
data-ai
Prompt for creating detailed feature implementation plans, following Epoch monorepo structure.
tools
Interactive prompt refinement workflow: interrogates scope, deliverables, constraints; copies final markdown to clipboard; never writes code. Requires the Joyride extension.