Some checks failed
Verify Skills / verify-skills (push) Has been cancelled
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>
33 lines
1.0 KiB
Markdown
33 lines
1.0 KiB
Markdown
# _dintel-shared — D.intelligence Agent Corps Shared Environment
|
|
|
|
Shared Python package and utilities used by all `dintel-` Claude Skills (agents 70-78, 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
|
|
```
|