Claude Skills
CollectionsCompareWorkflowsNominate
Sign inSign up
© 2026 Curated Agent Skills·Learn more about Agent Skills
Back to repository

recall

verified

Retrieves relevant guidelines from a knowledge base. Designed to be invoked automatically via hooks to inject context-appropriate guidelines before task execution.

View on GitHub

Marketplace

kaizen-marketplace

AgentToolkit/kaizen

Plugin

kaizen

productivity

Repository

AgentToolkit/kaizen
6stars

plugins/kaizen/skills/recall/SKILL.md

Last Verified

February 1, 2026

Install Skill

Select agents to install to:

Scope:
npx add-skill https://github.com/AgentToolkit/kaizen/blob/main/plugins/kaizen/skills/recall/SKILL.md -a claude-code --skill recall

Installation paths:

Claude
.claude/skills/recall/
Powered by add-skill CLI

Instructions

# Guideline Retrieval

## Overview

This skill retrieves relevant guidelines from a stored knowledge base based on the current task context. It loads all stored guidelines and presents them to Claude for relevance filtering.

## How It Works

1. Hook fires on user prompt submission
2. Script reads prompt from stdin (JSON with `prompt` field)
3. Loads all guidelines from the guidelines JSON file
4. Outputs formatted guidelines to stdout
5. Claude receives guidelines as additional context and applies relevant ones

## Guidelines Storage

Guidelines are stored in `.claude/guidelines.json` in the project root:

```json
{
  "guidelines": [
    {
      "content": "Use context managers for file operations",
      "rationale": "Ensures proper resource cleanup",
      "category": "strategy",
      "trigger": "When processing files or managing resources"
    }
  ]
}
```

Validation Details

Front Matter
Required Fields
Valid Name Format
Valid Description
Has Sections
Allowed Tools
Instruction Length:
829 chars