Files
our-claude-skills/custom-skills/31-notion-organizer/code/templates/mapping_example.json
Andrew Yim b69e4b6f3a refactor: Reorganize skill numbering and update documentation
Skill Numbering Changes:
- 01-03: OurDigital core (was 30-32)
- 31-32: Notion tools (was 01-02)
- 99_archive: Renamed from _archive for sorting

New Files:
- AGENTS.md: Claude Code agent routing guide
- requirements.txt for 00-claude-code-setting, 32-notion-writer, 43-jamie-youtube-manager

Documentation Updates:
- CLAUDE.md: Updated skill inventory (23 skills)
- AUDIT_REPORT.md: Current completion status (91%)
- Archived REFACTORING_PLAN.md (most tasks complete)

Removed:
- ga-agent-skills/ (moved to separate repo ~/Project/dintel-ga4-agent)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-23 18:42:39 +07:00

57 lines
1.2 KiB
JSON

{
"_comment": "Property Mapping Template - Customize for your migration",
"_instructions": {
"target": "Name of property in target database",
"source_type": "Auto-detected, for reference only",
"value_mapping": "Optional: Map old values to new values"
},
"Name": {
"target": "Project Name",
"source_type": "title",
"value_mapping": null
},
"Status": {
"target": "Stage",
"source_type": "select",
"value_mapping": {
"Not Started": "Backlog",
"In Progress": "Active",
"Done": "Completed",
"On Hold": "Paused"
}
},
"Priority": {
"target": "Priority",
"source_type": "select",
"value_mapping": {
"P1": "High",
"P2": "Medium",
"P3": "Low"
}
},
"Due Date": {
"target": "Deadline",
"source_type": "date",
"value_mapping": null
},
"Tags": {
"target": "Categories",
"source_type": "multi_select",
"value_mapping": {
"marketing": "Marketing",
"dev": "Development",
"design": "Design"
}
},
"Description": {
"target": "Notes",
"source_type": "rich_text",
"value_mapping": null
},
"Completed": {
"target": "Is Done",
"source_type": "checkbox",
"value_mapping": null
}
}