Package Details: iflow-cli 0.5.18-1

Git Clone URL: https://aur.archlinux.org/iflow-cli.git (read-only, click to copy)
Package Base: iflow-cli
Description: iFlow AI Assistant CLI tool (@iflow-ai/iflow-cli)
Upstream URL: https://github.com/iflow-ai
Licenses: unknown
Conflicts: iflow
Provides: iflow
Submitter: wimpy
Maintainer: jasongodev
Last Packager: catHeadCoffee
Votes: 0
Popularity: 0.000000
First Submitted: 2026-02-02 03:08 (UTC)
Last Updated: 2026-03-20 02:35 (UTC)

Latest Comments

jasongodev commented on 2026-03-23 22:18 (UTC)

Good day, as you may have noticed I am the new maintainer of this package. I will review and refactor the PKGBUILD in the coming days.

wimpy commented on 2026-03-02 02:03 (UTC)

@yangtsesu 我 disown 了, 现在我基本没用这个了. 定时任务在做更新. 你们可以重新上传了

yangtsesu commented on 2026-02-28 12:40 (UTC)

iflow zsh: 权限不够: iflow

有点无语,建议你drop了,让别人上传吧

wszqkzqk commented on 2026-02-06 09:45 (UTC) (edited on 2026-02-06 09:50 (UTC) by wszqkzqk)

Could you try this more well-structured PKGBUILD?

pkgname=iflow-cli
pkgver=0.5.8
pkgrel=1
pkgdesc="A comprehensive command-line intelligence that embeds in your terminal, analyzes your repositories, does coding tasks, interprets your needs across contexts, and boosts efficiency by performing tasks from simple file operations to complex workflow automation."
arch=(x86_64 aarch64 loong64 riscv64)
url="https://github.com/iflow-ai/iflow-cli"
license=('unknown')
depends=(
  gcc-libs
  glibc
  nodejs
  ripgrep
)
makedepends=(npm)
source=("https://registry.npmjs.org/@iflow-ai/$pkgname/-/$pkgname-$pkgver.tgz")
noextract=("$pkgname-$pkgver.tgz")
sha512sums=('7d95d6a71f16d4bdd9dac3df5e0c06de97205e81ceb7795ce851a2f2216464728b7323ea6915cab422031d5dd61305abba65974519f4091a0811effe111cd8b0')

package() {
  npm install --global --omit=dev \
    --cache "$srcdir/npm-cache" \
    --prefix "$pkgdir/usr" \
    $pkgname-$pkgver.tgz

  # Use system's ripgrep
  rm -rf ${pkgdir}/usr/lib/node_modules/@iflow-ai/iflow-cli/vendors/ripgrep
  mkdir -p ${pkgdir}/usr/lib/node_modules/@iflow-ai/iflow-cli/vendors/ripgrep/${CARCH}-linux
  ln -s /usr/bin/rg ${pkgdir}/usr/lib/node_modules/@iflow-ai/iflow-cli/vendors/ripgrep/${CARCH}-linux/rg
}