Zum Hauptinhalt springen
tsecurity.de LIVE
Echtzeit-Radar & Feeds
Alle RSS Feeds
👥 Community & Social
YouTube Security VideosTechLinked: MacOS 27 launch ain't looking so good(23.09.2026 um 21:00 Uhr)
YouTube Security VideosNeil Patel: Don't Just Be Right. Be Repeatable. #shorts(23.09.2026 um 20:04 Uhr)
YouTube Security VideosMicrosoft Mechanics: How to Share a Copilot Agent With Your Team(23.09.2026 um 20:30 Uhr)
Sicherheitslücken (CVE)USN-8806-1: NetworkManager vulnerability(23.09.2026 um 15:24 Uhr)
Sicherheitslücken (CVE)USN-8807-1: Open-iSNS vulnerability(23.09.2026 um 19:07 Uhr)
Unix & Linux ServerUSN-8808-1: SQL parse vulnerabilities(23.09.2026 um 20:19 Uhr)
YouTube Security VideosTechLinked: MacOS 27 launch ain't looking so good(23.09.2026 um 21:00 Uhr)
YouTube Security VideosNeil Patel: Don't Just Be Right. Be Repeatable. #shorts(23.09.2026 um 20:04 Uhr)
YouTube Security VideosMicrosoft Mechanics: How to Share a Copilot Agent With Your Team(23.09.2026 um 20:30 Uhr)
Sicherheitslücken (CVE)USN-8806-1: NetworkManager vulnerability(23.09.2026 um 15:24 Uhr)
Sicherheitslücken (CVE)USN-8807-1: Open-iSNS vulnerability(23.09.2026 um 19:07 Uhr)
Unix & Linux ServerUSN-8808-1: SQL parse vulnerabilities(23.09.2026 um 20:19 Uhr)
Intelligence View
⚡ tsecurity.de Intelligence

I built an open-source AI browser that automates web tasks with natural language

What is it? AI Browser (Altas) is an open-source Electron app that lets you control a browser using plain English (or any language). Just describe what you want to do, and the AI figures out how to do it. 🌟 GitHub: ht…

0
↗ Quelle (dev.to)
Reagiere als Erste:r — dein Feedback zählt!




What is it?



AI Browser (Altas) is an open-source Electron app that lets you control a browser using plain English (or any language). Just describe what you want to do, and the AI figures out how to do it.



🌟 GitHub: https://github.com/DeepFundAI/ai-browser

🌐 Try download it: https://www.deepfundai.com/altas





Why I built this



As a developer, I got tired of:




  • Writing Puppeteer scripts for simple web scraping tasks

  • Manually checking websites for updates

  • Repeating the same browser workflows every day



I wanted something simpler: tell the AI what to do, and let it handle the details.



Current status: I'm actively job hunting and would love feedback from the community. If this project resonates with you, a ⭐️ on GitHub would mean a lot for my portfolio!





What it does





1. Natural Language Task Execution



Type something like:




  • "Collect the top 10 posts from Hacker News"

  • "Search for 'AI news' and summarize the results"

  • "Monitor this GitHub repo and notify me when stars increase"



The AI plans the steps and executes them automatically.







2. Visual Task Execution



Left side shows the AI's thought process and tool calls. Right side shows the live browser preview.





You can see exactly what the AI is doing at each step.





3. Scheduled Tasks



Set up recurring tasks to run at specific intervals.





Examples:




  • Scrape news every morning at 9 AM

  • Check crypto prices every hour

  • Monitor competitor websites daily





4. Task History



All executed tasks are saved with full logs and playback capability.







Tech Stack





  • Frontend: Next.js 15 + React 19 + Ant Design + Tailwind CSS


  • Desktop: Electron 33


  • AI Engine: @jarvis-agent (based on Eko framework)


  • State: Zustand


  • Storage: IndexedDB


  • Build: Vite + TypeScript





Architecture





┌─────────────────────────────────────────┐
│ Next.js UI Layer │
│ ┌──────┐ ┌──────┐ ┌──────┐ │
│ │ Home │ │ Main │ │History│ │
│ └──────┘ └──────┘ └──────┘ │
└────────────────┬────────────────────────┘
│ IPC
┌────────────────▼────────────────────────┐
│ Electron Main Process │
│ ┌────────────────────────────────┐ │
│ │ AI Agent (Eko Framework) │ │
│ │ ┌────────┐ ┌────────┐ │ │
│ │ │Planner │───▶│Executor│ │ │
│ │ └────────┘ └────────┘ │ │
│ └────────────────────────────────┘ │
│ ┌────────────────────────────────┐ │
│ │ Browser Automation Tools │ │
│ │ - Navigate - Click - Extract │ │
│ └────────────────────────────────┘ │
└─────────────────────────────────────────┘







Supported AI Models





  • DeepSeek: deepseek-chat, deepseek-reasoner


  • Qwen: qwen-max, qwen-plus, qwen-vl-max


  • Google Gemini: gemini-1.5-flash, gemini-2.0-flash, gemini-1.5-pro


  • Anthropic Claude: claude-3.7-sonnet, claude-3.5-sonnet, claude-3-opus


  • OpenRouter: Aggregates multiple providers





Getting Started





Installation





# Clone the repo
git clone https://github.com/DeepFundAI/ai-browser.git
cd ai-browser

# Install dependencies
pnpm install

# Configure API keys
cp .env.template .env.local
# Edit .env.local with your API key (at least one provider)

# Build Electron dependencies
pnpm run build:deps

# Start development server
pnpm run next

# Start Electron app (in another terminal)
pnpm run electron







Building for Distribution





pnpm run build





Outputs:




  • macOS: .dmg installer

  • Windows: .exe installer





Use Cases





1. Web Scraping



Task: "Scrape the top 20 GitHub trending repositories today"



AI executes:




  1. Navigate to GitHub trending page

  2. Extract repo names, stars, descriptions

  3. Save as JSON file





2. Monitoring



Scheduled task: "Check my website uptime every 30 minutes"



AI does:




  • Visit the website

  • Verify it loads successfully

  • Log the result

  • Alert if it fails





3. Data Collection



Task: "Visit these 10 URLs and extract all article titles"



AI handles:




  • Loop through each URL

  • Find article title elements

  • Compile results

  • Save to file





4. Automated Testing



Task: "Test the login flow on my staging site"



AI workflow:




  1. Open login page

  2. Enter test credentials

  3. Click login button

  4. Verify redirect to dashboard

  5. Report success/failure





Key Features





MCP Protocol Integration



Uses Model Context Protocol for standardized AI-tool communication:




const tool = {
name: "browser_navigate",
description: "Navigate to a URL",
parameters: {
url: { type: "string", description: "Target URL" }
}
}









Streaming Responses



Real-time updates via Server-Sent Events:




// API route returns SSE stream
const stream = new ReadableStream({
async start(controller) {
for await (const chunk of aiResponse) {
controller.enqueue(encoder.encode(chunk))
}
}
})









Task Persistence



All tasks saved to IndexedDB with full-text search:




await taskStorage.save(task)
const results = await taskStorage.search("github")









Roadmap






Short-term (Next 1-2 months)




  • [ ] Agent Configuration: Customize agent prompts and MCP tools settings

  • [ ] Human Intervention: Allow manual control during sessions (e.g., handling login prompts)

  • [ ] Voice Input: Support voice commands for task input

  • [ ] More Agent Types: Add ShellAgent and other specialized agents






Long-term Vision




  • [ ] Plugin system for custom tools

  • [ ] Cloud sync for task history

  • [ ] Team collaboration features

  • [ ] Mobile app (iOS/Android)

  • [ ] Browser extension version

  • [ ] More AI model integrations






Credits



Special thanks to Eko for the powerful agent framework.






License



MIT License - free to use, modify, and commercialize









Why I'm Sharing This



If you find this project useful:








- 💬 Share feedback: I'm actively improving this and would love to hear your thoughts



Author: lsustc

Tech Stack: Next.js 15 + Electron 33 + TypeScript + AI Agents

GitHub: https://github.com/DeepFundAI/ai-browser

Website: https://www.deepfundai.com/altas



Thanks for reading! Questions, feedback, and constructive criticism are all welcome in the comments. 🙏

CTI Threat Relationship Graph2 Knoten / 1 Relationen
CVE / Incident Software MITRE ATT&CK CWE Weakness IoC
Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten I built an open-source AI browser that automates web tasks with natural language

Thematisch verwandte Begriffe: built, opensource, browser, that · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-90904 | Joomla Extension - joomshaper.com - Broken Access Control (ACL Bypass) i…
Advisory →
TTS Reader • tsecurity.de Voice
tsecurity.de Icon
tsecurity.de App
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag
Themen-Radar & Intelligence Matrix
Echtzeit-Taxonomie nach Angriffsvektoren & Plattformen

tsecurity.de Live Threat Radar

🔴 LIVE RADAR
MONITORING
AKTIV
CVE-DATENBANK
LIVE
🔍
Community Radar & Live Chat
Sentinel Bot online • Live-Stream
Dein Cluster: Security Explorer
Match:
lädt…
Verbindung zum Community-Stream wird aufgebaut...
Bearbeitungsmodus — Senden überschreibt deine Nachricht
Community-Puls — was gerade passiert
lädt…
Aktivitäten deiner Analysten
lädt…
Neues Thema oder Eilmeldung einreichen

Reiche interessante Links, Zero-Days oder Debatten ein. Die Community entscheidet per Upvote über die Veröffentlichung.

Heiß diskutierte Einreichungen
🔖 Gespeicherte Artikel
📂 Keine gespeicherten Artikel vorhanden.
Zurück Ziehen Vor
Links: vorheriger Artikel Rechts: nächster Artikel unten: schließen
News NIS-2 Frühwarnung Tier-1 Intel TTP ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...

Zurück: vorheriger Vor: nächster
↗ Original-Quelle
Social Reaktionen Deine Reaktion zählt
Einstufung & Relevanz-Poll 0 Stimmen
In sozialen Netzwerken teilen 1-Klick