AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Safari Tabs

skill-jacobrask-claude-skills-safari-tabs · by jacobrask

Interact with Safari browser tabs, reading list, bookmarks, and history via AppleScript. Use when the user asks to analyze, organize, summarize, deduplicate, close, export, or manage their Safari tabs. Also handles reading list, bookmarks, and history searches. Triggers include "my tabs", "open tabs", "Safari tabs", "clean up my browser", "what tabs do I have open", "organize my tabs", "too many…

No reviews yet
0 installs
14 views
0.0% view→install

Install

$ agentstack add skill-jacobrask-claude-skills-safari-tabs

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-jacobrask-claude-skills-safari-tabs)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
7mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Safari Tabs? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Safari Tabs

Safari browser management via AppleScript.

Key Scripts

| Script | Purpose | |--------|---------| | get_tabs.sh | Get tabs with optional window filtering (TSV/markdown/JSON) | | close_by_pattern.sh | RECOMMENDED: Close tabs matching URL pattern | | close_tabs.sh | Close by window,tab index (advanced) | | find_duplicates.sh | Find/close duplicate tabs | | domain_stats.sh | Analyze tabs by domain | | export_tabs_*.sh | Export as JSON/CSV/markdown/HTML | | get_reading_list.sh | Export Reading List | | get_bookmarks.sh | Export bookmarks | | search_history.sh | Search history | | open_urls.sh | Open URLs from file/stdin |

Getting Tabs

get_tabs.sh                    # All tabs as TSV
get_tabs.sh markdown           # All tabs as markdown
get_tabs.sh -w 1 markdown      # Window 1 only
get_tabs.sh -m "term" markdown # Window containing "term"

Closing Tabs

Always use close_by_pattern.sh (finds tabs by URL regardless of position):

close_by_pattern.sh "unique-url-substring"

# Examples
close_by_pattern.sh "adrianroselli.com"
close_by_pattern.sh "/article/css-has-guide"

Closes ALL matching tabs across all windows. Use unique substring.

Alternative: close by position (error-prone, avoid unless necessary):

close_tabs.sh "1,5" "2,3"  # Window,tab pairs (1-indexed)

Analysis Workflow

  1. Fetch: get_tabs.sh markdown
  2. Analyze: group by domain, identify duplicates/clusters, flag stale content
  3. Report: stats, categorized list, suggestions
  4. Act: close with close_by_pattern.sh "url-substring"

Process-and-close pattern:

  1. Fetch tab
  2. Process it
  3. Close: close_by_pattern.sh "unique-url-part"
  4. Next tab

Export Formats

export_tabs_markdown.sh [list|table|checklist|grouped]
export_tabs_json.sh
export_tabs_csv.sh
export_tabs_html.sh > bookmarks.html  # Importable format

Other Features

Duplicates: find_duplicates.sh [--close] Domain stats: domain_stats.sh Reading list: get_reading_list.sh [tsv|markdown|json] Bookmarks: get_bookmarks.sh [tree|flat|json] History: search_history.sh [term] [--days N] Open URLs: open_urls.sh urls.txt or pipe stdin

Privacy: Tab data stays local. Page content not accessed unless explicitly requested.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.