ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

Acrid Skill Creator

Skill by acrid-auto

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/acrid-auto/acrid-skill-creator
Or

SKILL: 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

ParameterRequiredFormatDescription
nameYeskebab-caseSkill identifier (e.g., stock-checker, deploy-monitor)
descriptionYesNatural languageWhat the skill does, in detail
requirementsNoNatural languageTools, APIs, constraints, languages, auth needs
outputsNoNatural languageWhat the skill should return (defaults to structured text)
complexityNosimple | standard | advancedDetermines scaffold depth (default: standard)

Steps

Phase 1: Intelligence Gathering

  1. 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
  2. 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)
  3. 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

  1. 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)
  2. Scaffold the directory:

Metadata

Stars4473
Views0
Updated2026-05-01
View Author Profile
AI Skill Finder

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 skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-acrid-auto-acrid-skill-creator": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.