iOS Shortcuts Library
Your content research doesn't stop when you leave your desk. BlackOps Center's iOS Shortcuts library lets you capture ideas, save articles, and trigger content workflows directly from your iPhone or iPad.
What Are iOS Shortcuts?
iOS Shortcuts is Apple's automation app (built into iOS 13+). Think Zapier for your iPhone. You can trigger API calls, parse data, and build multi-step workflows—all without writing code. BlackOps Center provides pre-built shortcuts that connect directly to your account.
Available Shortcuts
1. Save to Reservoir
Use Case: You're scrolling Twitter, find a great thread, and want to save it to your "Content Ideas" reservoir.
How It Works:
- Share the URL from any app
- Choose "Save to Reservoir" from the share sheet
- Select target reservoir
- Optionally add notes or tags
- Content is extracted and saved to your reservoir
What Gets Saved:
- Page title and URL
- Excerpt (first 200 chars)
- OpenGraph metadata (image, description)
- Your custom notes and tags
- Timestamp and source
Example API Call
POST /api/admin/reservoirs/{reservoirId}/items
{
"url": "https://twitter.com/dan_abramov/status/...",
"title": "React 19 Performance Tips",
"notes": "Great insights on useMemo patterns",
"tags": ["react", "performance"],
"source_type": "mobile_shortcut"
}Download: Save to Reservoir.shortcut
2. Capture Idea
Use Case: A blog post idea hits you while walking the dog. Capture it before you forget.
How It Works:
- Trigger the shortcut from the Shortcuts widget or Siri
- Dictate or type your idea
- Choose a category (Blog Ideas, Newsletter Topics, etc.)
- Idea is saved to your "Quick Capture" reservoir
Pro Tip: Set up "Hey Siri, capture idea" as a voice shortcut. Hands-free capture while driving (legally parked, of course).
Download: Capture Idea.shortcut
3. Save Article with Tags
Use Case: You're reading a great article in Safari and want to save it with specific tags for later categorization.
How It Works:
- Tap share button in Safari
- Choose "Save Article with Tags"
- Select reservoir
- Choose from predefined tags or add custom ones
- Article metadata is extracted and saved
Features:
- Smart tag suggestions based on article content
- Support for multiple tags per article
- Automatic title and image extraction
- Reading time estimation
Download: Save Article with Tags.shortcut
4. Generate Blog Outline
Use Case: You have a topic in mind and want AI to generate a quick blog post outline.
How It Works:
- Run the shortcut
- Enter your blog topic
- Select target audience (optional)
- AI generates a structured outline
- Outline is saved as a draft in your Content Studio
Output Includes:
- Suggested title
- Hook/intro
- 3-5 main sections with bullet points
- Conclusion framework
- SEO keywords
- Estimated word count
Download: Generate Blog Outline.shortcut
5. Create Newsletter Draft
Use Case: Pull the top 3 starred items from your reservoir and create a newsletter draft.
How It Works:
- Run the shortcut
- Select reservoir (e.g., "Weekly Roundup")
- Shortcut fetches your recently starred items
- AI generates newsletter intro and item summaries
- Draft is created in your newsletter editor
Perfect For:
- Weekly link roundups
- Curated reading lists
- Industry news digests
Download: Create Newsletter Draft.shortcut
6. Quick Bookmark
Use Case: You just want to save a URL fast without any friction. Review and tag later.
How It Works:
- Share URL from any app
- Choose "Quick Bookmark"
- Saves to your default "Unsorted" reservoir
- That's it—2 taps total
Review Later: Go to your "Unsorted" reservoir on desktop and bulk-tag, categorize, or delete items.
Download: Quick Bookmark.shortcut
Setup Instructions
Prerequisites
- iOS 15+ or iPadOS 15+
- Shortcuts app installed (comes with iOS)
- Active BlackOps Center account
- API key (generated in Settings → Developer)
Step 1: Generate Your API Key
- Log in to BlackOps Center on desktop
- Go to Settings → Developer → API Keys
- Click "Create New API Key"
- Name it "iOS Shortcuts"
- Copy the key (you'll need it in Step 3)
⚠️ Security Note
Your API key grants full access to your account. Don't share it. Store it securely in the Shortcuts app (it's encrypted by iOS). You can revoke keys anytime in Settings.
Step 2: Download Shortcuts
On your iPhone or iPad:
- Open Safari and visit blackopscenter.com/shortcuts
- Tap on a shortcut you want to install
- Tap "Get Shortcut"
- Shortcuts app will open
- Review the actions (optional but recommended for security)
- Tap "Add Shortcut"
Step 3: Configure Shortcut
Each shortcut needs your API key and site ID on first run:
- Run the shortcut for the first time
- You'll be prompted for:
- API Key: Paste the key from Step 1
- Site ID: Your site identifier (find in Settings → Site Settings)
- These values are saved in the shortcut for future runs
- You won't be prompted again unless you update the shortcut
Step 4: Test It
- Find an article in Safari
- Tap the share button
- Select your installed shortcut (e.g., "Save to Reservoir")
- Follow the prompts
- Check your BlackOps Center dashboard to confirm it worked
Advanced Customization
Modify Shortcuts
All shortcuts are fully editable. You can:
- Change default reservoirs: Skip the selection menu and always save to one reservoir
- Add custom tags: Pre-fill tags like "mobile-saved" for later filtering
- Adjust API endpoints: Point to different API routes for custom workflows
- Chain shortcuts: Run multiple shortcuts in sequence
Example: Modify "Save to Reservoir" to always save to your "Reading List" reservoir and auto-tag with "unread".
Create Your Own Shortcuts
BlackOps Center's API is fully accessible from iOS Shortcuts. You can build custom shortcuts using our API:
// Shortcuts API example: Fetch reservoir items
GET /api/admin/reservoirs/{reservoirId}/items?limit=10
Headers:
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json
// Response
{
"items": [
{
"id": "abc123",
"title": "React 19 Features",
"url": "https://...",
"tags": ["react", "frontend"],
"created_at": "2025-02-01T10:00:00Z"
}
]
}See API Documentation for all available endpoints.
Siri Integration
Add any shortcut to Siri for voice-activated workflows:
- Open Shortcuts app
- Long-press on a shortcut
- Tap "Details"
- Tap "Add to Siri"
- Record a custom phrase (e.g., "Save this article")
Now you can trigger the shortcut by saying "Hey Siri, save this article" while viewing content in Safari.
Workflow Ideas
Morning Routine: Content Review
- Shortcut: Fetch Unread Items
- Pulls 10 unread items from your reservoir
- Displays them in a menu
- You select which to open
- Opens URL in Safari
- Marks item as read in BlackOps Center
Evening Routine: Weekly Newsletter Prep
- Shortcut: Starred Items This Week
- Fetches items you starred in the past 7 days
- Groups by tag/category
- Generates a newsletter draft
- Saves to your newsletter queue
On-the-Go: Idea Capture
- Widget on home screen: "Capture Idea"
- One tap → voice dictation
- Idea saved to "Quick Capture" reservoir
- Tagged with location and timestamp
Troubleshooting
"Shortcut Could Not Be Opened"
Cause: Untrusted shortcut error on iOS 15+.
Fix:
- Go to Settings → Shortcuts
- Enable "Allow Untrusted Shortcuts"
- You may need to toggle Airplane Mode on/off first
"Invalid API Key"
Cause: API key is incorrect, expired, or revoked.
Fix:
- Generate a new API key in BlackOps Center
- Edit the shortcut
- Find the "API Key" text field
- Replace with new key
- Save and re-run
"Network Request Failed"
Cause: Shortcut can't reach BlackOps Center API.
Fix:
- Check your internet connection
- Verify the API endpoint URL in the shortcut
- Try running the shortcut again (temporary server issue)
- Check BlackOps Center status page for outages
Shortcut Runs But Nothing Happens
Cause: Likely a missing parameter or incorrect site ID.
Fix:
- Edit the shortcut
- Check that all required fields are filled
- Verify your Site ID matches your account (Settings → Site Settings)
- Add a "Show Result" action at the end to debug API responses
Community Shortcuts
Users have built dozens of custom shortcuts for BlackOps Center. Browse the Community Shortcuts Gallery for inspiration:
- Save YouTube Video + Transcript: Captures video URL and auto-fetches transcript
- Thread Unroller: Converts Twitter threads to single-page articles
- Reading List to Newsletter: Batch-converts Safari Reading List to newsletter draft
- Podcast Notes to Reservoir: Saves Overcast listening notes to reservoir
- Daily Content Digest: Morning push notification with top reservoir items
Privacy & Security
What Data Gets Shared?
iOS Shortcuts communicate directly with BlackOps Center's API. No data passes through Apple or third-party servers. Here's what gets transmitted:
- URLs you explicitly share
- Text you input or dictate
- Your API key (encrypted by iOS)
- Selected tags and categories
Local Processing
All shortcut logic runs locally on your device. The only network requests are to BlackOps Center's API for data storage/retrieval.
Revoking Access
To revoke shortcut access:
- Go to Settings → Developer → API Keys
- Find the "iOS Shortcuts" key
- Click "Revoke"
- Shortcuts will stop working until you configure a new key
Future Shortcuts (Coming Soon)
- Voice Memo to Reservoir: Transcribe and save voice notes
- Photo OCR to Text: Extract text from images and save
- Location-Based Capture: Auto-tag items with location metadata
- Calendar Integration: Schedule content publication from mobile
- Widget Dashboard: View reservoir stats on home screen
Vote for upcoming shortcuts in the Feature Requests forum.
Pro Tip: Share Sheet Efficiency
iOS lets you customize the share sheet. Long-press on a shortcut in the share menu, drag it to the top row, and it'll appear first every time. Make "Quick Bookmark" your #1 for instant saves.
Next Steps
- Mobile-First Workflows: Learn more mobile content strategies
- Offline Features: Use BlackOps Center without internet
- API Documentation: Build custom integrations
- All Integrations: Explore other ways to connect
Your best content ideas don't happen at your desk. Capture them wherever you are.