Overview
- Skill Key
- andreagriffiths11/agent-context-system
- Author
- andreagriffiths11
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/andreagriffiths11/agent-context-system
- Latest Commit SHA
- 8cb769c33a17bdf1b5f68b6e4c3586623f04ee37
A persistent local-only memory system for AI coding agents. Two files, one idea — AGENTS.md (committed, shared) + .agents.local.md (gitignored, personal). Agents read both at session start, update the scratchpad at session end, and promote stable patterns over time. Works across Claude Code, Cursor, Copilot, Windsurf. Subagent-ready. No plugins, no infrastructure, no background processes.
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 agent-context-system 技能。 若已安装,则直接安装 agent-context-system 技能。
# Agent Context System ## The Problem Agents start from zero every session. You spend an hour getting your coding agent up to speed on a project, close the session, and start from zero the next day. The agent forgot everything. Every session is a cold start. This isn't a limitation of the model. It's a context delivery problem. The agents have the capacity to remember — they just don't have the right inputs at the right time in the right format. ## The Solution Two markdown files. One committed, one gitignored. The agent reads both at the start of every session and updates the local one at the end. - **`AGENTS.md`** — Your project's source of truth. Committed and shared. Always in the agent's prompt. Under 120 lines. Contains compressed project knowledge: patterns, boundaries, gotchas, commands, architecture. - **`.agents.local.md`** — Your personal scratchpad. Gitignored. Grows over time as the agent logs what it learns each session. Session notes, dead ends, preferences, patterns that haven't been promoted yet. That's it. No plugins, no infrastructure, no background processes. The convention lives inside the files themselves, and the agent follows it. ## How It Works ### 1. Setup Run the init script. It creates `.agents.local.md` from a template, ensures it's gitignored, and wires up your agent tool's config (CLAUDE.md symlink for Claude Code, .cursorrules for Cursor, .windsurfrules for Windsurf, copilot-instructions.md for Copilot). ```bash # If you cloned the template repo: ./scripts/init-agent-context.sh # If you installed as a skill (npx skills add): bash .agents/skills/agent-context-system/scripts/init-agent-context.sh ``` Then edit `AGENTS.md` with your project specifics: name, stack, commands, actual patterns and gotchas from your codebase. This is the highest-leverage edit you'll make. ### 2. During Sessions The agent reads both files at session start. `AGENTS.md` gives it compressed project knowledge. `.agents.local.md` gives it accumulate...
# Agent Context System Coding agents are good at using context. They are terrible at keeping it consistent. Tools like GitHub Copilot Memory are doing great work on the individual side. Copilot remembers your preferences, your patterns, your stack. That's a real step forward for developer experience. But there's a layer that built-in memory doesn't cover: shared, reviewable, version-controlled project context. The stuff that lives in your repo and works across every agent your team uses. Teams still hit the same walls: - The "rules of the repo" live in chat threads and tribal knowledge - A new agent or subagent starts without the constraints that matter - The agent learns something once, then you can't review it like code - Context drifts because nobody promotes stable decisions into a shared source of truth This project is a small, boring fix. It doesn't replace built-in memory. It complements it. Built-in memory handles what the tool learns about *you*. This handles what every agent needs to know about *your project*. It makes that context explicit, reviewable, and portable. ## What this is Two markdown files. One committed, one gitignored. The agent reads both at the start of every session and updates the local one at the end. - `AGENTS.md` is your project's source of truth. Committed and shared. Always in the agent's prompt. - `.agents.local.md` is your personal scratchpad. Gitignored. It grows over time as the agent logs what it learns each session. That's it. No plugins, no infrastructure, no background processes. The convention lives inside the files themselves, and the agent follows it. ``` your-repo/ ├── AGENTS.md # Committed. Always loaded. Under 120 lines. ├── .agents.local.md # Gitignored. Personal scratchpad. ├── agent-context # CLI: init, validate, promote commands. ├── agent_docs/ # Deeper docs. Read only when needed. │ ├── conventions.md │ ├── architecture.md │ └── gotchas...
heyixuan2
Bambu Lab 3D printer control and automation. Activate when user mentions: printer status, 3D printing, slice, analyze model, generate 3D, AMS filament, print monitor, Bambu Lab, or any 3D printing task. Full pipeline: search → generate → analyze → colorize → preview → open BS → user slice → print → monitor. Supports all 9 Bambu Lab printers (A1 Mini, A1, P1S, P2S, X1C, X1E, H2C, H2S, H2D).
capt-marbles
Generative Engine Optimization (GEO) for AI search visibility. Optimize content to appear in ChatGPT, Perplexity, Claude, and Google AI Overviews. Use when optimizing websites, pages, or content for LLM discoverability and citation.
carlulsoe
Local speech-to-text with NVIDIA Parakeet TDT 0.6B v3 (ONNX on CPU). 30x faster than Whisper, 25 languages, auto-detection, OpenAI-compatible API. Use when transcribing audio files, converting speech to text, or processing voice recordings locally without cloud APIs.
carlzhao007
飞书消息自动处理与进度反馈技能。安装后后台运行,监听飞书任务消息并自动创建独立进程处理。 在处理前后发送实时进度反馈(任务确认、进度百分比、完成通知)。 支持任务类型识别、智能解析、错误重试、并发控制、状态持久化。 使用场景:飞书自动化工作流、任务进度追踪、批量任务处理、需要实时反馈的场景。
cartoonitunes
BottyFans agent skill for autonomous creator monetization. Lets AI agents register, build a profile, publish posts (public, subscriber-only, or pay-to-unlock), upload media, accept USDC subscriptions and tips on Base, send and receive DMs, track earnings, and appear on the creator leaderboard. Use this skill when an agent needs to monetize content, interact with fans, manage a creator profile, handle payments in USDC, or operate as an autonomous creator on the BottyFans platform.
camopel
Local arXiv paper manager with semantic search. Crawls arXiv categories, downloads PDFs, chunks content, and indexes with FAISS + Ollama embeddings. No cloud API keys required — everything runs locally.