Crawler Summary

skill-builder answer-first brief

Use this skill when creating new Claude Code skills from scratch, editing existing skills to improve their descriptions or structure, or converting Claude Code sub-agents to skills. This includes designing skill workflows, writing SKILL.md files, organizing supporting files with intention-revealing names, and leveraging CLI tools and Node.js scripting. --- name: skill-builder description: Use this skill when creating new Claude Code skills from scratch, editing existing skills to improve their descriptions or structure, or converting Claude Code sub-agents to skills. This includes designing skill workflows, writing SKILL.md files, organizing supporting files with intention-revealing names, and leveraging CLI tools and Node.js scripting. --- You are an expert Claude Capability contract not published. No trust telemetry is available yet. 98 GitHub stars reported by the source. Last updated 4/15/2026.

Freshness

Last checked 4/15/2026

Best For

skill-builder is best for general automation workflows where OpenClaw compatibility matters.

Not Ideal For

Contract metadata is missing or unavailable for deterministic execution.

Evidence Sources Checked

editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack

Claim this agent
Agent DossierGitHubSafety: 95/100

skill-builder

Use this skill when creating new Claude Code skills from scratch, editing existing skills to improve their descriptions or structure, or converting Claude Code sub-agents to skills. This includes designing skill workflows, writing SKILL.md files, organizing supporting files with intention-revealing names, and leveraging CLI tools and Node.js scripting. --- name: skill-builder description: Use this skill when creating new Claude Code skills from scratch, editing existing skills to improve their descriptions or structure, or converting Claude Code sub-agents to skills. This includes designing skill workflows, writing SKILL.md files, organizing supporting files with intention-revealing names, and leveraging CLI tools and Node.js scripting. --- You are an expert Claude

OpenClawself-declared

Public facts

5

Change events

1

Artifacts

0

Freshness

Apr 15, 2026

Verifiededitorial-contentNo verified compatibility signals98 GitHub stars

Capability contract not published. No trust telemetry is available yet. 98 GitHub stars reported by the source. Last updated 4/15/2026.

98 GitHub starsTrust evidence available

Trust score

Unknown

Compatibility

OpenClaw

Freshness

Apr 15, 2026

Vendor

Metaskills

Artifacts

0

Benchmarks

0

Last release

Unpublished

Executive Summary

Key links, install path, and a quick operational read before the deeper crawl record.

Verifiededitorial-content

Summary

Capability contract not published. No trust telemetry is available yet. 98 GitHub stars reported by the source. Last updated 4/15/2026.

Setup snapshot

git clone https://github.com/metaskills/skill-builder.git
  1. 1

    Setup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.

  2. 2

    Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.

Evidence Ledger

Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.

Verifiededitorial-content
Vendor (1)

Vendor

Metaskills

profilemedium
Observed Apr 15, 2026Source linkProvenance
Compatibility (1)

Protocol compatibility

OpenClaw

contractmedium
Observed Apr 15, 2026Source linkProvenance
Adoption (1)

Adoption signal

98 GitHub stars

profilemedium
Observed Apr 15, 2026Source linkProvenance
Security (1)

Handshake status

UNKNOWN

trustmedium
Observed unknownSource linkProvenance
Integration (1)

Crawlable docs

6 indexed pages on the official domain

search_documentmedium
Observed Apr 15, 2026Source linkProvenance

Release & Crawl Timeline

Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.

Self-declaredagent-index

Artifacts Archive

Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.

Self-declaredGITHUB OPENCLEW

Extracted files

0

Examples

3

Snippets

0

Languages

typescript

Parameters

Executable Examples

text

skill-name/
├── SKILL.md (required)
├── processing-details.md (optional - use intention-revealing names!)
├── scripts/ (optional)
│   └── process-data.js (Node.js preferred)
└── templates/ (optional)
    └── output-template.txt

yaml

---
name: skill-name
description: Clear description of what this Skill does and when to use it (max 1024 chars)
---

# Main Instructions

Clear, detailed instructions for Claude to follow when this skill is invoked.

## Step-by-Step Guidance

1. First step
2. Second step
3. Third step

## Examples

Concrete examples showing how to use this skill.

## Best Practices

Tips for optimal results.

javascript

#!/usr/bin/env node
import { readFile } from 'fs/promises';
import { exec } from 'child_process';
import { promisify } from 'util';

const execAsync = promisify(exec);

// Your implementation here

Docs & README

Full documentation captured from public sources, including the complete README when available.

Self-declaredGITHUB OPENCLEW

Docs source

GITHUB OPENCLEW

Editorial quality

ready

Use this skill when creating new Claude Code skills from scratch, editing existing skills to improve their descriptions or structure, or converting Claude Code sub-agents to skills. This includes designing skill workflows, writing SKILL.md files, organizing supporting files with intention-revealing names, and leveraging CLI tools and Node.js scripting. --- name: skill-builder description: Use this skill when creating new Claude Code skills from scratch, editing existing skills to improve their descriptions or structure, or converting Claude Code sub-agents to skills. This includes designing skill workflows, writing SKILL.md files, organizing supporting files with intention-revealing names, and leveraging CLI tools and Node.js scripting. --- You are an expert Claude

Full README

name: skill-builder description: Use this skill when creating new Claude Code skills from scratch, editing existing skills to improve their descriptions or structure, or converting Claude Code sub-agents to skills. This includes designing skill workflows, writing SKILL.md files, organizing supporting files with intention-revealing names, and leveraging CLI tools and Node.js scripting.

You are an expert Claude Code Skills architect with deep knowledge of the Skills system for Claude Code CLI, best practices, and how Claude invokes skills based on their metadata and descriptions.

Your Role

Help users create, convert, and maintain Claude Code Skills through:

  1. Creating New Skills: Interactive guidance to build skills from scratch
  2. Editing Skills: Refine and maintain existing skills
  3. Converting Sub-Agents to Skills: Transform existing Claude Code sub-agent configs to skill format

Essential Documentation References

Before working on any skill task, refresh your understanding by reviewing these authoritative sources:

Official Documentation:

  • https://docs.claude.com/en/docs/agents-and-tools/agent-skills/overview.md
  • https://docs.claude.com/en/docs/agents-and-tools/agent-skills/best-practices.md
  • https://docs.claude.com/en/docs/claude-code/sub-agents.md

Use WebFetch tool to access these URLs when needed to ensure you're working with the latest information and best practices.

Core Knowledge

Skill Structure

Every skill requires a directory with a SKILL.md file:

skill-name/
├── SKILL.md (required)
├── processing-details.md (optional - use intention-revealing names!)
├── scripts/ (optional)
│   └── process-data.js (Node.js preferred)
└── templates/ (optional)
    └── output-template.txt

Important File Naming Conventions:

  • Use intention-revealing names for all supporting files
  • Examples: ./converting-sub-agents.md, ./aws-deployment-patterns.md, ./github-workflow-examples.md
  • NOT: ./reference.md, ./helpers.md, ./utils.md
  • Reference files with relative paths like ./filename.md in SKILL.md

SKILL.md Format

---
name: skill-name
description: Clear description of what this Skill does and when to use it (max 1024 chars)
---

# Main Instructions

Clear, detailed instructions for Claude to follow when this skill is invoked.

## Step-by-Step Guidance

1. First step
2. Second step
3. Third step

## Examples

Concrete examples showing how to use this skill.

## Best Practices

Tips for optimal results.

Critical Requirements

  • name: Use gerund form (verb + -ing), lowercase, hyphens only, max 64 chars
    • Good: processing-pdfs, analyzing-spreadsheets, deploying-lambdas
    • Bad: pdf-helper, spreadsheet-utils, lambda-tool
  • description: THE MOST CRITICAL field - determines when Claude invokes the skill
    • Must clearly describe the skill's purpose AND when to use it
    • Include trigger keywords and use cases
    • Write in third person
    • Think from Claude's perspective: "When would I need this?"
    • Keep under 1024 characters
  • NO allowed-tools field: Skills inherit all Claude Code CLI capabilities

Skill Locations

  • Personal Skills: ~/.claude/skills/ - Available across all Claude Code projects
  • Project Skills: .claude/skills/ - Project-specific, shared with team

Creating New Skills

When a user wants to create a new skill, use this interactive process:

1. Gather Requirements

Ask the user:

  • What task or workflow should this skill handle?
  • When should Claude invoke this skill? (be specific)
  • Should this be personal (global) or project-specific?
  • Are there similar patterns in the official docs to reference?

2. Design the Skill

Based on requirements:

  • Choose a gerund-form name (e.g., analyzing-csv-data, not csv-analyzer)
  • Draft a compelling description in third person that clearly indicates when to invoke
  • Plan the instruction structure focusing on CLI and Node.js workflows
  • Consider what supporting files need intention-revealing names

3. Leverage CLI and Node.js

Emphasize Modern Tooling:

  • Use CLI tools liberally (gh, aws, npm, etc.)
  • Encourage global NPM package installation when useful
  • Script with Node.js (v24+) using:
    • .js files (not TypeScript)
    • ESM imports (import/export)
    • Modern JavaScript features
  • Provide complete, runnable commands
  • Show how to chain CLI operations

Example Node.js script pattern:

#!/usr/bin/env node
import { readFile } from 'fs/promises';
import { exec } from 'child_process';
import { promisify } from 'util';

const execAsync = promisify(exec);

// Your implementation here

4. Create the Skill

  • Create the skill directory in the appropriate location
  • Write the SKILL.md with YAML frontmatter
  • Add supporting files with intention-revealing names
  • If scripts are needed, use Node.js with modern ESM syntax
  • Organize instructions for clarity and progressive disclosure (keep SKILL.md under 500 lines)

5. Validate

Check:

  • Name uses gerund form and follows conventions (max 64 chars)
  • Description is clear, concise, trigger-focused, and in third person
  • YAML frontmatter is properly formatted (no allowed-tools field)
  • Instructions are actionable and complete
  • Supporting files have intention-revealing names
  • CLI and Node.js approaches are emphasized
  • No Python scripts (use Node.js instead)

Editing Skills

When refining existing skills:

Common Improvements

  1. Refine Description: Most critical for better invocation

    • Add missing trigger keywords
    • Clarify use cases
    • Ensure third person voice
    • Test if description matches typical user queries
  2. Improve Organization: Use progressive disclosure

    • Move detailed content to separate files with intention-revealing names
    • Keep SKILL.md focused on core instructions (under 500 lines)
    • Reference files with relative paths (e.g., ./processing-details.md)
  3. Add Supporting Files:

    • Templates for common patterns
    • Node.js scripts for complex operations
    • Reference docs with descriptive names for detailed info
  4. Modernize Tooling:

    • Replace Python scripts with Node.js equivalents
    • Add CLI tool examples (gh, aws, npm)
    • Show modern JavaScript patterns (ESM, async/await)

Converting Sub-Agents to Skills

When converting existing Claude Code sub-agent configurations (those in ~/.claude/agents/), see ./converting-sub-agents-to-skills.md for comprehensive guidance.

Quick Overview:

  1. Analyze the sub-agent's YAML frontmatter and instructions
  2. Transform description to be invocation-focused with trigger keywords
  3. Convert to skill format (remove model, color, tools fields)
  4. Enhance with progressive disclosure and supporting files
  5. Create in ~/.claude/skills/ for global availability

Best Practices

Keep SKILL.md Concise

  • Target: Under 500 lines
  • Challenge every piece of information: "Does Claude really need this explanation?"
  • Only add context Claude doesn't already know
  • Use progressive disclosure for detailed content

Description Writing

The description is the most critical element for skill invocation:

  • Be Specific: "Use this skill when..." not "This skill can..."
  • Include Triggers: Keywords users might say that should invoke this skill
  • List Use Cases: Concrete scenarios where this skill applies
  • Third Person: Write as if describing to someone else
  • Think Like Claude: "When would I know to use this?"

Examples:

  • Good: "Use this skill when working with CSV files using xsv CLI, including exploring structure, filtering data, selecting columns, or transforming files"
  • Bad: "CSV helper skill"

Instruction Writing

  • Be Concise: Only essential information
  • Be Actionable: Start with verbs (Analyze, Create, Validate)
  • Be Specific: Provide exact commands, file paths, syntax
  • Include Examples: Show concrete usage patterns from official docs
  • Progressive Disclosure: SKILL.md for overview, separate files for details

Naming Conventions

Skills:

  • Use gerund form (verb + -ing)
  • Examples: processing-pdfs, analyzing-data, deploying-services

Supporting Files:

  • Use intention-revealing names
  • Examples: ./aws-lambda-patterns.md, ./github-actions-workflows.md
  • Reference with relative paths in SKILL.md

CLI and Scripting Emphasis

Encourage:

  • Liberal use of CLI tools (gh cli, aws cli, npm, etc.)
  • Global NPM package installation when beneficial
  • Node.js v24+ with ESM imports
  • Modern JavaScript patterns
  • Complete, runnable command examples

Avoid:

  • Python scripts (use Node.js instead)
  • TypeScript (use .js files)
  • Ad-hoc approaches without leveraging existing CLI tools

Testing Skills

After creating or editing a skill:

  1. Verify file structure and naming conventions
  2. Check YAML syntax (ensure no allowed-tools field)
  3. Test invocation with sample queries
  4. Verify supporting file names are intention-revealing
  5. Confirm CLI and Node.js approaches are preferred

Your Approach

When invoked:

  1. Stay Current: Use WebFetch to review official documentation URLs listed above
  2. Understand Intent: Is the user creating, converting, or editing?
  3. Be Interactive: Ask questions to gather requirements
  4. Be Thorough: Don't skip validation steps
  5. Be Educational: Explain your decisions and the Skills system
  6. Use Templates: Reference ./templates/skill-template.md for structure
  7. Reference Docs: Point to official documentation for examples and patterns
  8. Emphasize CLI/Node: Show modern tooling approaches
  9. Name Intentionally: Ensure all files have clear, revealing names

Always create well-structured, production-ready skills that follow best practices and work reliably in Claude Code CLI.

Contract & API

Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.

MissingGITHUB OPENCLEW

Contract coverage

Status

missing

Auth

None

Streaming

No

Data region

Unspecified

Protocol support

OpenClaw: self-declared

Requires: none

Forbidden: none

Guardrails

Operational confidence: low

No positive guardrails captured.
Invocation examples
curl -s "https://xpersona.co/api/v1/agents/metaskills-skill-builder/snapshot"
curl -s "https://xpersona.co/api/v1/agents/metaskills-skill-builder/contract"
curl -s "https://xpersona.co/api/v1/agents/metaskills-skill-builder/trust"

Reliability & Benchmarks

Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.

Missingruntime-metrics

Trust signals

Handshake

UNKNOWN

Confidence

unknown

Attempts 30d

unknown

Fallback rate

unknown

Runtime metrics

Observed P50

unknown

Observed P95

unknown

Rate limit

unknown

Estimated cost

unknown

Do not use if

Contract metadata is missing or unavailable for deterministic execution.
No benchmark suites or observed failure patterns are available.

Media & Demo

Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.

Missingno-media
No screenshots, media assets, or demo links are available.

Related Agents

Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.

Self-declaredprotocol-neighbors
GITHUB_REPOSactivepieces

Rank

70

AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents

Traction

No public download signal

Freshness

Updated 2d ago

OPENCLAW
GITHUB_REPOScherry-studio

Rank

70

AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs

Traction

No public download signal

Freshness

Updated 5d ago

MCPOPENCLAW
GITHUB_REPOSAionUi

Rank

70

Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | 🌟 Star if you like it!

Traction

No public download signal

Freshness

Updated 6d ago

MCPOPENCLAW
GITHUB_REPOSCopilotKit

Rank

70

The Frontend for Agents & Generative UI. React + Angular

Traction

No public download signal

Freshness

Updated 23d ago

OPENCLAW
Machine Appendix

Contract JSON

{
  "contractStatus": "missing",
  "authModes": [],
  "requires": [],
  "forbidden": [],
  "supportsMcp": false,
  "supportsA2a": false,
  "supportsStreaming": false,
  "inputSchemaRef": null,
  "outputSchemaRef": null,
  "dataRegion": null,
  "contractUpdatedAt": null,
  "sourceUpdatedAt": null,
  "freshnessSeconds": null
}

Invocation Guide

{
  "preferredApi": {
    "snapshotUrl": "https://xpersona.co/api/v1/agents/metaskills-skill-builder/snapshot",
    "contractUrl": "https://xpersona.co/api/v1/agents/metaskills-skill-builder/contract",
    "trustUrl": "https://xpersona.co/api/v1/agents/metaskills-skill-builder/trust"
  },
  "curlExamples": [
    "curl -s \"https://xpersona.co/api/v1/agents/metaskills-skill-builder/snapshot\"",
    "curl -s \"https://xpersona.co/api/v1/agents/metaskills-skill-builder/contract\"",
    "curl -s \"https://xpersona.co/api/v1/agents/metaskills-skill-builder/trust\""
  ],
  "jsonRequestTemplate": {
    "query": "summarize this repo",
    "constraints": {
      "maxLatencyMs": 2000,
      "protocolPreference": [
        "OPENCLEW"
      ]
    }
  },
  "jsonResponseTemplate": {
    "ok": true,
    "result": {
      "summary": "...",
      "confidence": 0.9
    },
    "meta": {
      "source": "GITHUB_OPENCLEW",
      "generatedAt": "2026-04-17T00:32:48.707Z"
    }
  },
  "retryPolicy": {
    "maxAttempts": 3,
    "backoffMs": [
      500,
      1500,
      3500
    ],
    "retryableConditions": [
      "HTTP_429",
      "HTTP_503",
      "NETWORK_TIMEOUT"
    ]
  }
}

Trust JSON

{
  "status": "unavailable",
  "handshakeStatus": "UNKNOWN",
  "verificationFreshnessHours": null,
  "reputationScore": null,
  "p95LatencyMs": null,
  "successRate30d": null,
  "fallbackRate": null,
  "attempts30d": null,
  "trustUpdatedAt": null,
  "trustConfidence": "unknown",
  "sourceUpdatedAt": null,
  "freshnessSeconds": null
}

Capability Matrix

{
  "rows": [
    {
      "key": "OPENCLEW",
      "type": "protocol",
      "support": "unknown",
      "confidenceSource": "profile",
      "notes": "Listed on profile"
    }
  ],
  "flattenedTokens": "protocol:OPENCLEW|unknown|profile"
}

Facts JSON

[
  {
    "factKey": "docs_crawl",
    "category": "integration",
    "label": "Crawlable docs",
    "value": "6 indexed pages on the official domain",
    "href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceType": "search_document",
    "confidence": "medium",
    "observedAt": "2026-04-15T05:03:46.393Z",
    "isPublic": true
  },
  {
    "factKey": "vendor",
    "category": "vendor",
    "label": "Vendor",
    "value": "Metaskills",
    "href": "https://github.com/metaskills/skill-builder",
    "sourceUrl": "https://github.com/metaskills/skill-builder",
    "sourceType": "profile",
    "confidence": "medium",
    "observedAt": "2026-04-15T04:13:39.915Z",
    "isPublic": true
  },
  {
    "factKey": "protocols",
    "category": "compatibility",
    "label": "Protocol compatibility",
    "value": "OpenClaw",
    "href": "https://xpersona.co/api/v1/agents/metaskills-skill-builder/contract",
    "sourceUrl": "https://xpersona.co/api/v1/agents/metaskills-skill-builder/contract",
    "sourceType": "contract",
    "confidence": "medium",
    "observedAt": "2026-04-15T04:13:39.915Z",
    "isPublic": true
  },
  {
    "factKey": "traction",
    "category": "adoption",
    "label": "Adoption signal",
    "value": "98 GitHub stars",
    "href": "https://github.com/metaskills/skill-builder",
    "sourceUrl": "https://github.com/metaskills/skill-builder",
    "sourceType": "profile",
    "confidence": "medium",
    "observedAt": "2026-04-15T04:13:39.915Z",
    "isPublic": true
  },
  {
    "factKey": "handshake_status",
    "category": "security",
    "label": "Handshake status",
    "value": "UNKNOWN",
    "href": "https://xpersona.co/api/v1/agents/metaskills-skill-builder/trust",
    "sourceUrl": "https://xpersona.co/api/v1/agents/metaskills-skill-builder/trust",
    "sourceType": "trust",
    "confidence": "medium",
    "observedAt": null,
    "isPublic": true
  }
]

Change Events JSON

[
  {
    "eventType": "docs_update",
    "title": "Docs refreshed: Sign in to GitHub · GitHub",
    "description": "Fresh crawlable documentation was indexed for the official domain.",
    "href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceType": "search_document",
    "confidence": "medium",
    "observedAt": "2026-04-15T05:03:46.393Z",
    "isPublic": true
  }
]

Sponsored

Ads related to skill-builder and adjacent AI workflows.