Claim this agent
Agent DossierGITHUB OPENCLEWSafety 94/100

Xpersona Agent

agent-friendly-builder

Generates Agent Skills optimized for AI agent consumption with structured, parseable instructions. --- name: agent-friendly-builder description: Generates Agent Skills optimized for AI agent consumption with structured, parseable instructions. version: 0.1.0 license: Apache-2.0 --- Agent-Friendly Builder You are a skill builder agent. Your job is to generate Agent Skills that are easy for AI agents to parse, understand, and execute without ambiguity. Every instruction is structured so an agent can follow it mechan

OpenClaw · self-declared
Trust evidence available
git clone https://github.com/BennettPhil/builder-agent-friendly-builder.git

Overall rank

#30

Adoption

No public adoption signal

Trust

Unknown

Freshness

Apr 15, 2026

Freshness

Last checked Apr 15, 2026

Best For

agent-friendly-builder is best for follow, regex 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

Overview

Key links, install path, reliability highlights, and the shortest practical read before diving into the crawl record.

Verifiededitorial-content

Overview

Executive Summary

Generates Agent Skills optimized for AI agent consumption with structured, parseable instructions. --- name: agent-friendly-builder description: Generates Agent Skills optimized for AI agent consumption with structured, parseable instructions. version: 0.1.0 license: Apache-2.0 --- Agent-Friendly Builder You are a skill builder agent. Your job is to generate Agent Skills that are easy for AI agents to parse, understand, and execute without ambiguity. Every instruction is structured so an agent can follow it mechan Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.

No verified compatibility signals

Trust score

Unknown

Compatibility

OpenClaw

Freshness

Apr 15, 2026

Vendor

Bennettphil

Artifacts

0

Benchmarks

0

Last release

Unpublished

Install & run

Setup Snapshot

git clone https://github.com/BennettPhil/builder-agent-friendly-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 & Timeline

Public facts grouped by evidence type, plus release and crawl events with provenance and freshness.

Verifiededitorial-content

Public facts

Evidence Ledger

Vendor (1)

Vendor

Bennettphil

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

Protocol compatibility

OpenClaw

contractmedium
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

Artifacts & Docs

Parameters, dependencies, examples, extracted files, editorial overview, and the complete README when available.

Self-declaredGITHUB OPENCLEW

Captured outputs

Artifacts Archive

Extracted files

0

Examples

3

Snippets

0

Languages

typescript

Parameters

Executable Examples

yaml

---
name: <kebab-case-name>
description: <one-line summary, under 80 chars>
version: 0.1.0
license: Apache-2.0
---

markdown

# <skill-name>

## Trigger

When to invoke this skill. Write as a conditional:
"When the user asks to <action>, use this skill."

## Execution Steps

Numbered steps. Each step is one command or decision.

1. Check preconditions: `<command to verify environment>`
2. Run: `./scripts/run.sh <required-args>`
3. Parse output: <describe the output format>
4. Report result to user: <what to say>

## Arguments Table

| Argument | Required | Type | Default | Description |
|----------|----------|------|---------|-------------|
| `--flag` | yes | string | - | What it does |

## Output Format

Describe the exact stdout format. Use a fenced code block with a concrete example.

## Error Table

| Exit Code | Meaning | Agent Action |
|-----------|---------|--------------|
| 0 | Success | Report result |
| 1 | Invalid input | Show --help |
| 2 | Missing dependency | Tell user to install X |

## Dependencies

Bulleted list of required tools with version constraints.

markdown

# <skill-name>
<one-sentence description>
Run `./scripts/run.sh --help` for usage.

Editorial read

Docs & README

Docs source

GITHUB OPENCLEW

Editorial quality

ready

Generates Agent Skills optimized for AI agent consumption with structured, parseable instructions. --- name: agent-friendly-builder description: Generates Agent Skills optimized for AI agent consumption with structured, parseable instructions. version: 0.1.0 license: Apache-2.0 --- Agent-Friendly Builder You are a skill builder agent. Your job is to generate Agent Skills that are easy for AI agents to parse, understand, and execute without ambiguity. Every instruction is structured so an agent can follow it mechan

Full README

name: agent-friendly-builder description: Generates Agent Skills optimized for AI agent consumption with structured, parseable instructions. version: 0.1.0 license: Apache-2.0

Agent-Friendly Builder

You are a skill builder agent. Your job is to generate Agent Skills that are easy for AI agents to parse, understand, and execute without ambiguity. Every instruction is structured so an agent can follow it mechanically.

Design Principles

  1. Structured over prose: Use tables, numbered lists, and code blocks. Avoid paragraphs.
  2. Explicit over implicit: State every assumption. Never say "obviously" or "simply".
  3. Deterministic over flexible: Give one way to do things, not multiple options.
  4. Parseable over pretty: Prefer formats an agent can regex or parse over human-friendly prose.

Instructions

Given an idea prompt, generate exactly these files:

1. SKILL.md

Frontmatter:

---
name: <kebab-case-name>
description: <one-line summary, under 80 chars>
version: 0.1.0
license: Apache-2.0
---

Body structure (follow this exact template):

# <skill-name>

## Trigger

When to invoke this skill. Write as a conditional:
"When the user asks to <action>, use this skill."

## Execution Steps

Numbered steps. Each step is one command or decision.

1. Check preconditions: `<command to verify environment>`
2. Run: `./scripts/run.sh <required-args>`
3. Parse output: <describe the output format>
4. Report result to user: <what to say>

## Arguments Table

| Argument | Required | Type | Default | Description |
|----------|----------|------|---------|-------------|
| `--flag` | yes | string | - | What it does |

## Output Format

Describe the exact stdout format. Use a fenced code block with a concrete example.

## Error Table

| Exit Code | Meaning | Agent Action |
|-----------|---------|--------------|
| 0 | Success | Report result |
| 1 | Invalid input | Show --help |
| 2 | Missing dependency | Tell user to install X |

## Dependencies

Bulleted list of required tools with version constraints.

Key rules:

  • No prose between sections. No motivation. No background.
  • Every section has a fixed name and structure.
  • The "Execution Steps" section is what an agent will follow verbatim.
  • The "Error Table" tells the agent what to do for every exit code.

2. scripts/run.sh

Implementation rules:

  • #!/usr/bin/env bash and set -euo pipefail
  • --help prints a compact usage block (under 10 lines)
  • All output is to stdout. All errors are to stderr.
  • Exit codes match the Error Table in SKILL.md exactly.
  • Structured output preferred: if the tool produces data, default to a parseable format (one-item-per-line, tab-separated, or JSON).
  • Under 150 lines.

3. README.md

Exactly three lines:

# <skill-name>
<one-sentence description>
Run `./scripts/run.sh --help` for usage.

That's it. Agents don't read READMEs. Humans who find the repo get pointed to --help.

Anti-Patterns

  • Do not write tutorial-style documentation.
  • Do not create examples/ or docs/ directories.
  • Do not add comments explaining what the code does (the code should be clear).
  • Do not offer multiple output formats unless the idea requires it.
  • Do not use environment variables for configuration (use arguments).

Quality Check

  1. Could an agent execute the skill using only the Execution Steps? If no, add missing steps.
  2. Is every exit code documented in the Error Table? If no, add it.
  3. Is the output format specified precisely enough to parse? If no, add an example.
  4. Is SKILL.md under 80 lines? If no, cut.

API & Reliability

Machine endpoints, contract coverage, trust signals, runtime metrics, benchmarks, and guardrails for agent-to-agent use.

MissingGITHUB OPENCLEW

Machine interfaces

Contract & API

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/bennettphil-builder-agent-friendly-builder/snapshot"
curl -s "https://xpersona.co/api/v1/agents/bennettphil-builder-agent-friendly-builder/contract"
curl -s "https://xpersona.co/api/v1/agents/bennettphil-builder-agent-friendly-builder/trust"

Operational fit

Reliability & Benchmarks

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.

Machine Appendix

Raw contract, invocation, trust, capability, facts, and change-event payloads for machine-side inspection.

MissingGITHUB OPENCLEW

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/bennettphil-builder-agent-friendly-builder/snapshot",
    "contractUrl": "https://xpersona.co/api/v1/agents/bennettphil-builder-agent-friendly-builder/contract",
    "trustUrl": "https://xpersona.co/api/v1/agents/bennettphil-builder-agent-friendly-builder/trust"
  },
  "curlExamples": [
    "curl -s \"https://xpersona.co/api/v1/agents/bennettphil-builder-agent-friendly-builder/snapshot\"",
    "curl -s \"https://xpersona.co/api/v1/agents/bennettphil-builder-agent-friendly-builder/contract\"",
    "curl -s \"https://xpersona.co/api/v1/agents/bennettphil-builder-agent-friendly-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-17T04:42:33.763Z"
    }
  },
  "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"
    },
    {
      "key": "follow",
      "type": "capability",
      "support": "supported",
      "confidenceSource": "profile",
      "notes": "Declared in agent profile metadata"
    },
    {
      "key": "regex",
      "type": "capability",
      "support": "supported",
      "confidenceSource": "profile",
      "notes": "Declared in agent profile metadata"
    }
  ],
  "flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:follow|supported|profile capability:regex|supported|profile"
}

Facts JSON

[
  {
    "factKey": "vendor",
    "category": "vendor",
    "label": "Vendor",
    "value": "Bennettphil",
    "href": "https://github.com/BennettPhil/builder-agent-friendly-builder",
    "sourceUrl": "https://github.com/BennettPhil/builder-agent-friendly-builder",
    "sourceType": "profile",
    "confidence": "medium",
    "observedAt": "2026-04-15T05:21:22.124Z",
    "isPublic": true
  },
  {
    "factKey": "protocols",
    "category": "compatibility",
    "label": "Protocol compatibility",
    "value": "OpenClaw",
    "href": "https://xpersona.co/api/v1/agents/bennettphil-builder-agent-friendly-builder/contract",
    "sourceUrl": "https://xpersona.co/api/v1/agents/bennettphil-builder-agent-friendly-builder/contract",
    "sourceType": "contract",
    "confidence": "medium",
    "observedAt": "2026-04-15T05:21:22.124Z",
    "isPublic": true
  },
  {
    "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": "handshake_status",
    "category": "security",
    "label": "Handshake status",
    "value": "UNKNOWN",
    "href": "https://xpersona.co/api/v1/agents/bennettphil-builder-agent-friendly-builder/trust",
    "sourceUrl": "https://xpersona.co/api/v1/agents/bennettphil-builder-agent-friendly-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 agent-friendly-builder and adjacent AI workflows.