Files
our-claude-skills/.claude/commands/notion-organizer.md
Andrew Yim 81afe587ce feat(settings-audit): Add Claude Code settings optimizer skill
- Add new 00-claude-code-setting skill for token usage optimization
- Includes audit scripts for MCP servers, CLAUDE.md, and extensions
- Auto-fix capability with backup for serverInstructions and frontmatter
- Add YAML frontmatter to 17 command files
- Target: keep baseline under 30% of 200K context limit

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

37 lines
1.1 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 ourdigital-custom-skills/01-notion-organizer/code/scripts/schema_migrator.py \
--source-db DATABASE_ID --analyze
# Migrate with mapping
python ourdigital-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 ourdigital-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)