# dintel-shared — D.intelligence Agent Corps Shared Environment Shared Python package and utilities used by all `dintel-` Claude Skills (agents 70-77, 88). ## Setup ```bash cd /Users/ourdigital/Projects/our-claude-skills/custom-skills/dintel-shared python3 -m venv .venv source .venv/bin/activate pip install -e ".[dev]" ``` ## Package Structure ``` src/dintel/ ├── __init__.py # Version ├── brand.py # Brand constants, colors, service architecture, prohibited words ├── document.py # DOCX generation with D.intelligence branding ├── excel.py # Excel/xlsx generation with branded styles └── notion.py # Notion database IDs, status options, client mappings ``` ## Usage ```python from dintel.brand import BRAND_NAME, SERVICE_MODULES, COLOR_PRIMARY from dintel.document import create_branded_doc, save_doc from dintel.excel import create_branded_workbook, style_header_row from dintel.notion import DB_TASKS_DASHBOARD, CLIENT_DB_MAP ```