npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@jarvis-agent/extension

v0.1.2

Published

Browser extension support for Jarvis Agent framework.

Readme

License Build Status Version

Eko (pronounced like 'echo') is a production-ready JavaScript framework that enables developers to create reliable agents, from simple commands to complex workflows. It provides a unified interface for running agents in both computer and browser environments.

News

  • 2025-09: Eko 3.0 introduces dependency-aware parallel agent execution.
  • 2025-09: New pause, resume, and interrupt controls with task_snapshot workflow recovery.
  • 2025-09: Monorepo tooling migrated to pnpm for consistent workspace management.

Upgrading to Eko 3.0

Follow these steps when moving an existing Eko 2.x project to 3.0:

  1. Update dependencies with pnpm up @jarvis-agent/core @jarvis-agent/nodejs @jarvis-agent/web @jarvis-agent/extension.
  2. Regenerate saved workflows or exported plans so they use the v3 schema and dependency graph format.
  3. Clean and reinstall using pnpm (rm -rf node_modules && pnpm install), then rebuild any browser or desktop bundles.
  4. Re-run automated demos and update documentation to reflect the new pause/interrupt APIs and parallel agent behavior.

Framework Comparison

| Feature | Eko | Langchain | Browser-use | Dify.ai | Coze | |--------------------------------------|-------|------------|--------------|----------|--------| | Supported Platform | All platform | Server side | Browser | Web | Web | | One sentence to multi-step workflow | ✅ | ❌ | ✅ | ❌ | ❌ | | Intervenability | ✅ | ✅ | ❌ | ❌ | ❌ | | Task Parallel | ✅ | ❌ | ❌ | ❌ | ❌ | | Development Efficiency | High | Low | Middle | Middle | Low | | Task Complexity | High | High | Low | Middle | Middle | Middle | | Open-source | ✅ | ✅ | ✅ | ✅ | ❌ | | Access to private web resources | ✅ | ❌ | ❌ | ❌ | ❌ |

Features

  • [x] Pure JavaScript: Built for browsers and Node.js.🚀
  • [x] Multi-Agent: Unleash power with multiple Agents in one task.📈
  • [x] Agent/Tool Flexibility: Customize new Agents and Tools in just one line.🎉
  • [x] Native MCP: Connects seamlessly with Awesome MCP Servers.🔗
  • [x] Dynamic LLM: Balance speed and performance with flexible model choices.⚙️
  • [x] Human-in-the-loop: Intervene when it matters most.🤝
  • [x] Stream Planning: Dynamic rendering made easy.🎨
  • [x] Loop & Listener Tasks: Automate any repetitive task.🤖
  • [ ] Observable Chain: Coming soon
  • [ ] Native A2A: Coming soon

Quickstart

Note: Please refer to the Eko Quickstart guide guide for full instructions on how to run it.

Security Warning

DO NOT use API Keys in browser/frontend code!

This will expose your credentials and may lead to unauthorized usage.

Best Practices: Configure backend API proxy request through baseURL and request headers.

Please refer to the link: https://eko.fellou.ai/docs/getting-started/configuration#web-environment

const llms: LLMs = {
  default: {
    provider: "anthropic",
    model: "claude-sonnet-4-20250514",
    apiKey: "your-api-key"
  },
  gemini: {
    provider: "google",
    model: "gemini-2.5-pro",
    apiKey: "your-api-key"
  },
  openai: {
    provider: "openai",
    model: "gpt-5",
    apiKey: "your-api-key"
  },
  // OpenAI-compatible models (Qwen, Doubao, etc.)
  qwen: {
    provider: "openai",
    model: "qwen-plus",
    apiKey: "your-qwen-api-key",
    config: {
      baseURL: "https://dashscope-intl.aliyuncs.com/compatible-mode/v1"
    }
  },
  doubao: {
    provider: "openai",  // Use OpenAI provider for compatibility
    model: "doubao-seed-1-6-250615",  // or other Doubao model
    apiKey: "your-volcengine-api-key",
    config: {
      baseURL: "https://ark.cn-beijing.volces.com/api/v3"  // Volcengine endpoint
    }
  }

};

let agents: Agent[] = [new BrowserAgent(), new FileAgent()];
let eko = new Eko({ llms, agents });
let result = await eko.run("Search for the latest news about Musk, summarize and save to the desktop as Musk.md");
$ pnpm install @jarvis-agent/core

Example Projects

The repository ships with three workspace examples under the example/ folder.

Prerequisites

Before running any example, install dependencies and build the core packages from the root directory:

pnpm install
pnpm build

Browser Extension (example/extension)

cd example/extension
pnpm install
pnpm run build

Load the generated dist directory via chrome://extensions → Developer Mode → Load unpacked. Configure your API key in the extension options before running the automation task.

Node.js Automation (example/nodejs)

cd example/nodejs
pnpm install
pnpm run playwright   # first time only, installs browsers
pnpm run build
OPENAI_API_KEY=... ANTHROPIC_API_KEY=... pnpm run start

The Node.js demo drives Playwright through Eko; provide at least one model API key before running it.

Web Login Demo (example/web)

cd example/web
pnpm install
pnpm run start

This starts a React dev server on the default port with a simple login flow that you can automate with the browser or web agents.

Use Cases

  • Browser automation and web scraping
  • System file and process management
  • Workflow automation
  • Data processing and organization
  • GUI automation
  • Multi-step task orchestration

Documentation

Visit our documentation site for:

  • Getting started guide
  • API reference
  • Usage examples
  • Best practices
  • Configuration options

Development Environments

Eko can be used in multiple environments:

  • Browser Extension
  • Web Applications
  • Node.js Applications

Community and Support

Star History Chart

Community Spotlight

  • Career Co-Pilot: https://github.com/wangwangbobo/career_skill_learnig.git
  • Slides Agent by Eko: https://github.com/MICAHFANG/slides-agent-by-eko
  • Universal Sidebar Assistant: https://github.com/San12341/eko-broser-extension.git
  • Orbit X Smart Terminal: https://github.com/Skywang16/OrbitX/tree/main
  • 48 Hour Browser Challenge: https://github.com/MoonIRL/eko

License

Eko is released under the MIT License. See the LICENSE file for details.