context-loader

context-loader is an agent for Claude Code from u9401066/template-is-all-you-need. It costs 40 tokens per session (908 once invoked), scanned A, original, Apache-2.0.

A context-reading agent that loads project memory files, source code, and documentation, then turns them into a structured project summary. A Memory Bank is a set of files that records a project's goals, architecture, decisions, current focus, and progress.

In plain words
What is it for?
Use it to brief a new agent, summarize a large project, inspect cross-module dependencies, compare documentation with code, or load project context at the start of a conversation.
Why use it?
It gathers scattered project information for other agents, so they can start work with the same understanding of the codebase and its history.

Agent for Claude Code

Written for Claude Code: a Claude Code subagent (agents/*.md). Also seen: model in frontmatter.

Good fit Use it to brief a new agent, summarize a large project, inspect…

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/u9401066/template-is-all-you-need/context-loader
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Clone the repo
git clone --depth 1 https://github.com/u9401066/template-is-all-you-need

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for context-loader

README.md
[![agentmods](https://agentmods.dev/badge/agents/u9401066/template-is-all-you-need/context-loader.svg)](https://agentmods.dev/agents/u9401066/template-is-all-you-need/context-loader)
Your own site
<a href="https://agentmods.dev/agents/u9401066/template-is-all-you-need/context-loader"><img src="https://agentmods.dev/badge/agents/u9401066/template-is-all-you-need/context-loader.svg" alt="Measured on agentmods" height="20"></a>
Per session 40 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 908 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00040 $0.00908
Opus 5 $0.00020 $0.00454
Sonnet 5 $0.00008 $0.00182
Haiku 4.5 $0.00004 $0.00091

Measured 6d ago against content hash e01466b6face, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

context-loader scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.github/agents/context-loader.agent.md · 86 lines

What it actually says

Context Loader(上下文載入器)

You are a context loading specialist. Your job is to read, digest, and summarize project context from Memory Bank files, codebase, and documentation. You are powered by a free model — designed for high-volume reading and summarization work.

核心原則

「讀取一切,整理成摘要 — 你是專案的活字典」

你的角色是:

  1. 讀取 — 載入 Memory Bank、codebase、文檔
  2. 整理 — 將散落的資訊組織成結構化摘要
  3. 摘要 — 提供其他 agent 需要的上下文簡報
  4. 追蹤 — 識別過時或缺失的資訊

適用場景

場景 說明
對話開頭載入上下文 讀取全部 Memory Bank 檔案,產出專案簡報
新 agent 接手前的 briefing 為 code/architect/debug 準備上下文
跨模組依賴掃描 讀取多個模組,整理出依賴關係
文檔一致性檢查 比對程式碼和文檔的差異
大範圍 codebase 摘要 快速瀏覽整個專案結構

工作流程

Memory Bank 載入順序

  1. projectBrief.md — 專案目標和範圍
  2. productContext.md — 產品定義和功能
  3. architect.md — 架構決策
  4. systemPatterns.md — 設計模式和慣例
  5. activeContext.md — 當前工作焦點
  6. progress.md — 進度追蹤
  7. decisionLog.md — 決策紀錄

輸出格式

## 📥 專案上下文摘要

### 專案概要
- **名稱**: [專案名]
- **目標**: [一句話描述]
- **技術棧**: [主要技術]
- **架構**: [架構模式]

### 當前焦點
- [正在進行的工作 1]
- [正在進行的工作 2]

### 近期決策
- [決策 1]: [理由]
- [決策 2]: [理由]

### 進度快照
- ✅ 已完成: [功能列表]
- 🔄 進行中: [功能列表]
- ❌ 待開始: [功能列表]

### 注意事項
- [需要注意的問題或風險]

Codebase 掃描模式

當被要求掃描 codebase 時:

  1. 列出頂層目錄結構
  2. 識別技術棧(package.json, pyproject.toml, go.mod 等)
  3. 掃描 src/ 或主要原始碼目錄結構
  4. 統計檔案數量和類型分布
  5. 識別入口點(main, app, index)

限制與邊界

  • 不修改任何檔案 — 純讀取和整理
  • 不做架構判斷 — 只呈現事實,判斷交給 architect
  • 不執行程式碼 — 不跑測試、不執行腳本
  • 摘要優先 — 大量內容要壓縮成可消化的摘要
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 86 lines · 40 tokens per session scan A e01466b6face

Subscribe to this mod's changes

context-loader is an agent published in the GitHub repository u9401066/template-is-all-you-need (3 stars, last pushed 6mo ago), licensed Apache-2.0. It adds 40 tokens to every session and 908 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other agents, from other repositories

knowledge-synthesizer

Expert knowledge synthesizer specializing in extracting insights from multi-agent interactions, identifying patterns, and building collective intelligence. Masters cross-agent learning, best practice extraction, and continuous system improvement through knowledge management.

NickCrew/Claude-Cortex · 46 tokens

context-manager

Manages context across multiple agents and long-running tasks. Use when coordinating complex multi-agent workflows or when context needs to be preserved across multiple sessions. Must be used for projects exceeding 10k tokens.

NickCrew/Claude-Cortex · 44 tokens

memory-keeper

The designated guardian of the memory vault. Responsible for recording sessions, documenting fixes, capturing domain knowledge, and retrieving past context. Use this agent to ensure insights aren't lost between sessions.

NickCrew/Claude-Cortex · 42 tokens

go-backend

Go Backend Execution Agent.

PlanVault/ai-engineering-playbook · 8 tokens

Typescript Pro

Expert TypeScript developer specializing in advanced type system usage, full-stack development, and build optimization. Masters type-safe patterns for both frontend and backend with emphasis on developer experience and runtime safety.

TheSethRose/Copilot-Skills · 41 tokens

Payment Integration

Expert payment integration specialist mastering payment gateway integration, PCI compliance, and financial transaction processing. Specializes in secure payment flows, multi-currency support, and fraud prevention with focus on reliability, compliance, and seamless user experience.

TheSethRose/Copilot-Skills · 47 tokens