TopRank Skills

Home / Claw Skills / Search / Prompt Library
Official OpenClaw rules 36%

Prompt Library

Prompt Library

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 Prompt Library 技能。 若已安装,则直接安装 Prompt Library 技能。

Overview

Skill Key
gpunter/prompt-library
Author
gpunter
Source Repo
openclaw/skills
Version
-
Source Path
skills/gpunter/prompt-library
Latest Commit SHA
8c558cb388d5df170d6c5773391c77aff4767abd

Extracted Content

SKILL.md excerpt

# Prompt Library

Store, organize, and retrieve reusable prompt templates. Stop rewriting the same prompts — build a personal library.

## Tools

### prompt_save
Save a prompt template to your library.

**Parameters:**
- `name` (string, required): Short name for the prompt (e.g. "blog-outline", "sales-email")
- `template` (string, required): The prompt template text. Use {{variable}} for placeholders.
- `category` (string, optional): Category tag (e.g. "writing", "coding", "research", "sales")
- `description` (string, optional): Brief description of what the prompt does
- `variables` (string[], optional): List of variable names used in the template

**Returns:** Confirmation with prompt ID.

### prompt_search
Search your prompt library by keyword or category.

**Parameters:**
- `query` (string, optional): Search term to match against name, description, or template content
- `category` (string, optional): Filter by category
- `limit` (number, optional): Max results, default 10

**Returns:** List of matching prompts with name, category, and preview.

### prompt_use
Retrieve a prompt template and fill in variables.

**Parameters:**
- `name` (string, required): Name of the saved prompt
- `variables` (object, optional): Key-value pairs to fill in {{variable}} placeholders

**Returns:** The filled prompt, ready to use.

### prompt_list_categories
List all categories in your library with prompt counts.

**Returns:** Category names and counts.

### prompt_delete
Remove a prompt from your library.

**Parameters:**
- `name` (string, required): Name of the prompt to delete

**Returns:** Confirmation.

### prompt_export
Export your entire prompt library as JSON.

**Returns:** Full library data.

## Storage

Prompts are stored in `memory/prompts/` as individual markdown files for easy version control and portability.

## Example Usage

```
Save: prompt_save name="cold-email" template="Hi {{name}}, I noticed {{observation}}. I built {{product}} that could help with {{pain_point}}...

Related Claw Skills