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

context-engineering情境工程

Agent Skill

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

总安装

188

周安装

8

GitHub Stars

1

下载量

66
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/justinedevs/collection --skill context-engineering

简介

context-engineering 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位候选结果。
  • 通过 npx skills add 命令从指定仓库安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Context Engineering Skill

Modern LLMs bill you for every token you send. Large, unstructured prompts lead to higher cost and worse reasoning (lost-in-the-middle). This skill defines practical Context Engineering techniques and shows how to apply them in your current setup, regardless of which editor or AI product a user has.


0. Non‑Negotiable Pre‑Actions

Before any user applies these techniques, always do the following:

  1. Define the objective in one sentence. Example: “Add input validation to app.py and factor shared logic into utils/transform.py.”
  2. Limit the scope. Only include the files that matter for the current change, not the whole repo.
  3. Wrap context with hard boundaries. Use the XML tags in this skill (<global_rules>, <file>, <task>) so any LLM knows what is rules, what is code, and what is the task.
  4. State negative constraints. Always end prompts with instructions like “No preamble. No explanations. Output code or SEARCH/REPLACE blocks only.”
  5. Test on a small example first. Try the pattern on one small function or file before applying it to a large refactor. If the model output is noisy, tighten constraints and retry.

These pre‑actions are model‑ and tool‑agnostic and should be followed by every user to make the skill reliable.


1. Skeleton-of-Thought (SoT) Prompting

Goal: Give the model the *shape* of your code instead of full implementations.

How it looks (blueprint instead of full file):

def process_data(input_str: str) -> dict:
    """Parses raw string into a structured dict."""
    ...

class ReportBuilder:
    """Builds JSON reports from normalized data."""

    def build(self, data: dict) -> str:
        """Return JSON summary."""
        ...

Prompt pattern:

I am working on this project. Here is the skeleton:
<file name="pipeline.py">
def process_data(input_str: str) -> dict:
    """Parses raw string into a structured dict."""
    ...
</file>

Please implement process_data to parse JSON, handle errors, and return a dict.

Execution steps:

  • Strip function bodies (keep signatures, docstrings, and class layout).
  • Send only the skeleton when you want new logic or refactors.

2. Token-Efficient Diff Updates

Goal: Stop paying for full-file rewrites; request focused changes.

Search/replace format:

Do not rewrite the whole file.
Respond only with SEARCH/REPLACE blocks in this format:

SEARCH:
old_code_block
REPLACE:
new_code_block

Example usage:

Here is the current code in handler.py:
<file name="handler.py">
def handle(event):
    user = get_user(event["id"])
    # TODO: add logging and error handling
    return user
</file>

Update it to add logging and catch KeyError. Use SEARCH/REPLACE blocks only.

LLMs then return minimal patches instead of re-typing the file.


3. XML Tagging for Modular Context

Goal: Create hard boundaries between rules, files, and tasks so the model does not mix contexts.

Pattern:

<global_rules>
  - Follow PEP8.
  - Use snake_case for functions.
</global_rules>

<file name="utils.py">
def slugify(name: str) -> str:
    ...
</file>

<task>
Add a logging decorator to functions in utils.py and apply it to slugify.
</task>

Why this works: LLMs are trained to respect XML-like tags as structure. Wrapping each file or rule block in tags keeps the model from blending unrelated parts.


4. Symbolic Variables (Reusable Rules)

Goal: Define long rule sets once, then reference them by handle.

Header section:

[RULE_STRICT_TYPES]:
  - Always use Python type hints.
  - Use Pydantic models for external I/O.

[RULE_STYLE]:
  - Use snake_case for functions and variables.
  - Add a one-line docstring to public functions.

Later in the prompt:

Implement a user login function. Apply [RULE_STRICT_TYPES] and [RULE_STYLE].

This keeps the task-specific part short and readable while still enforcing strong constraints.


5. Negative Constraints (Token Filter)

Goal: Remove unneeded prose; pay only for code or the minimal output you want.

Common constraints:

Constraints:
- No preamble.
- Do not explain the code.
- Output code only.

Prompt example:

Refactor the following function to use early returns and clearer naming.
Constraints:
- No preamble.
- No explanation.
- Output code only.

6. LLMBundle and Context Packages

LLMBundle (e.g. Context-Engineering/llmbundle) acts as a context manager for multi-file projects.

Desired behavior:

  • Wrap each file in <file name="...">...</file> tags.
  • Include a header with <global_rules> and symbolic rule blocks.
  • Omit noise files like node_modules/, build artifacts, and lockfiles.
  • Optionally add a table of contents at the top:
<bundle_index>
  - app.py
  - utils/transform.py
  - tests/test_transform.py
</bundle_index>

With LLMBundle, your prompt to an AI agent becomes:

<global_rules>
  - Follow PEP8.
  - Prefer pure functions when possible.
</global_rules>

<bundle_index>
  - app.py
  - utils/transform.py
</bundle_index>

<file name="app.py">
  ...code...
</file>

<file name="utils/transform.py">
  ...code...
</file>

<task>
Add input validation to app.py and factor shared logic into utils/transform.py.
</task>

Using llmbundle (optional helper)

If you have the external tool llmbundle installed:

  • Run llmbundle on the files or directories you want to share (see its README for exact commands and security guidance).
  • Open the generated script (for example project.sh) and paste its contents into your LLM conversation.
  • Treat the outer bash structure as a container and only modify file contents between the heredoc EOF markers, as described in the llmbundle header comments.

This skill does not require llmbundle and never executes it. It only describes how to use the tool if the user has chosen to install and verify it independently.

---

## 7. How To Apply This In Your Setup

1. **For new features:** Send a SoT skeleton of relevant files instead of full bodies.\n2. **For edits:** Ask for SEARCH/REPLACE style diffs, not entire files.\n3. **For multi-file work:** Wrap rules, files, and tasks in XML tags.\n4. **For repeated rules:** Define symbolic variables like [RULE_*] once at the top and reference them later.\n5. **For cost control:** Always end prompts with negative constraints (no preamble, no explanations) when you only need code or diffs.\n6. **With LLMBundle:** Use it to automatically package your repo into XML-tagged, token-efficient context before sending it to an AI agent.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.22%
按下载量换算22

Claude

30.38%
按下载量换算20

Cursor

19.8%
按下载量换算13

Gemini CLI

8.13%
按下载量换算5

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills