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

推荐订阅源

Blog — PlanetScale
Blog — PlanetScale
Vercel News
Vercel News
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
量子位
Y
Y Combinator Blog
IT之家
IT之家
博客园 - 聂微东
L
LangChain Blog
爱范儿
爱范儿
H
Help Net Security
GbyAI
GbyAI
F
Fortinet All Blogs
B
Blog
Microsoft Security Blog
Microsoft Security Blog
罗磊的独立博客
C
Check Point Blog
博客园 - 三生石上(FineUI控件)
小众软件
小众软件
D
DataBreaches.Net
Last Week in AI
Last Week in AI
WordPress大学
WordPress大学
B
Blog RSS Feed
酷 壳 – CoolShell
酷 壳 – CoolShell
宝玉的分享
宝玉的分享

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 - plus8bit/agent-postmortem-skill
plus8bit · 2026-05-11 · via Hacker News - Newest: "AI"

Stop letting AI agents lie to you.

agent-postmortem-skill is an open-source verification skill that forces coding agents to prove work with evidence before they claim a task is complete.

Why This Exists

AI coding agents often report "done" while one or more of these are still true:

  • Files were not actually changed as requested.
  • Tests/build were never run.
  • Commands failed but the agent still moved on.
  • The final summary sounds confident but has no proof.

This skill turns "trust me" into "show me."

Value Proposition

  • Catches fake-done states before they hit your branch.
  • Standardizes completion quality across humans and agents.
  • Produces a portable postmortem artifact you can review, share, and audit.
  • Works with any coding agent that can run shell commands and read git state.

How It Works (Under the Hood)

The skill enforces a strict completion pipeline:

  1. Intent Snapshot
    Capture the exact requested outcome and success criteria.

  2. Evidence Collection
    Collect hard signals: git status, git diff, command outputs, and exit codes.

  3. Verification Check
    Compare claimed work vs actual evidence. If evidence is missing or failing, the task is not complete.

  4. Postmortem Output
    Write a final report with verdict, proof, unresolved risks, and next actions.

Quickstart

git clone https://github.com/plus8bit/agent-postmortem-skill.git
cd agent-postmortem-skill

Copy SKILL.md into your agent skill directory (example paths):

mkdir -p ~/.claude/skills/agent-postmortem
cp SKILL.md ~/.claude/skills/agent-postmortem/SKILL.md

Use it in your coding flow:

# Pseudoflow, depends on your agent runtime:
# 1) Load SKILL.md
# 2) Run your implementation task
# 3) Require postmortem before "done"

Example Output

# Agent Postmortem Report

## Task
Refactor auth middleware and add regression tests for expired token handling.

## Intent Snapshot
- Expected outcome: middleware rejects expired tokens with 401.
- Required checks: npm run build, npm test.

## Evidence Collection
- git status: 3 files modified
- git diff: src/middleware/auth.ts, src/middleware/auth.test.ts, docs/llms.txt
- command: npm run build
  - exit_code: 0
- command: npm test
  - exit_code: 0

## Verification
- Claimed refactor exists in diff: PASS
- Claimed tests added: PASS
- Required commands succeeded: PASS

## Verdict
VERIFIED DONE

## Residual Risks
- No load testing performed.

## Next Actions
- Optional: run e2e auth flow in CI preview environment.

What This Project Is Not

  • Not another coding agent.
  • Not a replacement for CI.
  • Not a generic "quality checklist."

It is a focused lie detector for agent completion claims.

License

MIT