Acrid Skill Creator
Skill by acrid-auto
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/acrid-auto/acrid-skill-creatorSKILL: skill-creator
Description
The foundational meta-skill that architects and generates production-grade agent skills from natural language. This is the factory floor — every skill in the Acrid ecosystem is born here. It doesn't just scaffold files; it thinks through design, enforces quality gates, generates battle-tested logic, and outputs skills that work on first run.
Usage
Invoke this skill when:
- You need to create a new capability, tool integration, or automation
- You're converting a manual workflow into a repeatable skill
- You want to prototype a skill idea rapidly with full documentation
- You need to refactor or rebuild an existing skill from scratch
Trigger phrases: "Create a skill...", "Build me a skill...", "I need a skill that...", "Scaffold a new skill for..."
Inputs
| Parameter | Required | Format | Description |
|---|---|---|---|
name | Yes | kebab-case | Skill identifier (e.g., stock-checker, deploy-monitor) |
description | Yes | Natural language | What the skill does, in detail |
requirements | No | Natural language | Tools, APIs, constraints, languages, auth needs |
outputs | No | Natural language | What the skill should return (defaults to structured text) |
complexity | No | simple | standard | advanced | Determines scaffold depth (default: standard) |
Steps
Phase 1: Intelligence Gathering
-
Parse the request — Extract:
- Core purpose (single sentence, verb-first: "Fetches...", "Monitors...", "Generates...")
- Required external APIs or services
- Required tools (Bash, WebFetch, WebSearch, Read, Write, Grep, Glob, etc.)
- Input parameters with types and validation rules
- Expected output format (JSON, markdown, plain text, file)
- Error scenarios (API down, bad input, rate limits, auth failure, empty results)
- Edge cases specific to the domain
-
Determine complexity tier:
- Simple: Single tool, no external APIs, <20 lines of logic (e.g., file formatter)
- Standard: 1-2 tools, may call external APIs, needs error handling (e.g., stock checker)
- Advanced: Multiple tools, chained API calls, stateful logic, helper scripts required (e.g., deploy pipeline)
-
Identify the execution model:
- Direct: Skill logic runs entirely within SKILL.md steps (preferred for simple/standard)
- Scripted: Complex logic lives in
src/scripts, SKILL.md orchestrates (required for advanced) - Hybrid: SKILL.md handles orchestration, delegates specific computations to scripts
Phase 2: Architecture
-
Design the skill contract:
- Define exact input schema with types, defaults, and validation
- Define exact output schema — what does success look like?
- Define error responses — what does each failure mode return?
- Map the dependency chain (what calls what, in what order)
-
Scaffold the directory:
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-acrid-auto-acrid-skill-creator": {
"enabled": true,
"auto_update": true
}
}
}