Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计通过

prompt-vault提示金库

Agent Skill

用于辅助提示词、系统指令、Agent 行为约束和工作流模板的整理。它适合让 Agent 规范任务边界、统一输出格式、拆分操作步骤或优化提示词可复用性。使用时需要保留真实业务约束,不要把示例当硬规则;涉及自动执行、外部工具或高风险操作时,应在提示词中明确确认步骤、权限边界和失败处理方式。

总安装

7,056

周安装

294

GitHub Stars

公开资料未说明

下载量

2,352
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:prompt-vault(提示金库)
来源仓库:https://github.com/theshadowrose/prompt-vault
安装命令:
openclaw skills install prompt-vault
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install prompt-vault

简介

与您的团队组织、评分和分享提示。再也不会失去一个很棒的提示了。通过搜索、标签和评级进行集中式提示管理。

SKILL.md

name
PromptVault Team Prompt Library
description
Organize, rate, and share prompts with your team. Never lose a great prompt again. Centralized prompt management with search, tags, and ratings.
author
@TheShadowRose
version
1.0.0
tags
["prompts", "team", "library", "sharing", "organization", "collaboration"]
license
MIT

PromptVault Team Prompt Library

Organize, rate, and share prompts with your team. Never lose a great prompt again. Centralized prompt management with search, tags, and ratings.


Organize, rate, and share prompts with your team. Never lose a great prompt again.

Author: Shadow Rose License: MIT Quality: quality-verified


What It Does

You've discovered a prompt that works perfectly. Your teammate found one that saves hours. Someone else rated a prompt 5 stars. Where do you keep all of this knowledge?

Random text files? Scattered notes? Lost in chat history?

PromptVault solves this:

  • 📚 Central library for all your prompts
  • ⭐ Rate prompts (1-5 stars) with performance notes
  • 🏷️ Organize by categories and tags
  • 🔍 Fast search across everything
  • 📊 Usage tracking (know which prompts work)
  • 🔄 Export/import for team sharing
  • 🌐 Beautiful HTML browse interface (no server needed)
  • 📝 Changelog tracking (who changed what, when)
  • 🚀 Command-line first (scriptable, automation-friendly)

One vault. Entire team. All the prompts that matter.


Quick Start

# Add your first prompt
python prompt_vault.py add "Helpful Assistant" \
  --text "You are a helpful, friendly assistant." \
  --category system

# Search for prompts
python prompt_vault.py search "assistant"

# Rate a prompt
python prompt_vault.py rate abc123def456 --rating 5 --notes "Perfect for customer support"

# Generate HTML browse interface
python prompt_browse.py -o browse.html

# Export for team sharing
python prompt_sync.py export prompt_vault.json -o team_export.json

Features

📚 Organized Library

Categories:

  • System prompts (personas, behaviors)
  • Task prompts (specific jobs)
  • Templates (reusable structures)
  • Snippets (prompt fragments)
  • Chains (multi-step sequences)

Tags: Add as many as you want. Search by any tag.

Metadata: Author, model compatibility, creation date, last modified

⭐ Rating System

Rate prompts 1-5 stars with notes:

python prompt_vault.py rate abc123def456 --rating 5 --notes "Works great with GPT-4"

Search by minimum rating:

python prompt_vault.py search --min-rating 4

Know which prompts are team favorites.

📊 Usage Tracking

Every time you use a prompt, track it:

python prompt_vault.py get abc123def456 --use

See most-used prompts:

python prompt_vault.py stats

Data-driven prompt management.

🔍 Powerful Search

Search by:

  • Keywords (in name, text, notes)
  • Category
  • Tags (any tag matches)
  • Author
  • Minimum rating
# Find all code review prompts rated 4+
python prompt_vault.py search "code review" --category task --min-rating 4

# Find all prompts by Alice
python prompt_vault.py search --author Alice

# Find prompts tagged "python" or "coding"
python prompt_vault.py search --tags python,coding

🔄 Team Sharing

Export prompts:

# Export high-rated prompts for team
python prompt_sync.py export prompt_vault.json -o team_best.json --min-rating 4

# Export specific categories
python prompt_sync.py export prompt_vault.json -o system_prompts.json --categories system

Import prompts:

# Import with skip duplicates (default)
python prompt_sync.py import my_vault.json --from team_best.json

# Import and replace duplicates
python prompt_sync.py import my_vault.json --from team_best.json --strategy replace

# Import and merge (combine tags, keep highest rating)
python prompt_sync.py import my_vault.json --from team_best.json --strategy merge

Compare vaults:

python prompt_sync.py diff my_vault.json coworker_vault.json

🌐 HTML Browse Interface

Generate a static HTML page for easy browsing:

python prompt_browse.py -o browse.html

Features:

  • Search bar (live filtering)
  • Category filters
  • Click to copy prompt to clipboard
  • No server needed (open in browser)
  • Works offline
  • Share with team (just send the HTML file)

Perfect for teams who want a simple, visual way to explore prompts.

📝 Changelog Tracking

Every update is logged:

python prompt_vault.py update abc123def456 --text "Updated prompt text"

The vault automatically tracks:

  • What changed
  • When it changed
  • Full history per prompt

🔒 Safe & Git-Friendly

  • JSON storage — plain text, easy to diff
  • Automatic backups — creates .bak before saves
  • No lock files — safe for shared drives
  • Merge-friendly — resolve conflicts easily

Works great with Git, Dropbox, Google Drive, network shares.


Usage Examples

Example 1: Build a System Prompt Library

# Add system prompts
python prompt_vault.py add "Code Reviewer" \
  --text "You are an expert code reviewer..." \
  --category system \
  --tags "coding,reviews" \
  --author "Alice"

python prompt_vault.py add "Technical Writer" \
  --text "You are a technical writer who explains concepts clearly..." \
  --category system \
  --tags "writing,documentation" \
  --author "Bob"

# List all system prompts
python prompt_vault.py list --category system

Example 2: Track Performance

# Use a prompt for a task
python prompt_vault.py get abc123def456 --use

# After testing, rate it
python prompt_vault.py rate abc123def456 --rating 5 --notes "Perfect results with GPT-4"

# Check usage stats
python prompt_vault.py stats

Output:

=== Vault Statistics ===
Total prompts: 15
Average rating: 4.2/5

By category:
  system: 5
  task: 8
  template: 2

Most used:
  Code Reviewer: 23 times
  Bug Fixer: 18 times
  Documentation Writer: 12 times

Example 3: Team Workflow

Person A (Curator):

# Create initial vault with best prompts
python prompt_vault.py add "Sprint Planner" --text "..." --category task --rating 5
python prompt_vault.py add "Bug Analyzer" --text "..." --category task --rating 5

# Export for team
python prompt_sync.py export my_vault.json -o team_prompts.json --min-rating 4

Person B (Team Member):

# Import team prompts
python prompt_sync.py import my_vault.json --from team_prompts.json

# Add own prompts
python prompt_vault.py add "My Custom Prompt" --text "..." --category task

# Generate browse interface
python prompt_browse.py -o browse.html

Person C (Contributor):

# Import team prompts
python prompt_sync.py import my_vault.json --from team_prompts.json --strategy merge

# Rate and improve
python prompt_vault.py rate abc123def456 --rating 4 --notes "Works but could be more specific"
python prompt_vault.py update abc123def456 --text "Improved version..."

# Export updated version
python prompt_sync.py export my_vault.json -o my_improvements.json

Example 4: Automation

# Script to find and use a prompt
#!/bin/bash
PROMPT_ID="abc123def456"

# Get prompt text
TEXT=$(python prompt_vault.py get $PROMPT_ID --use | grep -A 999 "text:" | tail -n +2)

# Use with AI API
curl -X POST https://api.example.com/chat \
  -d "{\"prompt\": \"$TEXT\"}"

Command Reference

Core Commands

Add a Prompt

prompt_vault.py add "NAME" --text "PROMPT TEXT" [OPTIONS]

Options:
  --category CATEGORY    system, task, template, snippet, chain
  --tags TAGS            Comma-separated tags
  --author AUTHOR        Prompt author
  --notes NOTES          Usage notes
  --models MODELS        Compatible models
  --rating RATING        Initial rating (1-5)

Search Prompts

prompt_vault.py search [QUERY] [OPTIONS]

Options:
  --category CATEGORY    Filter by category
  --tags TAGS            Filter by tags (any match)
  --author AUTHOR        Filter by author
  --min-rating N         Minimum rating
  -v, --verbose          Show full details

Get a Prompt

prompt_vault.py get PROMPT_ID [OPTIONS]

Options:
  -v, --verbose          Show full details including changelog
  --use                  Increment usage counter

Rate a Prompt

prompt_vault.py rate PROMPT_ID --rating N [OPTIONS]

Options:
  --rating N             Rating (1-5, required)
  --notes NOTES          Rating notes

Update a Prompt

prompt_vault.py update PROMPT_ID [OPTIONS]

Options:
  --name NAME            New name
  --text TEXT            New text
  --category CATEGORY    New category
  --tags TAGS            New tags
  --notes NOTES          New notes

Delete a Prompt

prompt_vault.py delete PROMPT_ID [--confirm]

List Prompts

prompt_vault.py list [OPTIONS]

Options:
  --category CATEGORY    Filter by category
  -v, --verbose          Show full details

Statistics

prompt_vault.py stats

List Categories/Tags

prompt_vault.py categories
prompt_vault.py tags

Sync Commands

Export

prompt_sync.py export VAULT.json -o OUTPUT.json [OPTIONS]

Options:
  --categories CATS      Comma-separated categories to include
  --min-rating N         Minimum rating to include
  --include-private      Include notes and changelog

Import

prompt_sync.py import VAULT.json --from IMPORT.json [OPTIONS]

Options:
  --strategy STRATEGY    skip (default), replace, or merge
  --update-existing      Update existing prompts with newer data

Diff (Compare)

prompt_sync.py diff VAULT1.json VAULT2.json [-v]

Browse Interface

Generate HTML

prompt_browse.py -o OUTPUT.html [OPTIONS]

Options:
  --vault VAULT.json     Source vault (default: prompt_vault.json)
  --title TITLE          Page title

Configuration

See config_example.json for reference constants and example values

# Vault location
VAULT_PATH = './prompt_vault.json'

# Categories
DEFAULT_CATEGORIES = ['system', 'task', 'template', 'snippet', 'chain']

# Team settings
TEAM_SETTINGS = {
    'default_author': 'Team',
    'require_category': True,
}

# Custom categories
CUSTOM_CATEGORIES = ['code_review', 'creative_writing']

See config_example.json for all available options.


Use Cases

For Solo Developers

  • Keep all your favorite prompts in one place
  • Rate what works, discard what doesn't
  • Never lose a great prompt again

For Teams

  • Share best prompts across the team
  • Track which prompts are most effective
  • Standardize on high-quality prompts

For Prompt Engineers

  • Organize experiments by category
  • Track performance with ratings
  • Version control with changelog

For Managers

  • See what prompts teams use most
  • Identify top contributors
  • Export best practices

File Structure

prompt-vault/
├── prompt_vault.py        # Main library engine
├── prompt_browse.py       # HTML interface generator
├── prompt_sync.py         # Export/import for sharing
├── config_example.json      # Configuration template
├── prompt_vault.json      # Your vault (created on first use)
├── README.md              # This file
├── LIMITATIONS.md         # What this tool doesn't do
└── LICENSE                # MIT License

Requirements

Python 3.7+ (standard library only — no external dependencies)


Tips & Best Practices

1. Use Descriptive Names

Bad: "Prompt 1", "Test prompt" Good: "Bug Analyzer - Python", "Sprint Planning Assistant"

2. Tag Consistently

Agree on team tags: coding, writing, analysis, not code/coding/dev

3. Rate After Real Use

Don't rate on creation. Use it first, then rate based on actual results.

4. Add Performance Notes

When rating, note which model, what task, and results:

Rating 5/5: Perfect with GPT-4 for code reviews. Catches edge cases consistently.

5. Export Regularly

Share team exports weekly or monthly. Keep everyone aligned.

6. Use Categories Meaningfully

  • System: Personas and behaviors
  • Task: Specific job prompts
  • Template: Reusable structures
  • Snippet: Fragments for building
  • Chain: Multi-step sequences

7. Track Usage

Use --use flag when grabbing prompts. Data shows what actually works.

8. HTML for Non-Technical Users

Generate HTML browse interface for team members who don't use CLI.


Integration Ideas

Git Workflow

# Commit vault changes
git add prompt_vault.json
git commit -m "Added new code review prompts"
git push

# Team pulls changes
git pull

Automation Scripts

# Auto-export high-rated prompts nightly
0 2 * * * python prompt_sync.py export my_vault.json -o /shared/team_best.json --min-rating 4

Backup Strategy

# Daily backup to cloud
0 1 * * * cp prompt_vault.json ~/Dropbox/backups/prompt_vault_$(date +\%Y\%m\%d).json

Contributing

MIT License means you can:

  • Fork and modify
  • Share improvements
  • Use commercially
  • Customize for your team

License

MIT License — see LICENSE file for details.

Free for personal and commercial use.


Author

Shadow Rose


FAQ

Q: Can multiple people use the same vault file? A: Yes! Store on a network drive, Dropbox, or Git repo. The format is merge-friendly.

Q: What if two people edit at the same time? A: Use Git for merging, or export/import to combine changes safely.

Q: Does this work with any AI model? A: Yes! Store prompts for any model (GPT, Claude, Gemini, local models, etc.)

Q: Can I migrate from my current prompt system? A: Yes. Write a quick script to convert your format to PromptVault JSON, then import.

Q: How do I backup my vault? A: It's just a JSON file. Copy it anywhere. Enable auto-backup in config.

Q: Can I have multiple vaults? A: Yes! Use --vault flag to specify different vault files.

Q: Is there a GUI? A: No built-in GUI, but the HTML browse interface works like one. Or build your own on top of the CLI.

Q: Can I search by partial match? A: Yes, search is substring-based by default.


Never lose a great prompt again. Start building your vault today:

python prompt_vault.py add "Your First Prompt" --text "Make it great" --category task

⚠️ Disclaimer

This software is provided "AS IS", without warranty of any kind, express or implied.

USE AT YOUR OWN RISK.

  • The author(s) are NOT liable for any damages, losses, or consequences arising from

the use or misuse of this software — including but not limited to financial loss, data loss, security breaches, business interruption, or any indirect/consequential damages.

  • This software does NOT constitute financial, legal, trading, or professional advice.
  • Users are solely responsible for evaluating whether this software is suitable for

their use case, environment, and risk tolerance.

  • No guarantee is made regarding accuracy, reliability, completeness, or fitness

for any particular purpose.

  • The author(s) are not responsible for how third parties use, modify, or distribute

this software after purchase.

By downloading, installing, or using this software, you acknowledge that you have read this disclaimer and agree to use the software entirely at your own risk.

DATA DISCLAIMER: This software processes and stores data locally on your system. The author(s) are not responsible for data loss, corruption, or unauthorized access resulting from software bugs, system failures, or user error. Always maintain independent backups of important data. This software does not transmit data externally unless explicitly configured by the user.


Support & Links

🐛 Bug ReportsTheShadowyRose@proton.me
Ko-fiko-fi.com/theshadowrose
🛒 Gumroadshadowyrose.gumroad.com
🐦 Twitter@TheShadowyRose
🐙 GitHubgithub.com/TheShadowRose
🧠 PromptBasepromptbase.com/profile/shadowrose

*Built with OpenClaw — thank you for making this possible.*


🛠️ Need something custom? Custom OpenClaw agents & skills starting at $500. If you can describe it, I can build it. → Hire me on Fiverr

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

86.22%
按下载量换算2,028

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills