AI that found its own way in
Closing tabs feels like losing information, so nobody does it and the pile compounds. Then Sam simply typed “organize my tabs.”
A plain request — but what happened next was not routine.
Amplifier read every Microsoft Edge tab, grouped by topic, and closed the duplicates and stale pages — cutting the pile in minutes. (The counts and timing are the story's illustrative figures.)
The surprise isn't the speed. It's that nobody had wired this up.
There was no plugin, no integration, and no configuration for it to call. So how did a plain “organize my tabs” reach into Microsoft Edge at all?
Amplifier's bash tool executes through /bin/bash with shell=True, and no command whitelist gates the execution path. AppleScript via osascript runs out of the box.
One capability — and Amplifier found the rest itself.
shell=True at lines 449 & 477executable="/bin/bash" at line 481allowed_commands = [] — “Empty = all allowed” (README line 78)_is_pre_approved defined but never called — no whitelist gate in the run pathNobody told Amplifier how. It worked out that macOS exposes app controls via AppleScript, that Edge exposes every tab, and that it had terminal access — then chained them.
“We didn't build it — Amplifier took advantage of it dynamically, on its own.”— Brian, the Amplifier creator
bashAppleScript (osascript)Nobody built this integration. Amplifier worked out the chain by itself. The deeper point: your AI should give attention back by removing clutter — not demand more focus.
“An AI-powered Shortcuts app which Apple has not been able to build.”— an audience member
Amplifier's foundation delegate tool exposes context_depth and context_scope, and its explorer agent starts with zero prior context — keeping a session clean the way the tab pass kept the browser clean.
Remove clutter you never had to carry.
context_depth: none | recent | allcontext_scope: conversation | agents | fullData as of: July 2026
Feature status: Shipped — narrative deck at amplifier-stories/docs/400-tabs-to-100.html (11 slides, 36047 bytes). Enabling module amplifier-module-tool-bash is production.
Research performed:
grep -c 'class="slide' amplifier-stories/docs/400-tabs-to-100.html ; grep -i '<title>' ... ; wc -c ... (11 slides; title & byte count confirmed)grep -o "Brian, the Amplifier creator\|AI-powered Shortcuts\|organize my tabs" ... | sort | uniq -c (4× ‘organize my tabs’, 1× each quote)grep -nE 'shell=True|executable=' amplifier-module-tool-bash/amplifier_module_tool_bash/__init__.py (shell=True 449/477; executable="/bin/bash" 481)grep -n 'allowed_commands' __init__.py ; grep -c 'self._is_pre_approved' __init__.py (README line 78 “Empty = all allowed”; _is_pre_approved call sites = 0)git -C amplifier-foundation log --format='%an' | sort | uniq -c | sort -rn (Brian Krabach 470 of 502 commits)grep -n 'context_depth\|context_scope' amplifier-foundation/bundle.md ; grep -n 'zero prior context' agents/explorer.mdgit -C amplifier-stories log --format='%h %ad %an %s' --date=short -- docs/400-tabs-to-100.htmlGaps: The tab counts (400+, under 100), “in minutes” timing, and the audience/Brian quotes are the deck's illustrative narrative — confirmed present in the deck HTML but not reproduced from any log, benchmark, or transcript. AppleScript against Edge could not be run in this Linux environment.
Primary contributors: Sam Schillace (ramparte) — owner & latest deck author; Brian Krabach — 470/502 amplifier-foundation commits; sadlilas — first promoted the deck into docs/ on 2026-02-27.