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

推荐订阅源

GbyAI
GbyAI
WordPress大学
WordPress大学
D
DataBreaches.Net
腾讯CDC
小众软件
小众软件
B
Blog RSS Feed
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
T
The Blog of Author Tim Ferriss
MongoDB | Blog
MongoDB | Blog
U
Unit 42
Y
Y Combinator Blog
V
V2EX
I
InfoQ
D
Docker
量子位
N
Netflix TechBlog - Medium
Recent Announcements
Recent Announcements
A
About on SuperTechFans
博客园 - 叶小钗
大猫的无限游戏
大猫的无限游戏
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
B
Blog
阮一峰的网络日志
阮一峰的网络日志
MyScale Blog
MyScale 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
git-issues — Issues that move with your code
steviee · 2026-06-23 · via Hacker News - Newest: "AI"

A git-native issue tracker

Never out of sync. No database, no server, no accounts — just Markdown files in your repo, version-controlled alongside your code.

go install github.com/steviee/git-issues@latest

0003-auth-refactor.md

status: in-progress

priority: critical

0002-session-timeout.md

status: open

priority: high

---

id: 1

title: "Fix login bug"

status: open

priority: critical

labels: [bug, auth]

---

Description and notes go here as free-form Markdown.

Version Control

Always in sync
with your code

Your issues live in .issues/, right next to src/. When you git checkout a branch, your issues come with it. When you git bisect to find a bug, the issue state at that commit is exactly what you see.

Branch-aware

Issues follow branches. A feature branch has its own issues.

Bisect-friendly

git bisect shows the issue state at every commit in history.

History is truth

git log .issues/ shows exactly when and why things changed.

a1b2c3d Fix auth bug

src/auth.go

.issues/0001-fix-login-bug.md

e4f5g6h Add dark mode toggle

src/ui/dark-mode.ts

.issues/0002-add-dark-mode.md

git show a1b2c3d:.issues/0001-fix-login-bug.md

---

id: 1

title: "Fix login bug"

status: closed

closed: 2026-03-04

---

Fixed in src/auth.go. Password validation now rejects empty strings.

.issues/0001-fix-login-bug.md

---

id: 1

title: "Fix login bug"

priority: medium

labels: [bug, auth]

---

Login schlägt bei leeren Passwörtern fehl.

~ vim .issues/0001-fix-login-bug.md — 3s ago

Plain Text

Plans change.
Your issues too.

No rigid forms. No API rate limits. No "can't edit because the server is down." Issues are Markdown. Edit them in Vim, VS Code, or directly in the GitHub UI.

Plain text

YAML + Markdown. Every editor, every agent, every human can read it.

No lock-in

Want to leave? Delete issues, keep the .md files. Done.

Offline first

No network needed. Edit issues on a plane, in a tunnel, anywhere.

Features

Everything you need.
Nothing you don't.

Zero Infrastructure

One Go binary. No Docker, no server, no database. Install, run `issues init`, done.

AI-Native Workflow

`issues next`, `claim`, `done`. `.agent.md` gives agents full context. JSON output for automation.

Bidirectional Relations

`blocks`, `depends-on`, `related-to`, `duplicates`. Both sides sync automatically.

Auto-Staged

Every change is automatically `git add`-ed. Your issue state travels with the commit.

Kanban Board

Interactive TUI with Bubble Tea. `issues board` opens a full Kanban board in your terminal.

Human & Machine

`--format table` for humans, `--format json` for scripts, `--format ids` for pipes.

AI Agents

Built for AI Agents

The issues next → claim → done workflow replaces manual task management for coding agents.

1

issues next

Find the next unblocked, highest-priority issue

2

issues claim <id>

Mark as in-progress

3

Do the work

The agent implements

4

issues done <id>

Close the issue, auto-staged for commit

Commands

Everything you need