← Back to Skills Marketplace
acilgit

Image Prompt Memory

by acilgit · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
103
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install image-prompt-memory
Description
Stores and retrieves successful image generation prompts by category, style, and keywords for quick reuse and recommendation.
README (SKILL.md)

图片提示词记忆库

用途

保存成功的图片生成提示词,下次生成时快速调用。

数据文件

/root/.openclaw/workspace/data/prompt_library.json

数据结构

{
  "prompts": [
    {
      "id": 1,
      "category": "商品图",
      "style": "日本简约风格",
      "description": "描述",
      "positive_prompt": "正向提示词",
      "negative_prompt": "反向提示词",
      "aspect_ratio": "1:1",
      "image_size": "1K",
      "feedback": "用户反馈",
      "created_at": "时间戳"
    }
  ],
  "styles": [
    {
      "id": 1,
      "name": "风格名",
      "characteristics": "特点",
      "tags": ["标签1", "标签2"]
    }
  ]
}

使用方法

1. 保存新提示词

用户确认图片满意后,自动保存到库中。

2. 查询相似提示词

根据用户需求搜索匹配的提示词。

3. 推荐提示词

根据类别/风格推荐最佳提示词。

搜索逻辑

  • 按风格标签搜索
  • 按类别搜索
  • 按描述关键词搜索
Usage Guidance
This skill appears to do what it says (store and recommend image prompts) but you should verify a few things before enabling it: 1) Confirm where you want prompt data stored — the SKILL.md hardcodes /root/.openclaw/workspace/data/prompt_library.json but the registry claims no config paths. If you don't want files under /root, change the path or deny write access. 2) Ask whether automatic saving is desirable: automatic writes can persist sensitive prompts; prefer an explicit save/consent flow. 3) Because the skill is instruction-only, review agent behavior around file I/O and ensure the agent runs with limited filesystem permissions if you want to contain risk. 4) If you require an audit trail, inspect the file after first use to confirm format and contents. If the author cannot explain why the path is hardcoded or provide a configurable storage location, treat the mismatch as a red flag.
Capability Analysis
Type: OpenClaw Skill Name: image-prompt-memory Version: 1.0.0 The skill is a straightforward prompt management tool designed to store and retrieve image generation prompts in a local JSON file (`prompt_library.json`). It contains no executable code, network requests, or suspicious instructions, and its behavior aligns perfectly with its stated purpose of maintaining a memory library for successful prompts.
Capability Assessment
Purpose & Capability
The name/description match the instructions: storing and searching prompt entries locally is coherent with an 'Image Prompt Memory' skill. However the SKILL.md hardcodes a data file path (/root/.openclaw/workspace/data/prompt_library.json) even though the skill metadata declares no required config paths — this mismatch should be clarified.
Instruction Scope
The instructions direct the agent to automatically save successful prompts to a specific file and to perform searches and recommendations locally. '自动保存' (automatic saving) could result in persistent storage of user-provided prompts without an explicit opt-in per save. The doc also assumes read/write access to a root-owned workspace path, which may be unexpected.
Install Mechanism
This is an instruction-only skill with no install spec and no code files — lowest install risk. Nothing is downloaded or written during installation according to the registry.
Credentials
No environment variables or credentials are requested, which is appropriate. However, the runtime instructions reference and require write/read access to a specific filesystem path under /root that was not declared in 'required config paths'. That undeclared file-path requirement is a proportionality mismatch and could be surprising for users or administrators.
Persistence & Privilege
The skill is not marked always:true, so it won't be force-included, but the instructions explicitly call for automatic saving of prompts. Combined with the platform default allowing autonomous invocation, the skill could persist user data without per-action confirmation unless the agent enforces prompt/consent rules.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install image-prompt-memory
  3. After installation, invoke the skill by name or use /image-prompt-memory
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
- Initial release of 图片提示词记忆库 (image prompt memory skill). - Enables saving successful image generation prompts for future reuse. - Stores prompts and styles in a structured JSON database. - Allows users to search prompts by style tags, category, or description keywords. - Recommends prompts based on category or style for faster creation workflows. - Prompts are automatically saved upon user satisfaction with generated images.
Metadata
Slug image-prompt-memory
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Image Prompt Memory?

Stores and retrieves successful image generation prompts by category, style, and keywords for quick reuse and recommendation. It is an AI Agent Skill for Claude Code / OpenClaw, with 103 downloads so far.

How do I install Image Prompt Memory?

Run "/install image-prompt-memory" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Image Prompt Memory free?

Yes, Image Prompt Memory is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Image Prompt Memory support?

Image Prompt Memory is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Image Prompt Memory?

It is built and maintained by acilgit (@acilgit); the current version is v1.0.0.

💬 Comments