Files
Andrew Yim f27fb7a2c4
Some checks failed
Verify Skills / verify-skills (push) Has been cancelled
Add jamie-copy-trimmer (48) and dintel-campaign-designer (78) skills
Import two skills authored in Claude Cowork: jamie-copy-trimmer as a
root-only Jamie skill, and campaign-gate-process as dintel-campaign-designer
with full D.intelligence Agent Corps packaging (code/desktop/shared,
agent-id 78, Draft & Wait autonomy) since it now sits inside the 70-79
block. Bumps the corps roster count to 9 agents + 1 meta-agent across all
sibling skills and registers #78 in the shared USER-GUIDE/README. Also adds
.claude/commands wrappers and ~/.claude/skills symlinks so both are usable.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-07-03 12:59:19 +09:00

1.0 KiB

_dintel-shared — D.intelligence Agent Corps Shared Environment

Shared Python package and utilities used by all dintel- Claude Skills (agents 70-78, 88).

Setup

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

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