Commit Graph

6 Commits

Author SHA1 Message Date
Developers Digest 8bb27a5ce5 Merge pull request #77 from firecrawl/install-sh
add native skill installer and post-install setup flow
2026-03-25 20:24:10 +00:00
Developers Digest 49c5484f12 add native skill installer and post-install setup flow
- new skills-native.ts: replicates `npx skills add` without requiring
  Node.js — clones repo, copies skills to ~/.agents/skills/, creates
  relative symlinks to detected agent dirs (claude, cursor, etc.)
- setup.ts + init.ts: try npx first, fall back to native installer
- install.sh: after binary installs, prompt to continue with
  `firecrawl init --skip-install` for login + skills + integrations
2026-03-25 16:20:59 -04:00
Developers Digest 1328fd39d3 Merge pull request #76 from firecrawl/install-sh
fix unbound variable error in install.sh cleanup trap
2026-03-25 20:04:37 +00:00
Developers Digest 4c73d74c41 fix unbound variable error in install.sh cleanup trap
tmp_dir was declared local inside main(), but the EXIT trap
fires after main() returns when the local is out of scope.
With set -u this causes "unbound variable" on exit.
2026-03-25 16:02:57 -04:00
Developers Digest 76e8552fe6 add nfpm linux packaging and auto-release on version bump
- trigger release on package.json version bump to main (not manual release)
- auto-create git tag + github release with all assets
- add nfpm.yaml for .deb, .rpm, .apk, .pkg.tar.zst generation
- use envsubst to render nfpm config per arch
- fix nfpm download url to use versioned filename
- add optional nfpm packaging to local build script
2026-03-13 14:34:34 -04:00
Developers Digest 55d565812a add multi-channel distribution: binaries, install scripts, homebrew
- build-binaries.sh: cross-compile via bun for darwin/linux/windows (x64+arm64)
- install.sh: curl|bash installer with checksum verification
- install.ps1: powershell installer for windows
- release-binaries.yml: github actions workflow to build + upload on release
- test.yml: cross-platform binary smoke tests on PRs
- homebrew formula: template for firecrawl/homebrew-firecrawl tap
2026-03-13 11:40:53 -04:00