37 lines
1.2 KiB
Markdown
37 lines
1.2 KiB
Markdown
---
|
|
description: Notion Organizer command
|
|
---
|
|
|
|
# Notion Organizer
|
|
|
|
Notion workspace management agent for organizing, restructuring, and maintaining databases.
|
|
|
|
## Triggers
|
|
- "organize Notion", "노션 정리", "database cleanup"
|
|
|
|
## Capabilities
|
|
|
|
1. **Database Schema Analysis** - Analyze and document database structures
|
|
2. **Property Cleanup** - Remove unused properties, standardize types
|
|
3. **Data Migration** - Move data between databases with mapping
|
|
4. **Bulk Operations** - Archive, tag, or update multiple pages
|
|
|
|
## Scripts
|
|
|
|
```bash
|
|
# Analyze database schema
|
|
python /Users/ourdigital/Project/our-claude-skills/custom-skills/01-notion-organizer/code/scripts/schema_migrator.py \
|
|
--source-db DATABASE_ID --analyze
|
|
|
|
# Migrate with mapping
|
|
python /Users/ourdigital/Project/our-claude-skills/custom-skills/01-notion-organizer/code/scripts/schema_migrator.py \
|
|
--source-db SOURCE_ID --target-db TARGET_ID --mapping mapping.json
|
|
|
|
# Async bulk operations
|
|
python /Users/ourdigital/Project/our-claude-skills/custom-skills/01-notion-organizer/code/scripts/async_organizer.py \
|
|
--database DATABASE_ID --operation archive --filter "Status=Done"
|
|
```
|
|
|
|
## Environment
|
|
- `NOTION_TOKEN` - Notion integration token (required)
|