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

推荐订阅源

D
DataBreaches.Net
MongoDB | Blog
MongoDB | Blog
GbyAI
GbyAI
L
LangChain Blog
B
Blog
博客园 - 三生石上(FineUI控件)
Martin Fowler
Martin Fowler
博客园 - 【当耐特】
Recent Announcements
Recent Announcements
P
Proofpoint News Feed
U
Unit 42
Last Week in AI
Last Week in AI
WordPress大学
WordPress大学
有赞技术团队
有赞技术团队
雷峰网
雷峰网
Microsoft Security Blog
Microsoft Security Blog
T
The Blog of Author Tim Ferriss
爱范儿
爱范儿
小众软件
小众软件
I
InfoQ
G
Google Developers Blog
大猫的无限游戏
大猫的无限游戏
人人都是产品经理
人人都是产品经理
C
Check Point Blog

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
GitHub - narghev/askdiff: Ask your AI questions about its...
narghev · 2026-05-05 · via Hacker News: Show HN

npm version CI License: MIT

Treat your AI as a coworker — ask questions about its changes in the same session that wrote the code.

/askdiff from inside any Claude Code session opens a GitHub-style diff viewer in your browser. Hover a line, click +, type a question. The answer streams back inline — and because each ask resumes the same Claude Code session that wrote the code, the model already remembers the file, the conversation, and why it made the change.

askdiff demo

Quickstart

# 1. One-time skill install
npx -y askdiff install-skill

# 2. From any Claude Code session
/askdiff

That's it. No API key, no global install, no config. The browser opens to a syntax-highlighted diff of your working tree; comments stream back as the model thinks.

Why askdiff?

Developers often prompt AIs to write the code, then, if the diff becomes large enough, open draft GitHub PRs in order to review it better. Then, if there are any questions, take the diff back to the terminal, ask questions about it, and repeat.

Askdiff simplifies this process by combining the diff viewer and the Q&A interface into one seamless experience, directly integrated with the very same Claude Code session that wrote the code. It makes you treat the model truly as a coworker who already knows the entire context and the reasoning behind every single line of the diff.

How it works

Each ask spawns the claude CLI with --resume <your-session-id>. So your question becomes a real turn in the running session's transcript:

  • No diff sent to the model. The resumed session already has the full context that wrote the code; the prompt is just your question.
  • No Anthropic API key needed. askdiff doesn't talk to the API — it shells out to the claude CLI you've already auth'd via subscription or whatever.
  • No process cleanup. The server self-exits after 5 minutes of inactivity — close the browser tab and forget about it.

Features

Inline comments Click the + gutter button to comment on any line. Drag to comment on a range.
Streaming answers Tokens stream in as Claude generates them — same model context that wrote the code.
Threaded discussions Multiple asks per line, each its own thread, all anchored to the diff.

Inline comments

Hover any line in the diff. A + button appears in the gutter. Click it for a single-line question, or click and drag to range over multiple lines. The comment widget renders below the selected lines; type a question and hit Cmd/Ctrl+Enter (or click Send).

Streaming answers

Tokens stream in as the model generates them — usually starting within ~1 second, typing speed-of-thought. Click Stop mid-stream to abort. Markdown is rendered live, including syntax-highlighted code blocks in any of 30+ languages.

Threaded discussions

Each line can have multiple ask/answer pairs. They render as a threaded conversation inline with the diff, so you can ask a follow-up without losing context.

Configuration

All optional. Set as env vars before running npx -y askdiff — or let the skill resolve them automatically.

Variable Default Notes
PORT 7837 Auto-bumps if taken.
ASKDIFF_SESSION_ID (resolved from $PPID) Force a specific Claude Code session UUID.
ASKDIFF_PROJECT_CWD (parent CC manifest, then process.cwd()) Project directory to diff.
ASKDIFF_MODEL (inherits resumed session's model) Override the Claude model for asks.
CLAUDE_CONFIG_DIR ~/.claude Where Claude Code stores sessions/, projects/.

CLI flags also work (askdiff --port 7838 --no-open --session <uuid>). Run askdiff --help for the full list.

Updating

When you next run /askdiff and a newer version is on npm, the skill prints UPDATE_AVAILABLE: pinned=X latest=Y and asks whether to upgrade or proceed. Upgrade is one command:

npx -y askdiff@latest install-skill --force

This rewrites the skill to pin to the new version. The first subsequent /askdiff runs the upgraded CLI.

Skills shipped

install-skill writes one file: ~/.claude/skills/askdiff/SKILL.md. That's the entire surface area in your CC config.

In this repo (for contributors) there are two more:

  • /askdiff-dev — local Vite dev server with HMR + tsx-run WS server. Use when editing packages/ui-browser.
  • /askdiff-stop — kill everything /askdiff and /askdiff-dev started.

Architecture

The npm package (packages/cli) is a single esbuild-bundled Node binary that hosts an HTTP server (serving the prebuilt UI bundle in dist/ui/) and a WebSocket on the same port at /ws. The CLI imports startServer from @askdiff/server, which spawns claude --resume per ask and forwards text_delta events to the client. The browser UI (packages/ui-browser) is React 19 + Vite + Tailwind v4 + zustand, with react-diff-view for rendering and refractor for syntax highlighting.

Development

git clone https://github.com/narghev/askdiff
cd askdiff
pnpm install
pnpm test
pnpm lint
pnpm run build

From a Claude Code session in this repo:

/askdiff-dev                    # Vite + WS server with HMR
/askdiff-stop                   # tear it down

To exercise the production-shaped binary locally:

pnpm run build
node packages/cli/dist/index.js --port 7838

Troubleshooting

"Claude session: (none — set ASKDIFF_SESSION_ID or use --session)" The skill couldn't read the parent CC manifest. You're either running askdiff from outside a Claude Code session (no $PPID.json in ~/.claude/sessions/), or CLAUDE_CONFIG_DIR points somewhere else. Pass --session <uuid> explicitly to override.

"Port 7837 is already in use" Another askdiff is running, or something else grabbed the port. Run /askdiff-stop (in-repo), or pass --port 7838.

Browser opens, UI loads, but never connects The WS upgrade is failing. Check /tmp/askdiff.log — usually it's an old version of the UI cached against a new server (run /askdiff-stop and reload the browser tab) or a hung claude --resume subprocess (check ps aux | grep claude).

/askdiff doesn't appear in Claude Code's skill picker Run npx -y askdiff install-skill to write ~/.claude/skills/askdiff/SKILL.md. If it's there but still missing, restart Claude Code or run /reload-plugins.

License

MIT © narghev