skills$openclaw/prompt-engineering-openai-api-f7c24501
hhhh124hhhh6.8k

by hhhh124hhhh

prompt-engineering-openai-api-f7c24501 – OpenClaw Skill

prompt-engineering-openai-api-f7c24501 is an OpenClaw Skills integration for coding workflows. Log in [Sign up](https://platform.openai.com/signup)

6.8k stars956 forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameprompt-engineering-openai-api-f7c24501
descriptionLog in [Sign up](https://platform.openai.com/signup) OpenClaw Skills integration.
ownerhhhh124hhhh
repositoryhhhh124hhhh/prompt-engineering-openai-api-f7c24501
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @hhhh124hhhh/prompt-engineering-openai-api-f7c24501
last updatedFeb 7, 2026

Maintainer

hhhh124hhhh

hhhh124hhhh

Maintains prompt-engineering-openai-api-f7c24501 in the OpenClaw Skills directory.

View GitHub profile
File Explorer
3 files
.
_meta.json
313 B
metadata.json
872 B
SKILL.md
2.5 KB
SKILL.md

name: prompt-engineering-openai-api-f7c24501 description: Log in Sign up

Prompt engineering

Enhance results with prompt engineering strategies.

Copy page

With the OpenAI API, you can use a large language model to generate text from a prompt, as you might using ChatGPT. Models can generate almost any kind of text response—like code, mathematical equations, structured JSON data, or human-like prose.

Here's a simple example using the [Responses ... metadata: {"clawdbot": {"type": "text prompt", "inferred_type": "Text Prompt", "source": "firecrawl", "original_url": "https://platform.openai.com/docs/guides/prompt-engineering", "quality_score": 0}}

Prompt engineering | OpenAI API

描述

Log in Sign up

Prompt engineering

Enhance results with prompt engineering strategies.

Copy page

With the OpenAI API, you can use a large language model to generate text from a prompt, as you might using ChatGPT. Models can generate almost any kind of text response—like code, mathematical equations, structured JSON data, or human-like prose.

Here's a simple example using the [Responses ...

来源

Prompt

Log in [Sign up](https://platform.openai.com/signup)

# Prompt engineering

Enhance results with prompt engineering strategies.

Copy page

With the OpenAI API, you can use a [large language model](https://platform.openai.com/docs/models) to generate text from a prompt, as you might using [ChatGPT](https://chatgpt.com/). Models can generate almost any kind of text response—like code, mathematical equations, structured JSON data, or human-like prose.

Here's a simple example using the [Responses API](https://platform.openai.com/docs/api-reference/responses).

Generate text from a simple prompt

javascript

1 2 3 4 5 6 7 8 9 import OpenAI from "openai"; const client = new OpenAI();

const response = await client.responses.create({ model: "gpt-5.2", input: "Write a one-sentence bedtime story about a unicorn." });

console.log(response.output_text);

1 2 3 4 5 6 7 8 9 from openai import OpenAI client = OpenAI()

response = client.responses.create( model="gpt-5.2", ...


---

## 标签
- AI
- Text Prompt
- prompt
- 生成
- clawdbot

---

*Skill generated by Clawdbot*
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install prompt-engineering-openai-api-f7c24501?

Run openclaw add @hhhh124hhhh/prompt-engineering-openai-api-f7c24501 in your terminal. This installs prompt-engineering-openai-api-f7c24501 into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/hhhh124hhhh/prompt-engineering-openai-api-f7c24501. Review commits and README documentation before installing.