惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

人人都是产品经理
人人都是产品经理
博客园_首页
IT之家
IT之家
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Vercel News
Vercel News
美团技术团队
D
Docker
WordPress大学
WordPress大学
T
Tailwind CSS Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
The Cloudflare Blog
Y
Y Combinator Blog
F
Fortinet All Blogs
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
G
Google Developers Blog
爱范儿
爱范儿
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
月光博客
月光博客
MongoDB | Blog
MongoDB | Blog
S
SegmentFault 最新的问题
GbyAI
GbyAI
Hugging Face - Blog
Hugging Face - Blog
Microsoft Azure Blog
Microsoft Azure Blog
A
About on SuperTechFans

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
GitHub - salmanjavaid/rapunzel: Browser for agents.
WasimBhai · 2026-04-22 · via Hacker News - Newest: "AI"

Rapunzel icon

Rapunzel is a browser but for agents.

I built rapunzel because in the MacOS terminal, I had many agents running across tabs but they were difficult to track. I built it because I love the Tree Style Tab Extension in Firefox. I built it because, it is the time for Chrome, but for agents. I made it, to make it as simple as possible and nothing more.

Rapunzel UI

Install

Prerequisites:

  • macOS
  • Python 3
  • Node.js and npm

From a fresh clone:

git clone <repo-url>
cd rapunzel
./install.sh

./install.sh creates a local virtual environment, installs the Python dependencies, installs the frontend dependencies, and builds the embedded web UI.

Launch

For normal use:

./Rapunzel.command

You can also double-click Rapunzel.command in Finder.

For development:

source .venv/bin/activate
python3 app.py

Rapunzel.command prefers the repo-local virtual environment when it exists, so the launch path stays stable after install.

Why It Exists

  • macOS Terminal tabs stop scaling once you have many long-running agent sessions
  • hierarchical navigation is easier to reason about than a flat tab strip
  • the goal is a simple desktop surface for agent work, not a giant IDE

What It Does

  • tree-based shell sessions with root and child branches
  • one active live terminal conversation surface
  • rename, move, collapse, and close branch actions
  • PTY-backed interactive shells
  • workspace persistence to ~/.rapunzel/workspace.json
  • restore of the saved workspace tree on launch

Build macOS App

If you want a clickable app bundle instead of running from source:

source .venv/bin/activate
pip install pyinstaller
bash build_macos_app.sh

Output:

  • dist/Rapunzel.app

After the build finishes, open dist/Rapunzel.app from Finder or double-click it directly.

Notes

  • the primary product path is the embedded pywebview desktop app
  • the older Tk UI still exists as fallback code, but it is no longer the main architecture
  • on Apple Silicon Macs, Rapunzel shell sessions wrap brew so Homebrew commands are forwarded through native arm64

Repo Layout

  • app.py: entrypoint
  • install.sh: first-run setup from source
  • Rapunzel.command: source launcher for normal desktop use
  • rapunzel/: app state, PTY runtime, window host, and fallback UI
  • webui/: embedded frontend assets for the tree and terminal
  • PROJECT_STATUS.md: implementation status and next work
  • ARCHITECTURE_AND_PROGRESS.md: architecture and debugging history
  • FEATURE_TRACKER.md: running feature log