skills$openclaw/gpt
0xterrybit7.0k

by 0xterrybit

gpt – OpenClaw Skill

gpt is an OpenClaw Skills integration for ai ml workflows. OpenAI GPT integration. Chat completions, image generation, embeddings, and fine-tuning via OpenAI API.

7.0k stars10.0k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026ai ml

Skill Snapshot

namegpt
descriptionOpenAI GPT integration. Chat completions, image generation, embeddings, and fine-tuning via OpenAI API. OpenClaw Skills integration.
owner0xterrybit
repository0xterrybit/gpt
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @0xterrybit/gpt
last updatedFeb 7, 2026

Maintainer

0xterrybit

0xterrybit

Maintains gpt in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
440 B
SKILL.md
842 B
SKILL.md

name: gpt description: OpenAI GPT integration. Chat completions, image generation, embeddings, and fine-tuning via OpenAI API. metadata: {"clawdbot":{"emoji":"🤖","always":true,"requires":{"bins":["curl","jq"]},"primaryEnv":"OPENAI_API_KEY"}}

GPT 🤖

OpenAI GPT integration.

Setup

export OPENAI_API_KEY="sk-..."

Features

  • Chat completions (GPT-4, GPT-4o)
  • Image generation (DALL-E)
  • Text embeddings
  • Fine-tuning
  • Assistants API

Usage Examples

"Ask GPT: Explain quantum computing"
"Generate image of a sunset"
"Create embeddings for this text"

API Reference

curl -s https://api.openai.com/v1/chat/completions \
  -H "Authorization: Bearer $OPENAI_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"gpt-4o","messages":[{"role":"user","content":"Hello"}]}'
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 gpt?

Run openclaw add @0xterrybit/gpt in your terminal. This installs gpt 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/0xterrybit/gpt. Review commits and README documentation before installing.