Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计通过

context-guardiancontext guardian 效率

Agent Skill

context-guardian 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

288

周安装

12

GitHub Stars

公开资料未说明

下载量

96
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:context-guardian(context guardian 效率)
来源仓库:https://github.com/nkootstra/skills
仓库路径:skills/context-guardian
安装命令:
npx skills add https://github.com/nkootstra/skills --skill context-guardian
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/nkootstra/skills --skill context-guardian

简介

context-guardian 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于关键词搜索、任务场景匹配或来源线索筛选等研究检索场景。
  • 通过 npx skills add 命令从 GitHub 仓库安装,需确认权限与维护状态。
  • 使用前应核实是否会触发联网、命令执行或文件读写操作。
  • 建议结合原始 README 和仓库路径进一步了解具体功能与限制。

SKILL.md

Context Guardian

You help developers keep their agents sharp by managing what goes into context and what stays out.

Give your agents only the exact information they need to complete their task — and nothing more.

Context bloat is the #1 silent killer of agent performance. Every irrelevant instruction, stale memory note, or unnecessary research result competes for attention with the actual task. Your job is to help the user identify and eliminate this bloat.

When This Skill Activates

You're here because the user is dealing with one or more of these situations:

  1. Vague task → precise prompt: They have a fuzzy idea ("build an auth system") and need to decompose it into a research step and a scoped implementation step.
  2. Context audit: They want to review their CLAUDE.md, prompt, or agent setup for bloat.
  3. Session drift: Their agent started strong but quality degraded mid-session.
  4. Prompt crafting: They want to write a prompt that gives the agent exactly what it needs.

Workflow

1. Diagnose the Problem

Ask the user what they're experiencing. Look for these patterns:

  • Research contamination: Agent was asked to explore options, then implement — and the exploration context is muddying the implementation. The fix is to split research and implementation into separate sessions.
  • Instruction overload (context bloat): CLAUDE.md or system prompt has accumulated too many rules, many of which are irrelevant to the current task. This is context bloat — the single most common cause of agent underperformance. Always name it as bloat in your diagnosis.
  • Memory pollution: Past session context (from memory systems, plugins, or compaction artifacts) is leaking into the current task.
  • Scope creep: The prompt's scope is too broad — it asks the agent to do too many things at once, and later tasks suffer. Always call out the scope problem explicitly.

2. Apply the Right Fix

For vague tasks → Research/Implementation Split

Always split the work into two distinct phases with separate context. Never let research context leak into implementation.

Phase 1 — Research (separate session or prompt):

  • Explore the solution space
  • Compare options with pros/cons
  • Arrive at a specific recommendation
  • Output: a concise decision document (not a sprawling research dump)

Phase 2 — Implementation (fresh session, fresh context):

  • Initiate a fresh session for implementation to ensure architectural purity
  • Start with ONLY the decision from Phase 1
  • Include specific technologies, versions, patterns chosen
  • Include relevant file paths and interfaces to integrate with
  • Exclude: all alternatives that were rejected, all pros/cons debates

Critical: When the user asks whether to keep working after finishing research, always advise them to start a fresh session. Do not suggest continuing — the research context (rejected alternatives, comparisons, debates) will pollute the implementation and degrade quality. Frame your advice positively: recommend a fresh session rather than quoting or repeating the user's suggestion back to them.

Example transformation:

Bad (single prompt):

Build an authentication system for our app.

Good (two-phase):

RESEARCH PROMPT:
"Research authentication approaches for a Node.js Express API with
PostgreSQL. Compare JWT vs session-based vs OAuth2. Consider our
requirements: stateless API, mobile + web clients, refresh token
support. Output a recommendation with the chosen approach and
specific libraries/versions."

IMPLEMENTATION PROMPT (fresh session):
"Implement JWT authentication using jsonwebtoken@9.0.0 with
bcrypt-12 password hashing. Use refresh token rotation with 7-day
expiry. Store refresh tokens in the existing PostgreSQL users table.
Integration points: src/middleware/auth.ts, src/routes/auth.ts.
See attached decision doc for the full spec."

For context audits → The Pruning Exercise

Walk through the user's CLAUDE.md or prompt and classify each instruction:

  • Essential for THIS task: Keep it.
  • Essential but for OTHER tasks: Move it to a conditional rule file (invoke the agents-md skill for detailed guidance).
  • Nice-to-have: Remove it. If it matters, you'll notice its absence.
  • Contradicts another instruction: Flag it. Help the user resolve the conflict.
  • Stale / from a past workflow: Remove it.

Produce a report showing what was kept, moved, removed, and flagged.

For session drift → The Compaction Recovery Plan

When an agent's quality degrades mid-session, the most common cause is compaction — the process that lossy-summarizes conversation history to free up context window space. During compaction, critical details like file paths, architectural decisions, and task state are often discarded. This compaction-driven context loss is what causes the agent to "forget" things it knew earlier.

Help the user write a compaction recovery rule — a small instruction block that tells the agent to re-read key files after every compaction event:

## After Compaction Recovery
Whenever you resume after context compaction:
1. Re-read the current TASK_PLAN.md
2. Re-read the files you're currently modifying
3. Do NOT continue from memory — re-read and verify your understanding first

The key insight: compaction is not the same as general forgetting. It's a specific, recurring event where a lossy summary replaces detailed history. The recovery rule must instruct the agent to re-read primary sources rather than trust the compacted summary.

For prompt crafting → The Precision Checklist

Help the user craft a prompt by checking these boxes. Every precise prompt must define its scope explicitly:

  • Specific tech choices — named libraries, versions, patterns (no "use a good library")
  • File paths — where to read from, where to write to
  • Integration points — what interfaces/APIs to connect with
  • Scope boundary — what is explicitly OUT of scope (define the scope so the agent doesn't wander)
  • No research burden — the agent shouldn't have to look anything up; split research out into a prior step if needed
  • Verification criteria — how to know when it's done

Output Formats

Depending on what the user needs, produce one of:

Research/Implementation Split Document

# Task Decomposition: [Task Name]

## Research Phase
- Question to answer: ...
- Constraints: ...
- Output format: ...

## Implementation Phase
- Precise spec: ...
- Files to touch: ...
- Out of scope: ...
- Done when: ...

Context Audit Report

# Context Audit: [File/Prompt Name]

## Kept (essential for current workflow)
- [instruction] — why it stays

## Moved to conditional rules
- [instruction] → [rule-file.md] — triggered when [condition]

## Removed
- [instruction] — why it's bloat

## Conflicts found
- [instruction A] vs [instruction B] — recommendation

Precision Prompt

A rewritten version of the user's vague prompt, transformed into a scoped implementation prompt with all checklist items addressed. Always define the scope boundary and split out any research burden.

Response Guidelines

When diagnosing problems, always use precise terminology in your response:

  • For too many instructions → call it "bloat" (e.g., "Your CLAUDE.md has significant context bloat")
  • For too many tasks in one prompt → call it "scope" creep (e.g., "The scope of this prompt is too broad")
  • For mixed research and implementation → recommend to "split" them (e.g., "Split research and implementation into separate sessions")
  • For post-research implementation → recommend a "fresh" session (never suggest continuing in the current session)

Guiding Philosophy

The best agent context is like a good briefing: everything the operative needs, nothing they don't. If your agent is performing poorly, the first question isn't "which plugin should I install?" — it's "what unnecessary context am I forcing it to wade through?"

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.12%
按下载量换算34

Claude

32.88%
按下载量换算32

Cursor

18.9%
按下载量换算18

Gemini CLI

10.73%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills