frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Tokenized Stocks Are Coming to a Market Near You

https://www.wsj.com/finance/stocks/tokenized-stocks-are-coming-to-a-market-near-you-five-things-t...
1•petethomas•1m ago•0 comments

Show HN: LOAB – AI agents get decisions right but skip the process [pdf]

https://github.com/shubchat/loab/blob/main/assets/loab_paper_mar2026.pdf
1•shubh-chat•2m ago•0 comments

But why do we change the clocks at 2am?

https://www.rd.com/article/why-does-daylight-saving-time-start-at-2-a-m/
1•gbacon•2m ago•0 comments

Hosted MCP server "everything" for testing

https://servereverything.dev/
1•pj3677•4m ago•0 comments

Train Neural Network Using DirectCompute D11

https://pypi.org/project/directcompute-nn/
1•raviadiprakoso•5m ago•1 comments

Reviving the Maintenance of MkDocs

https://github.com/orgs/mkdocs-community/discussions/1
1•netule•5m ago•0 comments

Energy-based Model (EBM) for enterprise AI security Ship it or keep tuning?

1•ALMOIZ_MOHMED•5m ago•0 comments

Personal Software and the Collapse of the Talent Pipeline

https://blog.slamdunk.software/extremely-personal-software-and-the-collapse-of-the-talent-pipeline/
1•Destiner•6m ago•0 comments

The Missing Layer in AI Agent Architecture

https://wundergraph.com/blog/why-mcp-is-ceiling-enterprise-ai-agent-architecture
2•asoorm•6m ago•1 comments

The Post-Copyright Era of Software

https://www.nibzard.com/post-copyright-era-software
1•nkko•6m ago•0 comments

AgentHub

https://github.com/karpathy/agenthub
1•john_cogs•8m ago•0 comments

Microsoft wants you to 'hire' its AI agents

https://www.computerworld.com/article/4141904/microsoft-wants-you-to-hire-its-ai-agents.html
1•CrankyBear•8m ago•0 comments

Concern over US travel visas prompts Ig Nobels to move its awards to Europe

https://apnews.com/article/ig-nobels-award-prize-comical-science-achievement-where-7413f288bb43b5...
4•geephroh•8m ago•0 comments

Autonomous Engineering Pipeline

https://github.com/changkun/wallfacer
1•changkun•10m ago•0 comments

Zuckerberg has "finished" with Alexandr Wang, worth US$14B

https://www.idnfinancials.com/news/61918/zuckerberg-has-finished-with-alexandr-wang-worth-us14-bi...
2•matthieu_bl•11m ago•0 comments

Frailty can be eased with an infusion of stem cells from young people

https://www.newscientist.com/article/2517139-frailty-can-be-eased-with-an-infusion-of-stem-cells-...
1•bookofjoe•11m ago•1 comments

Show HN: React Trace – Development-time visual inspector for React components

https://react-trace.js.org/
1•buzinas•12m ago•0 comments

Add AI to Any App

https://www.simeongriggs.dev/add-ai-to-any-app
1•bddicken•13m ago•0 comments

Open-source intelligence dashboard tracking the Iran conflict in real time

https://github.com/Juliusolsson05/pharos-ai
1•merusame•14m ago•0 comments

Anthropic sues Pentagon over rare "supply chain risk" label

https://www.axios.com/2026/03/09/anthropic-sues-pentagon-supply-chain-risk-label
1•sauronsrv•14m ago•1 comments

Dirplayer: A web-compatible Shockwave Player emulator written in Rust

https://github.com/igorlira/dirplayer-rs
1•homarp•15m ago•1 comments

Show HN: Agents with Verifiable Human Claims

https://docs.zipwire.io/zipwire-attest/getting-a-proofpack-jwt-with-nationality
1•lukepuplett•15m ago•0 comments

The Boring Technology Manifesto

https://yagnipedia.com/wiki/the-boring-technology-manifesto
2•riclib•19m ago•1 comments

Redacting Sensitive Data from Java Flight Recorder Files

https://mostlynerdless.de/blog/2026/02/13/redacting-sensitive-data-from-java-flight-recorder-files/
1•mooreds•26m ago•0 comments

Show HN: Four Claude Code hooks that enforce voice and tone on AI-written copy

https://windyroad.com.au/blog/enforcing-voice-and-tone-with-claude-code-hooks
1•tompahoward•26m ago•0 comments

CIA faces backlash after document with potential cancer cure hidden 60 years

https://www.dailymail.co.uk/sciencetech/article-15629211/cia-cancer-cure-document-declassified.html
2•bookmtn•26m ago•2 comments

Why diff fails for CSV comparison

https://reconlify.com/blog/why-diff-fails-for-csv
1•testuteab•30m ago•0 comments

Drug-controlled CAR T cells through the regulation of cell–cell interactions

https://www.nature.com/articles/s41589-026-02152-x
1•PaulHoule•31m ago•0 comments

Are We Sentient AI?

1•abmmgb•31m ago•7 comments

Building a Strict RFC 8259 JSON Parser: Acceptance Issues and Their Impact On

https://lattice-substrate.github.io/blog/2026/02/26/strict-rfc8259-json-parser/
1•birdculture•31m ago•0 comments
Open in hackernews

Agent Session Kit (ASK) – Git guardrails for AI-assisted coding workflows

https://github.com/qarau/agent-session-kit
1•qarau•2h ago

Comments

qarau•2h ago
Over the past year I started doing most development with AI coding agents. The productivity gains were real, but I also started seeing a different class of problems appear.

The issue wasn’t the code generation itself. It was workflow discipline around the code.

AI-assisted sessions move fast and often run long. Over time we noticed recurring problems like:

- commits landing in the wrong branch

- session context docs drifting out of date

- resuming sessions with stale assumptions

- environment inconsistencies between machines

- forgetting validation steps before pushing

None of these are new problems, but AI makes them happen more frequently because iteration speed is so high.

We didn’t want to introduce another heavy dev platform, so we built a small toolkit that adds lightweight guardrails around normal Git workflows.

That toolkit became Agent Session Kit (ASK).

ASK installs a set of helpers around a repo including:

- Git hook templates - session validation scripts - environment smoke tests - session documentation helpers - workflow checks before commit/push

The goal is simple:

Turn workflow discipline into default behavior rather than relying on developer memory.

If something is off (wrong branch, missing session updates, failing checks), the workflow catches it before the change lands in the repo.

We originally built ASK as internal tooling while experimenting with AI-assisted development workflows and decided to open-source it so other teams don’t have to rebuild the same guardrails.

The project is intentionally simple:

- no servers - no dashboards - just scripts and Git integration

If you’re experimenting with AI coding agents or long interactive dev sessions, this might be useful.

Feedback and suggestions welcome.

qarau•2h ago
Hi HN,

We built Agent Session Kit (ASK) while experimenting with AI-assisted development workflows.

One thing we noticed is that AI coding sessions tend to be fast and bursty, which increases the chances of workflow drift.

Examples we ran into repeatedly:

• commits landing in the wrong branch • session context docs drifting out of date • resuming sessions with stale assumptions • inconsistent environments between machines

ASK adds lightweight guardrails around normal Git workflows using hooks, validation scripts, and smoke tests.

The goal is to make good workflow habits automatic rather than relying on memory.

Curious to hear how others are managing workflow discipline when coding with AI agents.