---
title: "[Context Engineering Kit](https://cek.neolab.finance)"
description: "<p align=\"center\"> <a href=\"https://cek.neolab.finance/\" target=\"blank\"><img src=\"docs/assets/Context-Engineering-Kit6.png\" width=\"512\" alt=\"Context Engineering Kit - advanced context engineering techniques\" /></a> </p>"
type: skill
canonical_url: https://claudary.paisolsolutions.com/skills/readme-286
source: "Claudary"
difficulty: intermediate
author: "Claude Code Knowledge Pack"
date: 2026-07-10T11:36:20.768Z
license: CC-BY-4.0
attribution: "[Context Engineering Kit](https://cek.neolab.finance) — Claudary (https://claudary.paisolsolutions.com/skills/readme-286)"
---

# [Context Engineering Kit](https://cek.neolab.finance)
<p align="center"> <a href="https://cek.neolab.finance/" target="blank"><img src="docs/assets/Context-Engineering-Kit6.png" width="512" alt="Context Engineering Kit - advanced context engineering techniques" /></a> </p>

## Overview

<p align="center">
  <a href="https://cek.neolab.finance/" target="blank"><img src="docs/assets/Context-Engineering-Kit6.png" width="512" alt="Context Engineering Kit - advanced context engineering techniques" /></a>
</p>

<div align="center">

[![License](https://img.shields.io/badge/license-GPL%203.0-blue.svg)](LICENSE)
[![agentskills.io](https://img.shields.io/badge/format-agentskills.io-purple.svg)](https://agentskills.io)
[![Mentioned in Awesome Claude Code](https://awesome.re/mentioned-badge.svg)](https://github.com/hesreallyhim/awesome-claude-code)

Advanced context engineering techniques and patterns for Claude Code, OpenCode, Cursor, Antigravity and more.

[Quick Start](#quick-start) · [Plugins](#plugins-list) · [Github Action](https://cek.neolab.finance/guides/ci-integration) · [Reference](https://cek.neolab.finance/reference) · [Docs](https://cek.neolab.finance/)

</div>

# [Context Engineering Kit](https://cek.neolab.finance)

Hand-crafted collection of advanced context engineering techniques and patterns with minimal token footprint, focused on improving agent result quality and predictability.

The marketplace is based on prompts used daily by our company developers for a long time, supplemented by plugins from benchmarked papers and high-quality projects.

## Key Features

- **Simple to Use** - Easy to install and use without any dependencies. Contains automatically used skills and self-explanatory commands.
- **Token-Efficient** - Carefully crafted prompts and architecture, preferring command-oriented skills with sub-agents over general information skills when possible, to minimize populating context with unnecessary information.
- **Quality-Focused** - Each plugin is focused on meaningfully improving agent results in a specific area.
- **Granular** - Install only the plugins you need. Each plugin loads only its specific agents, commands, and skills. Each without overlap or redundant skills.
- **Scientifically proven** - Plugins are based on proven techniques and patterns that were tested by well-trusted benchmarks and studies.
- **Open-Standards** - Skills are based on [agentskills.io](https://agentskills.io) specification. The [SDD](https://cek.neolab.finance/plugins/sdd) plugin is based on the **Arc42** specification standard for software development documentation.

## News

Updates from key releases:

- **v3.0.0:** Added support for AMP and Hermes agents. [Tech Stack plugin](https://cek.neolab.finance/plugins/tech-stack) now automatically injects typescript best practices when agent reads or writes TypeScript files.
- **v2.2.0:** [Subagent-Driven Development plugin](https://cek.neolab.finance/plugins/sadd) now works as a distilled version of [SDD plugin](https://cek.neolab.finance/plugins/sdd) using meta-judge and judge sub-agents for specification generation on the fly and in parallel to implementation. [DDD plugin](https://cek.neolab.finance/plugins/ddd) now includes Clean Architecture, DDD, SOLID, Functional Programming, and other pattern examples as rules that are automatically added to the context during code writing.
- **v2.1.0:** [Spec-Driven Development plugin](https://cek.neolab.finance/plugins/sdd) agents include high-level code quality guidelines from [DDD plugin](https://cek.neolab.finance/plugins/ddd).
- **v2.0.0:** [Spec-Driven Development plugin](https://cek.neolab.finance/plugins/sdd) was rewritten from scratch. It is now able to produce working code in 99% of cases on real-life production projects!

## Quick Start

### Step 1: Install Marketplace and Plugins

#### Claude Code

Open Claude Code and add the Context Engineering Kit marketplace

```bash
/plugin marketplace add NeoLabHQ/context-engineering-kit
```

This makes all plugins available for installation, but does not load any agents or skills into your context.

Install any plugin, for example reflexion:

```bash
/plugin install reflexion@NeoLabHQ/context-engineering-kit
```

Each installed plugin loads only its specific agents, commands, and skills into Claude's context.

#### Cursor, Antigravity, Codex, OpenCode and others

Run the [vercel-labs/skills](https://github.com/vercel-labs/skills) command in your terminal:

```bash
npx skills add NeoLabHQ/context-engineering-kit
```
You can pick which skills and agents to install.

<details>
<summary>Alternative installation methods</summary>

You can use [OpenSkills](https://github.com/numman-ali/openskills) to install skills by running the following commands:

```bash
npx openskills install NeoLabHQ/context-engineering-kit
npx openskills sync
```

</details>

### Step 2: Use Plugin

```bash
> claude "implement user authentication"
# Claude implements user authentication, then you can ask it to reflect on implementation

> /reflexion:reflect
# It analyses results and suggests improvements
# If issues are obvious, it will fix them immediately
# If they are minor, it will suggest improvements that you can respond to
> fix the issues

# If you would like to prevent issues found during reflection from appearing again,
# ask Claude to extract resolution strategies and save the insights to project memory
> /reflexion:memorize
```

Alternatively, you can use the `reflect` word in the initial prompt:

```bash
> claude "implement user authentication, then reflect"
# Claude implements user authentication,
# then hook automatically runs /reflexion:reflect
```

In order to use this hook, you need to have `bun` installed. However, it is not required for the overall command.

## Documentation

You can find the complete Context Engineering Kit documentation [here](https://cek.neolab.finance).

However, the main plugins we recommend starting from are [Subagent-Driven Development](https://cek.neolab.finance/plugins/sadd) and [Spec-Driven Development](https://cek.neolab.finance/plugins/sdd).

### Agent Reliability Engineering

The three plugins in this marketplace are designed to improve how accurately and consistently the agent follows provided instructions and reduce the number of hallucinations and bias toward incorrect solutions. They are not competitors but rather complementary to each other, because they allow you to balance reliability vs token cost. Here is a high-level comparison of different agent usage approaches vs probability to receive results that are fully accurate and include zero hallucinations based on task complexity:

<table>
<thead>
<tr>
<th rowspan="2">Approach</th>
<th colspan="4">Probability to receive fully accurate results for the following number of changed files (p)</th>
<th rowspan="2">Tokens Overhead</th>
<th rowspan="2">What does this mean in practice</th>
</tr>
<tr>
<th>1-3</th>
<th>4-10</th>
<th>10-20</th>
<th>20+</th>
</tr>
</thead>
<tbody>
<tr>
<td>One-shot prompt</td>
<td>60%-80%</td>
<td>30%-50%</td>
<td>5%-30%</td>
<td>1%-20%</td>
<td>0</td>
<td>Accuracy depends on model, but with context growth LLM quality degrades exponentially</td>
</tr>
<tr>
<td><a href="https://cek.neolab.finance/plugins/reflexion/reflect">/reflect</a></td>
<td>68%-91%</td>
<td>49%-71%</td>
<td>13%-41%</td>
<td>1%-30%</td>
<td>1k-3k</td>
<td>Agent finds and fixes missed requirements on its own</td>
</tr>
<tr>
<td><a href="https://cek.neolab.finance/plugins/reflexion/reflect">/reflect</a> + <a href="https://cek.neolab.finance/plugins/reflexion/memorize">/memorize</a></td>
<td>79%-87%</td>
<td>60%-79%</td>
<td>34%-42%</td>
<td>5%-30%</td>
<td>2k-5k</td>
<td>Agent extracts repeatable mistakes and avoids them during new tasks</td>
</tr>
<tr>
<td><a href="https://cek.neolab.finance/plugins/sadd/do-and-judge">/do-and-judge</a></td>
<td>90%</td>
<td>83%</td>
<td>60%</td>
<td>30%</td>
<td>1.5x-3x</td>
<td>Mitigates context rot, bias, hallucinations and missed requirements using Judge sub-agent</td>
</tr>
<tr>
<td><a href="https://cek.neolab.finance/plugins/sadd/do-in-steps">/do-in-steps</a></td>
<td>92%</td>
<td>90%</td>
<td>71%</td>
<td>50%</td>
<td>3x-5x</td>
<td>Resolves all issues similarly to /do-and-judge, but separately per file group</td>
</tr>
<tr>
<td><a href="https://cek.neolab.finance/plugins/sdd">/plan-task + /implement-task</a></td>
<td>94%</td>
<td>93%</td>
<td>85%</td>
<td>70%</td>
<td>5x-20x</td>
<td>Performs the /do-in-steps flow, but the specification mitigates issues caused by inconsistent architecture and codebase size</td>
</tr>
<tr>
<td><a href="https://cek.neolab.finance/plugins/sdd/brainstorm">/brainstorm</a> + <a href="https://cek.neolab.finance/plugins/sdd/plan-task">/plan-task</a> + <a href="https://cek.neolab.finance/plugins/sdd/implement-task">/implement-task</a></td>
<td>95%</td>
<td>95%</td>
<td>90%</td>
<td>80%</td>
<td>5x-20x</td>
<td>Brainstorming decreases the number of incorrect decisions and missed requirements</td>
</tr>
<tr>
<td><a href="https://cek.neolab.finance/plugins/sdd/plan-task">/plan-task</a> + human review + <a href="https://cek.neolab.finance/plugins/sdd/implement-task">/implement-task</a></td>
<td>99%</td>
<td>99%</td>
<td>99%</td>
<td>95%</td>
<td>5x-35x</td>
<td>Human review mitigates misunderstanding of requirements by LLM</td>
</tr>
</tbody>
</table>

> Reliability metrics are based on real development usage on production projects for more than 6 months.

## Plugins List

To view all available plugins:

```bash
/plugin
```

- [Reflexion](https://cek.neolab.finance/plugins/reflexion) - Introduces feedback and refinement loops to improve output quality.
- [Spec-Driven Development](https://cek.neolab.finance/plugins/sdd) - Introduces commands for specification-driven development, based on Continuous Learning + LLM-as-Judge + Agent Swarm. Achieves **development as compilation** through reliable code generation.
- [Review](https://cek.neolab.finance/plugins/review) - Introduces code and PR review commands and skills using multiple specialized agents with impact/confidence filtering.
- [Git](https://cek.neolab.finance/plugins/git) - Introduces commands for commit and PR creation.
- [Test-Driven Development](https://cek.neolab.finance/plugins/tdd) - Introduces commands for test-driven development, common anti-patterns and skills for testing using subagents.
- [Subagent-Driven Development](https://cek.neolab.finance/plugins/sadd) - Introduces skills for subagent-driven development, which dispatches a fresh subagent for each task with code review between tasks, enabling fast iteration with quality gates.
- [Domain-Driven Development](https://cek.neolab.finance/plugins/ddd) - Introduces commands to update CLAUDE.md with best practices for domain-driven development, focused on code quality, and includes Clean Architecture, SOLID principles, and other design patterns.
- [FPF - First Principles Framework](https://cek.neolab.finance/plugins/fpf) - Introduces structured reasoning using ADI cycle (Abduction-Deduction-Induction) with knowledge layer progression. Uses workflow command pattern with fpf-agent for hypothesis generation, verification, and auditable decision-making.
- [Kaizen](https://cek.neolab.finance/plugins/kaizen) - Inspired by Japanese continuous improvement philosophy, Agile and Lean development practices. Introduces commands for analysis of root causes of issues and problems, including 5 Whys, Cause and Effect Analysis, and other techniques.
- [Customaize Agent](https://cek.neolab.finance/plugins/customaize-agent) - Commands and skills for writing and refining commands, hooks, and skills for Claude Code. Includes Anthropic Best Practices and [Agent Persuasion Principles](https://arxiv.org/abs/2508.00614) that can be useful for sub-agent workflows.
- [Docs](https://cek.neolab.finance/plugins/docs) - Commands for analyzing projects, writing and refining documentation.
- [Tech Stack](https://cek.neolab.finance/plugins/tech-stack) - Rules for language-specific best practices, automatically applied when working on matching file types.
- [MCP](https://cek.neolab.finance/plugins/mcp) - Commands for setting up well-known MCP server integration if needed and updating CLAUDE.md file with requirements to use this MCP server for the current project.

## Stay ahead

Star Context Engineering Kit on GitHub to support it's development and get notified about new features and updates.

<img src="docs/assets/context-engineering-kit-like.gif" alt="Star Context Engineering Kit on GitHub" />

### [Reflexion](https://cek.neolab.finance/plugins/reflexion)

Collection of commands that force the LLM to reflect on the previous response and output. Includes **automatic reflection hooks** that trigger when you include "reflect" in your prompt.

**How to install**

```bash
/plugin install reflexion@NeoLabHQ/context-engineering-kit
```

**Commands**

- [/reflexion:reflect](https://cek.neolab.finance/plugins/reflexion/reflect) - Reflect on previous response and output, based on Self-refinement framework for iterative improvement with complexity triage and verification
- [/reflexion:memorize](https://cek.neolab.finance/plugins/reflexion/memorize) - Memorize insights from reflections and update the CLAUDE.md file with this knowledge. Curates insights from reflections and critiques into CLAUDE.md using Agentic Context Engineering
- [/reflexion:critique](https://cek.neolab.finance/plugins/reflexion/critique) - Comprehensive multi-perspective review using specialized judges with debate and consensus building

**Hooks**

- **Automatic Reflection Hook** - Triggers `/reflexion:reflect` automatically when "reflect" appears in your prompt

**Theoretical Foundation**

The plugin is based on papers like [Self-Refine](https://arxiv.org/abs/2303.17651) and [Reflexion](https://arxiv.org/abs/2303.11366). These techniques improve the output of large language models by introducing feedback and refinement loops.

They are proven to **increase output quality by 8–21%** based on both automatic metrics and human preferences across seven diverse tasks, including dialogue generation, coding, and mathematical reasoning, when compared to standard one-step model outputs.

On top of that, the plugin is based on the [Agentic Context Engineering](https://arxiv.org/abs/2510.04618) paper that uses memory updates after reflection, and **consistently outperforms strong baselines by 10.6%** on agents.

### [Review](https://cek.neolab.finance/plugins/review)

Comprehensive code and PR review commands using multiple specialized agents for thorough code quality evaluation with impact/confidence filtering.

**How to install**

```bash
/plugin install review@NeoLabHQ/context-engineering-kit
```

**Commands**

- [/review-local-changes](https://cek.neolab.finance/plugins/review/review-local-changes) - Comprehensive review of local uncommitted changes using specialized agents with code improvement suggestions
- [/review-pr](https://cek.neolab.finance/plugins/review/review-pr) - Comprehensive pull request review using specialized agents

**Agents**

This plugin uses multiple specialized agents for comprehensive code quality analysis:

- **bug-hunter** - Identifies potential bugs, edge cases, and error-pron

---

Source: [Claudary](https://claudary.paisolsolutions.com/skills/readme-286) · https://claudary.paisolsolutions.com
