Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计通过

prompt-engineering及时工程

Agent Skill

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

总安装

333

周安装

14

GitHub Stars

4

下载量

116
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:prompt-engineering(及时工程)
来源仓库:https://github.com/alphaonedev/openclaw-graph
仓库路径:skills/prompt-engineering
安装命令:
npx skills add https://github.com/alphaonedev/openclaw-graph --skill prompt-engineering
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/alphaonedev/openclaw-graph --skill prompt-engineering

简介

prompt-engineering 用于优化 AI 提示词以提升输出质量与任务准确性,适合 NLP 和代码生成场景。

  • 支持链式思维提示、少样本学习等技术,帮助模型更清晰地理解复杂指令。
  • 可用于聊天机器人、内容生成等需要高精度响应的应用中,减少幻觉和模糊回答。
  • 使用时需保留真实业务约束,避免将示例当作硬性规则,防止行为偏差。
  • 涉及自动执行时,应在提示词中明确步骤确认与失败处理机制,确保可控性。

SKILL.md

prompt-engineering

Purpose

This skill enables OpenClaw to craft and optimize prompts for AI models, improving output quality, accuracy, and efficiency in tasks like text generation, classification, or code completion. It uses techniques such as chain-of-thought prompting and few-shot learning to fine-tune interactions with LLMs.

When to Use

Use this skill when AI outputs are suboptimal, such as vague responses, hallucinations, or poor performance in NLP tasks. Apply it for model fine-tuning, debugging AI behavior, or integrating prompts into applications like chatbots or automated content generators.

Key Capabilities

  • Generate prompt templates with variables (e.g., {input_text}) for dynamic reuse.
  • Optimize prompts using metrics like perplexity or response length via built-in analyzers.
  • Support for popular models like GPT-4 or BERT through adapters.
  • Iterative refinement: Automatically suggest variations based on feedback loops.
  • Integration with embedding services for semantic similarity checks using the provided embedding hint.

Usage Patterns

Always start with a base prompt and iterate: 1) Define the prompt structure, 2) Test with sample inputs, 3) Analyze outputs, 4) Refine using optimization flags. For CLI, chain commands like openclaw prompt create followed by openclaw prompt test. In code, wrap prompts in functions for modular reuse. Use JSON config files for complex setups, e.g., specify "model": "gpt-4" and "temperature": 0.7.

Common Commands/API

Use the OpenClaw CLI for quick operations; authenticate via $OPENCLAW_API_KEY environment variable. For API, send requests to https://api.openclaw.ai/v1/prompts with JSON payloads.

  • CLI Command: Create a prompt openclaw prompt create --name myPrompt --template "Summarize {text} in 50 words" --model gpt-4 This generates a reusable prompt template.
  • CLI Command: Test and optimize a prompt openclaw prompt test --prompt-id 123 --input "Long article text here" --optimize perplexity Runs the prompt and applies optimization based on the specified metric.
  • API Endpoint: Create prompt (POST to /v1/prompts) Headers: Authorization: Bearer $OPENCLAW_API_KEY Body: {"name": "myPrompt", "template": "Translate {text} to French", "model": "gpt-4"} Response includes a prompt ID for future references.
  • Code Snippet: Basic prompt execution in Python import openclaw client = openclaw.Client(api_key=os.environ['OPENCLAW_API_KEY']) response = client.prompts.execute(prompt_id='123', input_data={'text': 'Hello world'})

Integration Notes

Integrate this skill by loading prompts into other OpenClaw skills or external tools. For example, reference a prompt ID in a workflow config file like: {"skill": "prompt-engineering", "prompt_id": "123", "dependencies": ["aimlops/data-processing"]} When combining with services like Hugging Face, use the embedding hint in queries, e.g., pass "embedding_hint": "prompt engineering ai ml nlp optimization" to match related vectors. Ensure API keys are set as env vars (e.g., $HUGGINGFACE_API_KEY) for cross-service calls. Always validate prompt outputs against schemas to prevent injection risks.

Error Handling

Common errors include authentication failures (e.g., 401 Unauthorized: ensure $OPENCLAW_API_KEY is set and valid), invalid prompt structures (e.g., missing variables: use openclaw prompt validate --id 123 to check), or model timeouts (e.g., rate limits: retry with exponential backoff). For API errors, parse the response JSON for codes like "error_code": "INVALID_TEMPLATE" and fix by editing the template string. In code, wrap calls in try-except blocks:

try:
    response = client.prompts.execute(...)
except openclaw.errors.AuthenticationError:
    print("Set $OPENCLAW_API_KEY and retry")

Concrete Usage Examples

  1. Text Summarization Prompt: To summarize articles, create a prompt with: openclaw prompt create --name summaryPrompt --template "Summarize the following text: {text} in under 100 words" --model gpt-4. Then test: openclaw prompt test --prompt-id <returned_id> --input "This is a long article about AI...". This yields a concise summary; iterate by adding --optimize length if outputs are too verbose.
  2. Code Generation Prompt: For generating Python functions, use: openclaw prompt create --name codePrompt --template "Write a Python function that {task_description}" --model gpt-4. Execute with: openclaw prompt test --prompt-id <id> --input "sorts a list of numbers". Refine by checking for syntax errors and re-running with variations like --template "Write secure Python function that {task_description}" to add safety.

Graph Relationships

  • Related to cluster: aimlops (e.g., shares dependencies with data-processing and model-training skills).
  • Connected via tags: ai (links to general AI tools), ml (integrates with machine learning workflows), nlp (direct overlap for language tasks), prompts (core relation to prompt optimization skills).
  • Embedding relationships: Uses embedding hint for semantic links, e.g., to nlp-processing skill for vector-based prompt enhancements.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.91%
按下载量换算42

Claude

32.18%
按下载量换算37

Cursor

17.33%
按下载量换算20

Gemini CLI

9.44%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills