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

推荐订阅源

月光博客
月光博客
Martin Fowler
Martin Fowler
Last Week in AI
Last Week in AI
罗磊的独立博客
阮一峰的网络日志
阮一峰的网络日志
博客园 - 【当耐特】
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 三生石上(FineUI控件)
S
SegmentFault 最新的问题
V
Visual Studio Blog
Hugging Face - Blog
Hugging Face - Blog
雷峰网
雷峰网
博客园_首页
人人都是产品经理
人人都是产品经理
量子位
美团技术团队
The Cloudflare Blog
小众软件
小众软件
WordPress大学
WordPress大学
有赞技术团队
有赞技术团队
M
MIT News - Artificial intelligence
Microsoft Security Blog
Microsoft Security Blog
D
DataBreaches.Net
博客园 - Franky

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 GitHub - GenAI-Gurus/awesome-eu-ai-act: Curated tools, official sources, OSS, templates, and guides for EU AI Act compliance. 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
GitHub - inevolin/resume-cli: Hit Claude usage limits? Re...
2026-04-10 · via Hacker News - Newest: "AI"

Interactive TUI for picking up where you left off across AI coding tools. Lists your recent sessions from Claude Code, Codex, and Copilot in one place — select one, choose a tool, and continue.

▶ Claude Code    Apr 07 14:32  2h ago    refactor the auth middleware
  Copilot        Apr 07 11:05  5h ago    add pagination to the API
  Codex          Apr 06 09:14  1d ago    fix the flaky test in parser

Continue in: ◀ Claude Code ▶   ↑↓ navigate · tab: switch tool · ↵ launch · q quit

Quick start

Quickest way: Ask your AI agent to install this tool for you ;)

Add the resume shell function to your shell profile — then just type resume from anywhere.

bash — add to ~/.bashrc:

resume() {
  local cmd
  cmd=$(FORCE_COLOR=3 npx -y ai-resume-cli@latest)
  [ $? -eq 0 ] && [ -n "$cmd" ] && eval "$cmd"
}

zsh — add to ~/.zshrc:

resume() {
  local cmd
  cmd=$(FORCE_COLOR=3 npx -y ai-resume-cli@latest)
  [ $? -eq 0 ] && [ -n "$cmd" ] && eval "$cmd"
}

fish — add to ~/.config/fish/config.fish:

function resume
    set cmd (FORCE_COLOR=3 npx -y ai-resume-cli@latest)
    if test $status -eq 0; and test -n "$cmd"
        eval $cmd
    end
end

PowerShell (Windows) — add to your $PROFILE:

function resume {
    $env:FORCE_COLOR = '3'
    $cmd = npx -y ai-resume-cli@latest
    $env:FORCE_COLOR = ''
    if ($LASTEXITCODE -eq 0 -and $cmd) { Invoke-Expression $cmd }
}

Reload your shell (or open a new terminal), then:

How to update

The @latest tag in the function means npx always fetches the newest version. No action needed.

If you want a specific version, replace @latest with e.g. @1.1.0.

Controls

Key Action
↑ / ↓ Navigate sessions
Tab Cycle target tool
Enter Launch selected session
q / Esc Quit

Only tools installed on your machine appear in the tool cycle.

How it works

Sessions are read directly from each tool's local storage:

Tool Session directory
Claude Code ~/.claude/projects/
Codex ~/.codex/sessions/
Copilot ~/.copilot/session-state/

Same-tool resume uses the tool's native --resume <uuid> flag — no data is copied or converted.

Cross-tool resume starts the target tool with an initial message pointing to the original session file. The AI reads it and continues from where you left off, with full conversation history as context.

The CLI prints the resulting command to stdout and exits. The shell function captures it and runs it in your current shell — this is why terminal ownership is always clean, on every platform.

Requirements

Local development

git clone https://github.com/inevolin/resume-cli
cd resume-cli
npm install
npm run build
node dist/cli.js

To use it globally from the local clone:

npm link
resume        # works in any directory
npm unlink -g ai-resume-cli  # remove when done

Run tests:

npm test
npm run test:integration

Contributing

Bug reports and pull requests welcome at inevolin/resume-cli.

License

MIT