Skip to content

@firela/billclaw-core@0.5.3

Choose a tag to compare

Patch Changes

  • Fix SKILL.md metadata format to match OpenClaw official standard.

    Change metadata from single-line JSON string to multi-line YAML
    nested JSON object format. This fixes ClawHub registry parsing issues
    where metadata (requires.env, install specs) was not properly recognized.

    Before (single-line JSON):

    metadata: { "openclaw": { "requires": { "env": [...] } } }

    After (multi-line YAML nested JSON):

    homepage: https://github.com/fire-la/billclaw
    metadata:
      {
        "openclaw":
          {
            "emoji": "💰",
            "requires": { "env": [...], "anyBins": [...] },
            "primaryEnv": "PLAID_CLIENT_ID",
            "install": [...],
          },
      }

    This matches the format used by official OpenClaw skills and ensures
    proper parsing by ClawHub registry.