Complete implementation of OurDigital skills with dual-platform support (Claude Desktop + Claude Code) following standardized structure. Skills created: - 01-ourdigital-brand-guide: Brand reference & style guidelines - 02-ourdigital-blog: Korean blog drafts (blog.ourdigital.org) - 03-ourdigital-journal: English essays (journal.ourdigital.org) - 04-ourdigital-research: Research prompts & workflows - 05-ourdigital-document: Notion-to-presentation pipeline - 06-ourdigital-designer: Visual/image prompt generation - 07-ourdigital-ad-manager: Ad copywriting & keyword research - 08-ourdigital-trainer: Training materials & workshop planning - 09-ourdigital-backoffice: Quotes, proposals, cost analysis - 10-ourdigital-skill-creator: Meta skill for creating new skills Features: - YAML frontmatter with "ourdigital" or "our" prefix triggers - Standardized directory structure (code/, desktop/, shared/, docs/) - Shared environment setup (_ourdigital-shared/) - Comprehensive reference documentation - Cross-skill integration support Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
54 lines
1.2 KiB
Markdown
54 lines
1.2 KiB
Markdown
---
|
|
description: Gtm Manager command
|
|
---
|
|
|
|
# GTM Manager
|
|
|
|
Full GTM management with dataLayer injection and tag generation.
|
|
|
|
## Triggers
|
|
- "GTM manager", "generate dataLayer tag", "dataLayer 태그 생성"
|
|
|
|
## Capabilities
|
|
|
|
1. **Full Audit** - Everything in gtm-audit plus more
|
|
2. **DataLayer Injector** - Generate custom HTML tags
|
|
3. **Event Mapping** - Map site actions to GA4 events
|
|
4. **Notion Export** - Save audit results to Notion
|
|
|
|
## Scripts
|
|
|
|
```bash
|
|
# Full GTM management
|
|
python custom-skills/21-gtm-manager/code/scripts/gtm_manager.py \
|
|
--url https://example.com --full-audit
|
|
|
|
# Generate dataLayer tag
|
|
python custom-skills/21-gtm-manager/code/scripts/gtm_manager.py \
|
|
--generate-tag purchase --output purchase_tag.html
|
|
|
|
# Export to Notion
|
|
python custom-skills/21-gtm-manager/code/scripts/gtm_manager.py \
|
|
--url https://example.com --notion-export --database DATABASE_ID
|
|
```
|
|
|
|
## DataLayer Tag Templates
|
|
|
|
### Purchase Event
|
|
```html
|
|
<script>
|
|
dataLayer.push({
|
|
'event': 'purchase',
|
|
'ecommerce': {
|
|
'transaction_id': '{{Order ID}}',
|
|
'value': {{Order Total}},
|
|
'currency': 'KRW',
|
|
'items': [...]
|
|
}
|
|
});
|
|
</script>
|
|
```
|
|
|
|
## Environment
|
|
- `NOTION_TOKEN` - For Notion export (optional)
|