openclaw-plus
A modular super-skill combining developer and web capabilities. Use when the user needs Python execution, package management, git operations, URL fetching, or API interactions. Triggers include requests to run code, install packages, check git status, commit changes, fetch web content, or call APIs. This skill provides a unified workflow for development and web automation tasks.
What this skill does
# OpenClaw+ ๐
A modular super-skill that combines essential developer tools and web capabilities into a unified, powerful workflow.
## Overview
OpenClaw+ integrates seven core capabilities into one streamlined skill:
**Developer Skills:**
- `run_python` - Execute Python code with proper environment management
- `git_status` - Check repository status and track changes
- `git_commit` - Commit changes with meaningful messages
- `install_package` - Install Python packages with dependency handling
**Web Skills:**
- `fetch_url` - Retrieve web content with robust error handling
- `call_api` - Make API requests with authentication and response parsing
This modular design allows you to chain operations efficiently - install packages, run code, fetch data, commit results - all in one cohesive workflow.
---
## When to Use OpenClaw+
Use this skill when the user's request involves:
- Running Python scripts or code snippets
- Installing Python packages (pip, conda, system packages)
- Checking git repository status
- Committing code changes
- Fetching content from URLs
- Making API calls (REST, GraphQL, etc.)
- Combining any of the above in a workflow
**Common patterns:**
- "Install pandas and run this analysis"
- "Fetch data from this API and save it"
- "Check git status and commit my changes"
- "Run this script and call this endpoint"
- "Install these packages, run the code, then commit"
---
## Core Capabilities
### 1. Python Execution (`run_python`)
Execute Python code with proper environment management and output capture.
**Key features:**
- Captures stdout, stderr, and return values
- Handles exceptions gracefully
- Supports multi-line scripts
- Access to installed packages
- Environment variable support
**Usage patterns:**
```python
# Simple execution
result = run_python("print('Hello, world!')")
# With installed packages
run_python("""
import pandas as pd
import numpy as np
data = pd.DataFrame({'a': [1, 2, 3], 'b': [4, 5, 6]})
print(data.describe())
""")
# File operations
run_python("""
with open('output.txt', 'w') as f:
f.write('Results: ...')
""")
```
**Best practices:**
- Always check for syntax errors before execution
- Handle file paths carefully (use absolute paths when needed)
- Capture exceptions and provide clear error messages
- For large scripts, consider creating a .py file first
---
### 2. Package Installation (`install_package`)
Install Python packages with intelligent dependency resolution.
**Key features:**
- Pip package installation
- System package support (apt, brew, etc.)
- Conda environment support
- Dependency conflict detection
- Version pinning
**Usage patterns:**
```bash
# Install single package
install_package("pandas")
# Install specific version
install_package("numpy==1.24.0")
# Install multiple packages
install_package("requests beautifulsoup4 lxml")
# Install from requirements.txt
install_package("-r requirements.txt")
# System packages (when needed)
install_package("libpq-dev", system=True)
```
**Best practices:**
- Always use `--break-system-packages` flag for pip in this environment
- Check if package is already installed before installing
- Handle version conflicts explicitly
- Provide clear feedback on installation success/failure
**Implementation:**
```bash
pip install <package> --break-system-packages
```
---
### 3. Git Status (`git_status`)
Check repository status and track changes.
**Key features:**
- Shows modified, added, deleted files
- Displays untracked files
- Shows current branch
- Indicates if ahead/behind remote
- Supports custom git directories
**Usage patterns:**
```bash
# Check current directory
git_status()
# Check specific directory
git_status("/path/to/repo")
# Parse output for automation
status = git_status()
if "modified:" in status:
print("Changes detected")
```
**Best practices:**
- Always check status before committing
- Parse output to detect specific changes
- Handle cases where directory isn't a git repo
- Provide context about what changed
**Implementation:**
```bash
git status
git diff --stat
git log -1 --oneline
```
---
### 4. Git Commit (`git_commit`)
Commit changes with meaningful messages following best practices.
**Key features:**
- Conventional commit format support
- Multi-line commit messages
- Automatic staging option
- Commit message validation
- Amend support
**Usage patterns:**
```bash
# Simple commit
git_commit("Add new feature")
# Conventional commit
git_commit("feat: add user authentication")
# Multi-line with description
git_commit("""
feat: add data processing pipeline
- Implement CSV reader
- Add data validation
- Create output formatter
""")
# Stage and commit
git_commit("fix: resolve parsing error", stage_all=True)
```
**Best practices:**
- Use conventional commit format: `type(scope): description`
- Types: feat, fix, docs, style, refactor, test, chore
- Keep first line under 50 characters
- Add detailed description if needed
- Reference issue numbers when applicable
**Implementation:**
```bash
git add <files> # if stage_all
git commit -m "<message>"
git log -1 --oneline # confirm commit
```
---
### 5. URL Fetching (`fetch_url`)
Retrieve content from URLs with robust error handling.
**Key features:**
- HTTP/HTTPS support
- Custom headers
- Authentication support
- Redirect following
- Timeout handling
- Response parsing (JSON, XML, HTML, text)
**Usage patterns:**
```python
# Fetch HTML
html = fetch_url("https://example.com")
# Fetch JSON
data = fetch_url("https://api.example.com/data",
parse_json=True)
# With authentication
content = fetch_url("https://api.example.com/protected",
headers={"Authorization": "Bearer TOKEN"})
# With custom timeout
content = fetch_url("https://slow-site.com", timeout=30)
# POST request
response = fetch_url("https://api.example.com/submit",
method="POST",
data={"key": "value"})
```
**Best practices:**
- Always handle network errors gracefully
- Set appropriate timeouts
- Validate URLs before fetching
- Parse response based on content type
- Handle rate limiting
- Respect robots.txt
**Implementation:**
```python
import requests
response = requests.get(url, headers=headers, timeout=timeout)
response.raise_for_status()
return response.text # or response.json()
```
---
### 6. API Calls (`call_api`)
Make API requests with authentication and response parsing.
**Key features:**
- REST API support
- GraphQL support
- Authentication (Bearer, Basic, API Key)
- Request/response logging
- Error handling with retries
- Response validation
**Usage patterns:**
```python
# Simple GET request
data = call_api("https://api.example.com/users")
# With authentication
data = call_api("https://api.example.com/data",
auth_token="your-token")
# POST with JSON body
result = call_api("https://api.example.com/create",
method="POST",
json_data={"name": "John", "age": 30})
# With custom headers
data = call_api("https://api.example.com/endpoint",
headers={"X-Custom-Header": "value"})
# GraphQL query
result = call_api("https://api.example.com/graphql",
method="POST",
json_data={
"query": "{ users { id name } }"
})
```
**Best practices:**
- Validate API keys/tokens before use
- Handle rate limits with exponential backoff
- Parse response format (JSON, XML, etc.)
- Log requests for debugging
- Handle pagination for large datasets
- Validate response schemas
- Use appropriate HTTP methods (GET, POST, PUT, DELETE, PATCH)
**Implementation:**
```python
import requests
headers = {"Authorization": f"Bearer {token}"}
response = requests.request(
method=method,
url=url,
headers=headers,
json=json_data,
timeout=30
)
response.raise_for_status()
return response.json()
```
---
## Workflow Patterns
OpenClaw+ shines when combining multiple capabilities:
### PatterRelated in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only โ no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.