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

推荐订阅源

U
Unit 42
Vercel News
Vercel News
博客园 - 叶小钗
大猫的无限游戏
大猫的无限游戏
MyScale Blog
MyScale Blog
P
Proofpoint News Feed
量子位
Engineering at Meta
Engineering at Meta
B
Blog RSS Feed
博客园 - 【当耐特】
Recent Announcements
Recent Announcements
Google DeepMind News
Google DeepMind News
D
DataBreaches.Net
Stack Overflow Blog
Stack Overflow Blog
博客园 - 聂微东
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
人人都是产品经理
人人都是产品经理
IT之家
IT之家
T
The Blog of Author Tim Ferriss
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Jina AI
Jina AI
博客园 - 三生石上(FineUI控件)

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 GitHub - GenAI-Gurus/awesome-eu-ai-act: Curated tools, official sources, OSS, templates, and guides for EU AI Act compliance. 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
GitHub - Titovilal/context0: Context0 - Never Surrender
2026-04-11 · via Hacker News - Newest: "AI"
   ██████╗ ██████╗ ███╗   ██╗████████╗███████╗██╗  ██╗████████╗ ██████╗
  ██╔════╝██╔═══██╗████╗  ██║╚══██╔══╝██╔════╝╚██╗██╔╝╚══██╔══╝██╔═████╗
  ██║     ██║   ██║██╔██╗ ██║   ██║   █████╗   ╚███╔╝    ██║   ██║██╔██║
  ██║     ██║   ██║██║╚██╗██║   ██║   ██╔══╝   ██╔██╗    ██║   ████╔╝██║
  ╚██████╗╚██████╔╝██║ ╚████║   ██║   ███████╗██╔╝ ██╗   ██║   ╚██████╔╝
   ╚═════╝ ╚═════╝ ╚═╝  ╚═══╝  ╚═╝   ╚══════╝╚═╝  ╚═╝   ╚═╝    ╚═════╝

AI agents code better when they understand your project first.

Context0 creates a .ctx/docs/ folder with plain text files that describe your codebase. No background processes, no magic — just a self-maintained directory of docs that agents read before they write.

Every doc is surgical: short, dense, and optimized for any model intelligence level. As if you were going to the moon and only had 16KB of space to explain your entire project.

Works with any AI coding CLI: Claude Code, Codex, Copilot, Gemini CLI, OpenCode.

Installation

Linux / macOS

curl -sL https://raw.githubusercontent.com/Titovilal/context0/main/install.sh | sh

Windows (PowerShell)

irm https://raw.githubusercontent.com/Titovilal/context0/main/install.ps1 | iex

Quick start

cd your-project
ctx init                  # scaffold .ctx/, pick your CLIs
ctx sync-docs             # generate documentation

How agents read the docs

CLAUDE.md / GEMINI.md          "read AGENTS.md"
        │
        ▼
    AGENTS.md                  "read project_overview.md first"
        │
        ▼
  project_overview.md          high-level summary + list of docs
        │
        ▼
  [feature_doc].md             context for a specific area
        │
        ▼
    source files               the agent starts coding with context

Fully customizable

Everything Context0 generates is meant to be changed. Edit the templates to control what gets documented, rewrite AGENTS.md to change how agents behave, tweak the guides to match your workflow. The defaults ship with patterns refined over years of daily AI-assisted coding — from the first day GPT-3.5 launched through the agentic era — but they're a starting point, not a constraint.

Commands

Command Description
ctx init Scaffold .ctx/ and copy instruction files to project root
ctx sync-docs Generate/update .ctx/docs/ (2-phase parallel pipeline)
ctx update Self-update to the latest version
ctx version Print current version

Run ctx <command> --help for all available flags.

Project structure

your-project/
├── AGENTS.md              — agent behavior rules (read-before-code)
├── CLAUDE.md              — Claude instructions (if selected)
├── GEMINI.md              — Gemini instructions (if selected)
└── .ctx/
    ├── config.json        — settings
    ├── guides/            — concept docs
    ├── templates/         — doc structure templates (editable)
    └── docs/              — generated documentation

Supported CLIs

CLI Instruction file Status
Claude Code CLAUDE.md + AGENTS.md Tested
Codex AGENTS.md Tested
Copilot AGENTS.md Tested
Gemini CLI GEMINI.md + AGENTS.md Untested
OpenCode AGENTS.md Tested