blog-article-writer
Creates long-form content including blog posts, articles, guides, and thought leadership pieces. Uses SEO best practices, storytelling frameworks, and learns…
Organize and manage folders in your Canva account. Use this skill when user wants to create folders, move designs between folders, rename folders, or organize their Canva project structure. Follows 3-mode workflow to prevent accidental moves or deletions. For viewing folder
$ npx -y skills add OpenAnalystInc/10x-Content-Expert --skill canva-folder-organizer --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/canva-folder-organizerContext preview
The summary Claude sees to decide when to auto-load this skill.
Organize and manage folders in your Canva account. Use this skill when user wants to create folders, move designs between folders, rename folders, or organize their Canva project structure. Follows 3-mode workflow to prevent accidental moves or deletions. For viewing folder
name: canva-folder-organizer description: | Organize and manage folders in your Canva account. Use this skill when user wants to create folders, move designs between folders, rename folders, or organize their Canva project structure. Follows 3-mode workflow to prevent accidental moves or deletions. For viewing folder contents use canva-explorer first. allowed-tools: - Bash - Read - Write - AskUserQuestion
> **QUICK REFERENCE** > - **Scripts location**: `scripts/` (NOT `skills/canva-folder-organizer/scripts/` - those don't exist) > - **List folders**: `.venv\Scripts\python.exe scripts/list_folders.py` > - **List designs**: `.venv\Scripts\python.exe scripts/list_designs.py` > - **API client**: `scripts/canva_client.py` (import: `from canva_client import get_client`) > - **Sample script**: `scripts/samples/sample_canva_operations.py` > > **WARNING**: Commands below referencing `skills/canva-*/scripts/*.py` are WRONG paths. > Write custom Python using `canva_client.py`. See `scripts/samples/sample_canva_operations.py`.
Manage and organize your Canva folder structure and move items between folders.
**This skill handles:**
**NOT handled by this skill:**
Canva Account
├── Projects (root)
│ ├── Folder 1
│ │ ├── Subfolder A
│ │ └── Subfolder B
│ └── Folder 2
├── Uploads (uploads)
│ └── [Uploaded assets]
└── Trash
└── [Deleted items]1. **Map Current Structure**
# Get current folder structure python skills/canva-explorer/scripts/list_folders.py --depth 5
2. **Identify Changes Needed**
## Folder Organization Plan ### Current Structure Projects/ ├── Marketing (12 items) ├── Sales (8 items) ├── Random (45 items) ← Needs organization └── Old Stuff (20 items) ### Proposed Changes 1. CREATE: "Marketing/2024-Q1" 2. CREATE: "Marketing/2024-Q2" 3. MOVE: 15 designs from "Random" → "Marketing/2024-Q1" 4. RENAME: "Old Stuff" → "Archive-2023" 5. DELETE: Empty folder "Untitled" ### Items to Move | Design | From | To | |--------|------|-----| | "Jan Campaign" | Random | Marketing/2024-Q1 | | "Feb Promo" | Random | Marketing/2024-Q1 | ... ### Safety Notes - "Random" will have 30 items remaining after move - Delete operation for "Untitled" is safe (empty)
Folder-specific questions:
1. **Create Operations**
2. **Move Operations**
3. **Delete Operations**
4. **Bulk Operations**
# Create folder python skills/canva-folder-organizer/scripts/create_folder.py \ --name "2024-Q1" \ --parent "MARKETING_FOLDER_ID" # Rename folder python skills/canva-folder-organizer/scripts/rename_folder.py \ --folder "FOLDER_ID" \ --new-name "Archive-2023" # Move single item python skills/canva-folder-organizer/scripts/move_item.py \ --item "DESIGN_ID" \ --to-folder "TARGET_FOLDER_ID" # Move multiple items python skills/canva-folder-organizer/scripts/move_items.py \ --items "ID1,ID2,ID3" \ --to-folder "TARGET_FOLDER_ID" # Delete folder python skills/canva-folder-organizer/scripts/delete_folder.py \ --folder "FOLDER_ID" \ --confirm true
Projects/ ├── Project Alpha/ │ ├── Designs/ │ ├── Assets/ │ └── Exports/ ├── Project Beta/ │ ├── Designs/ │ ├── Assets/ │ └── Exports/
Projects/ ├── 2024/ │ ├── Q1/ │ ├── Q2/ │ ├── Q3/ │ └── Q4/ ├── 2023/ │ └── Archive/
Projects/ ├── Social Media/ │ ├── Instagram/ │ ├── Facebook/ │ └── LinkedIn/ ├── Presentations/ ├── Marketing Materials/ └── Brand Assets/
Projects/ ├── Client A/ │ ├── Active/ │ └── Completed/ ├── Client B/ │ ├── Active/ │ └── Completed/ └── Internal/
# Analyze folder and suggest organization python skills/canva-folder-organizer/scripts/auto_organize.py \ --folder "RANDOM_FOLDER_ID" \ --strategy "by-type" \ --dry-run true # Preview only # Output: # Would create: # - Social Media/ (25 items) # - Presentations/ (10 items) # - Documents/ (5 items) # - Other/ (5 items)
A comprehensive Claude Code skills plugin for AI-powered content creation. Creates emails, social media content, presentations, blogs, and more - all aligned with your brand voice and informed by your reference materials.
Repo: OpenAnalystInc/10x-Content-Expert
Creates long-form content including blog posts, articles, guides, and thought leadership pieces. Uses SEO best practices, storytelling frameworks, and learns…
Maintains brand voice consistency across all content. Defines, documents, and enforces brand guidelines including tone, vocabulary, style, and messaging. Use…
Upload and manage assets (images, videos, audio) in your Canva account. Use this skill when user wants to upload files to Canva, manage their asset library, or…
Manage and apply brand kits in Canva. Use this skill when user wants to work with brand colors, fonts, logos, or maintain brand consistency across designs.…
Generate content ideas and text for Canva designs. Use this skill when user needs help with what to write, content suggestions, copy for designs, captions,…
Design knowledge base for understanding design terminology, concepts, and best practices. Use this skill when user asks about design terms, needs guidance on…