Package Details: kiro-ide 1:0.12.184-1

Git Clone URL: https://aur.archlinux.org/kiro-ide.git (read-only, click to copy)
Package Base: kiro-ide
Description: An agentic AI IDE with spec-driven development from prototype to production
Upstream URL: https://kiro.dev/
Keywords: agentic ai ai-coding ai-ide claude coding mcp vibe-coding
Licenses: LicenseRef-Kiro
Conflicts: kiro
Submitter: AlphaLynx
Maintainer: AlphaLynx
Last Packager: AlphaLynx
Votes: 13
Popularity: 2.22
First Submitted: 2025-11-30 06:58 (UTC)
Last Updated: 2026-05-12 21:11 (UTC)

Pinned Comments

Latest Comments

« First ‹ Previous 1 2

lisniper commented on 2025-07-24 13:49 (UTC) (edited on 2025-07-24 14:04 (UTC) by lisniper)

kiro-bin 0.1.23-1

1. xdg-settings get default-web-browser google-chrome.desktop

  1. OS: EndeavourOS rolling rolling Kernel: x86_64 Linux 6.15.7-arch1-1 WM: i3

3: if click aws customer agreement. sevice term, privacy notice. the 3 hypeyclick . all ok .they all can open the deault web browser..

4: if click login with googleaccount. it cant open web browser.. nothing response!

https://news.ycombinator.com/item?id=44579779.

others also meet the same problem!

AlphaLynx commented on 2025-07-21 04:18 (UTC)

Package has been updated to the latest version (0.1.19 or 202507200627 tarball). @lisniper it seems like upstream might have fixed that open default browser bug in a recent update (works for me at least), do you still see it on 0.1.19? If so, can you give more information about it?

alumni commented on 2025-07-20 10:39 (UTC)

202507200627

nsomnia commented on 2025-07-19 11:16 (UTC) (edited on 2025-07-19 11:53 (UTC) by nsomnia)

For latest versison.

Your welcome ;) Just another vscode rip off though for now. Or does the include LLM's have API usage built-in? havnt tested that yet.

#!/usr/bin/env bash

# Brute-force new Kiro releases by checking forward from a known starting timestamp

base_url="https://prod.download.desktop.kiro.dev/releases"
suffix="--distro-linux-x64-tar-gz"
tar_suffix="-distro-linux-x64.tar.gz"
user_agent="Mozilla/5.0 (X11; Linux x86_64)"

# Known valid base version timestamp (from PKGBUILD)
start_ts="202507152342"  # format: YYYYMMDDHHMM

# Output dir
out_dir="./kiro_attempts"
mkdir -p "$out_dir"

# Convert start_ts to epoch
start_epoch=$(date -d "${start_ts:0:8} ${start_ts:8:2}:${start_ts:10:2}" +%s)

# Get current time in epoch
now_epoch=$(date +%s)

# Calculate total number of minutes since start_ts
max_tries=$(( (now_epoch - start_epoch) / 60 ))

if (( max_tries <= 0 )); then
    echo "⛔ ERROR: start_ts is in the future! ($start_ts > now)"
    exit 1
fi

echo "🔍 Attempting $max_tries minute-based guesses from $start_ts to now..."

# Loop forward minute-by-minute
for ((i = 1; i <= max_tries; i++)); do
    guess_epoch=$((start_epoch + i * 60))
    guess_ts=$(date -u -d "@$guess_epoch" +"%Y%m%d%H%M")
    url="$base_url/$guess_ts$suffix/$guess_ts$tar_suffix"
    outfile="$out_dir/$guess_ts$tar_suffix"

    echo -n "Trying $guess_ts ... "
    if curl -fsL --user-agent "$user_agent" -o "$outfile" "$url"; then
        echo "✅ Success"
        echo "$guess_ts" >> "$out_dir/working_versions.txt"
        # Uncomment next line if you want to stop at first success
        # break
    else
        echo "❌"
        rm -f "$outfile"
    fi
done

Trying 202507160552 ... ✅ Success

At time of writing 202507190626-distro-linux-x64.tar.gz

AlphaLynx commented on 2025-07-17 00:48 (UTC) (edited on 2025-09-10 21:36 (UTC) by AlphaLynx)

I’m out of office until this Sunday, July 20. I will look into fixing the opening in default browser bug, and I’ll update to the latest version as soon as I am back!

lisniper commented on 2025-07-16 16:45 (UTC)

0.1.0-can open default browser

0.1.6-can not open default browser