惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

G
Google Developers Blog
人人都是产品经理
人人都是产品经理
爱范儿
爱范儿
云风的 BLOG
云风的 BLOG
Last Week in AI
Last Week in AI
H
Hackread – Cybersecurity News, Data Breaches, AI and More
B
Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
H
Help Net Security
B
Blog RSS Feed
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
N
Netflix TechBlog - Medium
S
SegmentFault 最新的问题
The Cloudflare Blog
I
InfoQ
美团技术团队
博客园 - 三生石上(FineUI控件)
MyScale Blog
MyScale Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 司徒正美
L
LangChain Blog
A
About on SuperTechFans
T
The Blog of Author Tim Ferriss
Y
Y Combinator Blog

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
GitHub - anasmohiuddinsyed-bit/ai-fix: When a command fai...
Anas1371 · 2026-05-24 · via Hacker News - Newest: "AI"

When a command fails, one word fixes it.

$ python app.py
ModuleNotFoundError: No module named 'uvicorn'

$ ai-fix
✗ Failed: No module named 'uvicorn'

Fix (high confidence): uvicorn is not installed in this environment.

  → pip install uvicorn

Apply fix? [Y/n]: y
Running: pip install uvicorn
✓ Done.

Re-running: python app.py
✓ Fixed! Command succeeded.

Install

pip install ai-fix

Set your API key:

export ANTHROPIC_API_KEY=sk-ant-...   # Claude (recommended — fast + cheap)
# or
export OPENAI_API_KEY=sk-...          # OpenAI fallback

Done. That's it.


Usage

# Fix the last command that failed
ai-fix

# Run a command and fix it if it fails
ai-fix python app.py
ai-fix npm run build
ai-fix cargo build
ai-fix docker compose up

# Skip the confirmation prompt
ai-fix -y python app.py

# See what it would do without applying
ai-fix --dry-run python app.py

# Show full error output
ai-fix -v npm run build

How it works

  1. Captures — re-runs your failed command and captures stdout + stderr
  2. Sends — ships the error + system context to Claude (or GPT-4o-mini)
  3. Gets back — structured fix commands with confidence score
  4. Applies — runs the fix, then re-runs your original command to confirm

The AI sees: your command, the full error, your OS, Python/Node versions, and which project files exist (package.json, pyproject.toml, Cargo.toml, etc.). It gives back exactly the commands to run — no prose, no explanations you have to decode.


Examples

Python missing module

$ python server.py
ModuleNotFoundError: No module named 'fastapi'

$ ai-fix
Fix (high confidence): fastapi is not installed.
  → pip install fastapi

npm build failure

$ npm run build
sh: tsc: command not found

$ ai-fix
Fix (high confidence): TypeScript compiler not installed.
  → npm install --save-dev typescript
  → npx tsc

Permission denied

$ ./deploy.sh
bash: permission denied: ./deploy.sh

$ ai-fix
Fix (high confidence): Script is not executable.
  → chmod +x deploy.sh

Port already in use

$ python manage.py runserver
Error: That port is already in use.

$ ai-fix
Fix (medium confidence): Port 8000 is occupied by another process.
  → lsof -ti:8000 | xargs kill -9

Git push rejected

$ git push
 ! [rejected] main -> main (non-fast-forward)

$ ai-fix
Fix (high confidence): Remote has commits not in your local branch.
  → git pull --rebase origin main
  → git push

Docker not running

$ docker ps
Cannot connect to the Docker daemon. Is docker running?

$ ai-fix
Fix (high confidence): Docker daemon is not running.
  → open -a Docker

Why not just Google it?

You already know how to Google. But when you're deep in a build, context-switching to a browser, reading three Stack Overflow answers, and coming back costs minutes and breaks flow.

ai-fix keeps you in the terminal. One word. Done.


Confidence levels

Color Meaning
🟢 high AI is certain — common error, clear fix
🟡 medium Likely fix, but depends on your setup
🔴 low AI is guessing — review before applying

Shell support

Reads last command from:

  • zsh (~/.zsh_history)
  • bash (~/.bash_history)
  • fish (~/.local/share/fish/fish_history)

Cost

ai-fix uses Claude Haiku by default — the fastest and cheapest model. Each fix costs roughly $0.0003 (less than 1/10th of a cent). You'd need to run it 3,000 times to spend $1.


Privacy

  • Only sends: the failed command, its error output (truncated to 3000 chars), your OS, language versions, and a list of project file names (not contents)
  • Never sends file contents, environment variables, API keys, or paths beyond the current directory name

Requirements

  • Python 3.11+
  • ANTHROPIC_API_KEY or OPENAI_API_KEY

License

MIT