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

推荐订阅源

S
SegmentFault 最新的问题
Jina AI
Jina AI
罗磊的独立博客
V
Visual Studio Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
J
Java Code Geeks
U
Unit 42
Microsoft Azure Blog
Microsoft Azure Blog
B
Blog RSS Feed
爱范儿
爱范儿
酷 壳 – CoolShell
酷 壳 – CoolShell
Last Week in AI
Last Week in AI
T
The Blog of Author Tim Ferriss
腾讯CDC
Hugging Face - Blog
Hugging Face - Blog
T
Tailwind CSS Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
I
InfoQ
月光博客
月光博客
博客园_首页
Vercel News
Vercel News
P
Proofpoint News Feed
GbyAI
GbyAI
Y
Y Combinator Blog

Show HN

Show HN: AI agents for UK GDAD PCF roles and their skills The Two Pillars: Mixer Mode and Meta-Software in the Reorganization of Software Work After AI GitHub - JaiCode08/teleport-env What 1,000+ Harness Experiments Taught Me About Self-Improving Agents Show HN: Liiists, a Markdown-first, iOS and CLI list app SwiperTab – Get this Extension for 🦊 Firefox (en-US) GitHub - kouhxp/fftext: Summarize, explain, fact-check, or translate any text, URL, or file. No GPU. No cloud. One command GitHub - sweetpad-dev/sweetpad: Develop Swift/iOS projects using VSCode GitHub - dogmaticdev/IRON: IRON a.k.a. Intermediate Representation Object Notation is a Interpreter/Database that is used to create Programming Languages. GitHub - sjhalani7/vaen: Package your AI coding harness into a portable .agent file, and share it across repos, teams, & the community without ever having to copy-paste instructions, skills, MCP config, or secrets. Show HN: Gandalf the Grader Show HN: Citadeld – replay any CI failure locally from a single file GitHub - tdortman/cuSBF: High-Performance GPU Super Bloom Filter coral-ai/claude-code-token-xray at main · Coral-Bricks-AI/coral-ai GitHub - ulyssestenn/funes: Funes is a Git-based framework for LLM-managed knowledge work: an AI Librarian ingests raw sources, builds an interlinked Markdown knowledge base, and uses it to produce cited reports, analyses, and other outputs. GitHub - ThatXliner/gah: Git Add Hunk, built for agents to use GitHub - harmont-dev/harmont-cli: Command-line client for the Harmont CI platform GitHub - brooksmcmillin/mcp-authflow: OAuth 2.0 Authorization Server framework for MCP servers GitHub - javaid-codes/audit-supply-chain-agents GitHub - amorey/gochan: A small library of common channel architectures for Go, inspired by Rust GitHub - arifozgun/OpenGem: Free, Open-Source AI API Gateway with Gemini, OpenAI & Anthropic Compatibility in 1 file GitHub - Pranesh950/BioPetals: 🌸 Run BIOxAI models at home, BitTorrent-style. Fine-tuning and inference up to 10x faster than offloading GitHub - cnguyen14/bounty-doctor: Diagnose a GitHub bounty issue before you waste hours: detects honeypot scam repos, AI-bot attempt swarms, and stale contests. Show HN: CoreMCP – MCP Server for On-Prem DBs Show HN: KittyHTML – Render HTML/CSS as an inline image in your terminal GitHub - bingud/filemat: Web-based file manager Show HN: TruthLens – Free multi-signal deepfake image detector GitHub - apexlocal-jz/claude-usage-tray: Windows system-tray app showing your Claude Code rate-limit usage at a glance. Zero deps, ~300 lines of PowerShell. Cross-IDE (works regardless of VS Code, Cursor, plain terminal). Release v0.1.2.1 · kouhxp/yapsnap GitHub - noopolis/moltnet: Self-hostable chat network for AI agents. Pre-built bridges for Claude Code, Codex, and the Claws. Rooms, DMs, history. No Slack bots, no Matrix, no glue code.
GitHub - bleak-ai/gcontext: Context Management System to ...
bsampera · 2026-06-18 · via Show HN

Context Magament System

PyPI License: MIT Python

The main concept is a tree of llms.txt that references either folders or files. The goal is to load in a conversation with an AI agent the right information at every time, and from this, be able to grow the context that the agent has access to and create a something analogous to a "Live Memory" or Live Record of things.

What is the difference from Claude Code Memory system?

The problem is the same, but Gcontext is for users that want to treat the Context as a problem on it's own, while Memory handles everything behind the scenes, Gcontext allows the user to define how Context should be defined and be much more precise in which are the steps that an AI agent does.

How an agent navigates a gcontext workspace: a root llms.txt routes to stripe, firestore and support modules, each with its own llms.txt, notes and keys; the support module expands into per-task runbooks and daily logs

How to use it

1. Install and create the workspace.

curl -LsSf https://gcontext.ai/gcontext/install.sh | sh   # or: uv tool install gcontext-ai
gcontext init

2. Ask your agent to build a module. Open your agent in the workspace and name the integration you want:

Create a supabase integration module and load it.

The agent writes info.md, an llms.txt index, and a module.yaml that declares which secrets it needs by name only (the values never leave .env).

3. Fill in the secrets it asks for. The module tells you which variables to set; put them in .env:

SUPABASE_URL=https://....supabase.co
SUPABASE_SECRET_KEY=...

4. Enrich the module with real data. Now that the access is in place, ask the agent to explore the live service and write down what it finds:

Look in supabase and update the module information with real read requests.

From then on a fresh session can answer questions ("how many rows are in the members table?") by following the index to the module and calling the API with the key from .env.

gcontext demo

Adding more integrations

Repeat step 2 for each new service, and a tree starts to form: a root llms.txt routing to one module per integration, each declaring its own keys. Just ask:

Create a stripe integration module and load it.

The more integrations you add, the more the workspace becomes a single place that coordinates access to all of them, which is exactly when gcontext pays off.

When to use it

This is not for everyone. If you work in a project where the only external dependency is a database, it probably doesn't make sense to set all of this up just for this. But as more external dependencies and integrations you are using, it makes more sense to have a dedicated central place where to coordinate the access to all of these.

Case study

This project has been developed at the startup MAAT, Management Software for Martial Arts Gyms, where the product is built on top of a payment System and a DB. As we got more gyms we had to spend more and more time resolving support tasks where all of these integrations were affected. We came up with the pattern that gcontext follows with the llms.txt to speed up our day to day.

Our Journey solving Support Tasks

  1. Before AI. We had some playbooks on how to resolve the Support Tasks and we used them to solve the tasks manually
  2. With AI - Mainly CLAUDE.md. We explained in the Claude.md how our system works and which were the most common causes of problems, it gave us most of the times the right indications, but often we still had to do manual work and exploration for many tasks, still repetitive as we didn't had a place to store the runbooks.
  3. With AI + GContext This allowed us to intertwine completely the AI in our processes. When we do now an exploration for a task, we can save this exploration in a md file, referenced by an llms.txt and the AI model will be able to find it later.

You can browse an example of it here: case-studies/maat-support/. It is the tree from the diagram above: a root llms.txt router over the stripe and firestore integration modules, plus a support module with its runbooks and execution logs.

Commands

Run these with the CLI:

Command What it does
gcontext init Create a new workspace
gcontext load <name> [...] Activate modules in the workspace
gcontext unload <name> Deactivate a module
gcontext env Check required secrets are set
gcontext validate [name] Verify module structure

The rest the agent does for you from plain language, just ask:

Just ask the agent Equivalent CLI
"Create a supabase integration module" gcontext new <kind> <name> [summary]
"Which modules do we have?" gcontext ls

Built by Bleak AI | gcontext.ai