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

推荐订阅源

Martin Fowler
Martin Fowler
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
IT之家
IT之家
美团技术团队
酷 壳 – CoolShell
酷 壳 – CoolShell
Y
Y Combinator Blog
T
Tailwind CSS Blog
D
Docker
博客园 - Franky
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Google DeepMind News
Google DeepMind News
腾讯CDC
Vercel News
Vercel News
Engineering at Meta
Engineering at Meta
U
Unit 42
The Cloudflare Blog
S
SegmentFault 最新的问题
WordPress大学
WordPress大学
爱范儿
爱范儿
Recent Announcements
Recent Announcements
博客园 - 聂微东
博客园 - 叶小钗
H
Help Net Security
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
GitHub - ragnarok268/agent-memory-layer: A persistent mem...
einherjarlab · 2026-06-20 · via Hacker News - Newest: "AI"

Agent Memory Layer is an experimental, documentation-first workflow for making AI-assisted software work easier to review, repair, and continue later.

This repository is designed for AI-assisted engineering workflows. It provides repository-local memory, intent, decision, and evidence artifacts that can be read by both humans and AI coding agents such as Codex, Cursor, Claude Code, Gemini, or similar systems.

It is not intended to be a conventional Python library, package, SDK, framework, or end-user application. The included Python scripts are thin repo-local automation helpers for routing checks and writing artifacts.

It is built around three complementary capabilities:

  • intent verification, represented by IA
  • dependency and capability awareness, represented by DS2
  • engineering memory, represented by SCP

This repository is not an industry standard. It is an open-source methodology and research direction that is currently evaluated with local automation and reproducible A/B trials.

Start here

What problem it solves

AI can generate code quickly, but repositories often lose the surrounding engineering memory:

  • what was intended
  • what constraints mattered
  • what capability surface changed
  • why a decision was made
  • what evidence supports shipping the change

When that memory is missing, every future human or AI agent has to rediscover it.

Who should use it

This project is most relevant to:

  • AI-assisted developers who rely heavily on coding agents
  • solo founders
  • self-taught developers
  • domain experts building internal tools
  • engineering reviewers
  • teams experimenting with AI coding agents
  • junior and mid-level developers who want clearer intent, review, and context-preservation habits
  • experienced engineers who want durable engineering memory and reproducible handoff

It is usually less useful for throwaway scripts, trivial prototypes, teams with little AI usage, or teams that already have strong durable engineering-memory practices.

How it works

High-level loop:

Idea -> AI generates code -> IA verifies intent -> DS2 maps dependency and capability surfaces -> SCP preserves rationale when it matters -> AI repairs or a human reviews -> ship with evidence

The goal is to make preserved engineering context feel more like quiet infrastructure than manual ceremony.

First 30 minutes

This repo is documentation-first and uses a thin local automation layer.

There is no package install step for the repo itself.

  1. Read this README and WORKFLOW.md.
  2. If you are using Codex, Cursor, Claude Code, Gemini, or a similar agent, read AGENT_BOOTSTRAP.md.
  3. Run the test suite:
  1. Make a small documentation or code change.
  2. Run the guardrail runner on the changed files:
python automation/guardrail_runner.py --changed README.md automation/guardrail_runner.py
  1. Review the generated artifacts under artifacts/knowledge/.

Required local validation for this repository is python -m pytest.

The intended operating model combines intent verification, dependency/capability awareness, and engineering memory. The implementation is modular, so lightweight use can omit or replace individual tools, but the complete methodology assumes these capabilities work together.

External tool installation is optional for repo-local validation:

  • ia enables intent verification.
  • ds2 enables dependency and capability-surface scanning.
  • SCP is represented here by local draft artifacts; the separate SCP project provides the broader decision-preservation reference implementation.

If ia or ds2 are not installed, the runner reports them as skipped rather than failing. That means the repo-local proof of concept can still be tested without installing the full companion toolchain.

What evidence currently exists

Current evidence in this repo is preliminary and local.

Observed in the Codex A/B trials so far:

  • better artifact usage in the workflow-enabled condition
  • better handoff quality
  • better repair-loop behavior

The strongest current summary is EVIDENCE.md. The reproducible experiment harness lives in experiments/ab_adoption.

What limitations remain

Not yet established:

  • broad productivity gains
  • universal quality improvements
  • cross-model generalization
  • enterprise-scale validation

Known threats to validity include small task sets, local-only runs, and mixed timing methodologies across the project history.

The next validation milestone is broader external use: more models, more developers, longer projects, and real-world case studies.

Where to start

Source repositories

License

This project is licensed under the MIT License.

Feedback

Feedback is most useful when it is concrete:

  • which part was unclear
  • which claim feels overstated
  • which artifact was useful or noisy
  • which experiment step was not reproducible
  • which additional validation would change your confidence

If you publish the repository on GitHub, the clearest feedback channel is an issue with a concrete reproduction, criticism, or suggested experiment improvement.

For now, the safest framing is: this repository shows a plausible agent-memory workflow with preliminary local evidence, not a proven standard.