Skip to content

v0.1.2 - npm Package Fix

Latest

Choose a tag to compare

@ceilf6 ceilf6 released this 14 Jan 13:43
· 2 commits to main since this release

🐛 Bug Fixes

This release fixes the npm installation issues from v0.1.0 and v0.1.1.

What's Fixed

  • ✅ Bundled all dependencies into a single executable using esbuild
  • ✅ Reduced package size from 709KB to 6MB (bundled)
  • ✅ Fixed module resolution errors when installing from npm
  • ✅ Simplified installation - now only requires playwright as external dependency

📦 Installation

# Install globally
npm install -g frontagent

# Or using pnpm
pnpm add -g frontagent

# Or using npx (no installation needed)
npx frontagent --help

🚀 Quick Start

# 1. Configure your LLM provider
export PROVIDER="openai"
export API_KEY="sk-..."
export MODEL="gpt-4"

# 2. Navigate to your project and initialize
cd your-project
frontagent init

# 3. Run tasks
frontagent run "Create a user login page"

📋 Package Info

📝 Changes Since v0.1.0

  • Added esbuild bundling for CLI
  • Removed workspace dependency issues
  • Updated installation documentation
  • Added npm badges to README

Full Changelog: v0.1.0...v0.1.2