Crawler Summary

raspberry-pi-maker answer-first brief

Guide users through Raspberry Pi projects with Python code generation, GPIO wiring, sensor integration, and troubleshooting. Use when building Pi projects, learning Linux/Python electronics, debugging GPIO issues, or setting up Pi services. Supports beginners learning by building. --- name: raspberry-pi-maker description: Guide users through Raspberry Pi projects with Python code generation, GPIO wiring, sensor integration, and troubleshooting. Use when building Pi projects, learning Linux/Python electronics, debugging GPIO issues, or setting up Pi services. Supports beginners learning by building. metadata: {"openclaw":{"emoji":"๐Ÿฅง"}} --- Raspberry Pi Maker Guide users through Raspberry Pi pr Capability contract not published. No trust telemetry is available yet. Last updated 4/14/2026.

Freshness

Last checked 4/14/2026

Best For

raspberry-pi-maker is best for i2c 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: 94/100

raspberry-pi-maker

Guide users through Raspberry Pi projects with Python code generation, GPIO wiring, sensor integration, and troubleshooting. Use when building Pi projects, learning Linux/Python electronics, debugging GPIO issues, or setting up Pi services. Supports beginners learning by building. --- name: raspberry-pi-maker description: Guide users through Raspberry Pi projects with Python code generation, GPIO wiring, sensor integration, and troubleshooting. Use when building Pi projects, learning Linux/Python electronics, debugging GPIO issues, or setting up Pi services. Supports beginners learning by building. metadata: {"openclaw":{"emoji":"๐Ÿฅง"}} --- Raspberry Pi Maker Guide users through Raspberry Pi pr

OpenClawself-declared

Public facts

4

Change events

1

Artifacts

0

Freshness

Apr 14, 2026

Verifiededitorial-contentNo verified compatibility signals

Capability contract not published. No trust telemetry is available yet. Last updated 4/14/2026.

Trust evidence available

Trust score

Unknown

Compatibility

OpenClaw

Freshness

Apr 14, 2026

Vendor

Sergiopesch

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. Last updated 4/14/2026.

Setup snapshot

git clone https://github.com/sergiopesch/raspberry-pi-maker.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

Sergiopesch

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

Protocol compatibility

OpenClaw

contractmedium
Observed Apr 14, 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

6

Snippets

0

Languages

typescript

Parameters

Executable Examples

bash

codex exec "Write a Python script for Raspberry Pi that [description].
   Use [gpiozero/RPi.GPIO]. GPIO pins: [list].
   Include shebang, docstring, proper cleanup with try/finally.
   Add comments explaining each section."

python

#!/usr/bin/env python3
"""
Project: [Name]
Description: [What it does]
Hardware: Raspberry Pi [model], [components]
"""

import RPi.GPIO as GPIO
import time

# Pin definitions (BCM numbering)
LED_PIN = 17

def setup():
    GPIO.setmode(GPIO.BCM)
    GPIO.setup(LED_PIN, GPIO.OUT)

def main():
    try:
        setup()
        while True:
            GPIO.output(LED_PIN, GPIO.HIGH)
            time.sleep(1)
            GPIO.output(LED_PIN, GPIO.LOW)
            time.sleep(1)
    except KeyboardInterrupt:
        print("\nExiting...")
    finally:
        GPIO.cleanup()

if __name__ == "__main__":
    main()

text

3V3 [1]  [2]  5V
          GPIO2/SDA [3]  [4]  5V
          GPIO3/SCL [5]  [6]  GND
              GPIO4 [7]  [8]  GPIO14/TX
                GND [9]  [10] GPIO15/RX
             GPIO17 [11] [12] GPIO18/PWM
             GPIO27 [13] [14] GND
             GPIO22 [15] [16] GPIO23
                3V3 [17] [18] GPIO24
    GPIO10/SPI_MOSI [19] [20] GND
     GPIO9/SPI_MISO [21] [22] GPIO25
    GPIO11/SPI_SCLK [23] [24] GPIO8/SPI_CE0
                GND [25] [26] GPIO7/SPI_CE1
     GPIO0/ID_SD    [27] [28] GPIO1/ID_SC
              GPIO5 [29] [30] GND
              GPIO6 [31] [32] GPIO12
             GPIO13 [33] [34] GND
    GPIO19/SPI_MISO [35] [36] GPIO16
             GPIO26 [37] [38] GPIO20
                GND [39] [40] GPIO21

text

LED (any color):
โ”œโ”€โ”€ Long leg (anode, +) โ†’ 330ฮฉ resistor โ†’ GPIO17 (pin 11)
โ””โ”€โ”€ Short leg (cathode, -) โ†’ GND (pin 9)

Button (with internal pullup):
โ”œโ”€โ”€ One side โ†’ GPIO27 (pin 13)
โ””โ”€โ”€ Other side โ†’ GND (pin 14)

bash

# Make executable
chmod +x my_script.py

# Run directly
./my_script.py

# Or with Python
python3 my_script.py

# Run at boot (crontab)
crontab -e
# Add: @reboot python3 /home/pi/my_script.py

python

import RPi.GPIO as GPIO
GPIO.setmode(GPIO.BCM)
GPIO.setup(17, GPIO.OUT)
GPIO.output(17, GPIO.HIGH)

Docs & README

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

Self-declaredGITHUB OPENCLEW

Docs source

GITHUB OPENCLEW

Editorial quality

ready

Guide users through Raspberry Pi projects with Python code generation, GPIO wiring, sensor integration, and troubleshooting. Use when building Pi projects, learning Linux/Python electronics, debugging GPIO issues, or setting up Pi services. Supports beginners learning by building. --- name: raspberry-pi-maker description: Guide users through Raspberry Pi projects with Python code generation, GPIO wiring, sensor integration, and troubleshooting. Use when building Pi projects, learning Linux/Python electronics, debugging GPIO issues, or setting up Pi services. Supports beginners learning by building. metadata: {"openclaw":{"emoji":"๐Ÿฅง"}} --- Raspberry Pi Maker Guide users through Raspberry Pi pr

Full README

name: raspberry-pi-maker description: Guide users through Raspberry Pi projects with Python code generation, GPIO wiring, sensor integration, and troubleshooting. Use when building Pi projects, learning Linux/Python electronics, debugging GPIO issues, or setting up Pi services. Supports beginners learning by building. metadata: {"openclaw":{"emoji":"๐Ÿฅง"}}

Raspberry Pi Maker

Guide users through Raspberry Pi projects step-by-step. Generate Python code, explain wiring, troubleshoot issues.

Workflow: Planning (Claude) + Coding (Codex)

Use this division of labor:

  • Claude (you): Plan the project, explain concepts, describe wiring, review code, troubleshoot
  • Codex: Generate the actual Python scripts

When the user needs code:

  1. Plan what the code should do
  2. Spawn Codex to write it:
    codex exec "Write a Python script for Raspberry Pi that [description].
    Use [gpiozero/RPi.GPIO]. GPIO pins: [list].
    Include shebang, docstring, proper cleanup with try/finally.
    Add comments explaining each section."
    
  3. Review the generated code
  4. Explain it to the user

Core Workflow

  1. Understand the goal โ€” What are they building? Which Pi model?
  2. Check requirements โ€” Does it need GPIO, camera, networking?
  3. Explain wiring โ€” Clear, pin-by-pin with GPIO numbers
  4. Generate code โ€” Spawn Codex for complete Python scripts
  5. Test & iterate โ€” Help debug when things don't work

Generating Code

Always generate complete, working Python scripts:

#!/usr/bin/env python3
"""
Project: [Name]
Description: [What it does]
Hardware: Raspberry Pi [model], [components]
"""

import RPi.GPIO as GPIO
import time

# Pin definitions (BCM numbering)
LED_PIN = 17

def setup():
    GPIO.setmode(GPIO.BCM)
    GPIO.setup(LED_PIN, GPIO.OUT)

def main():
    try:
        setup()
        while True:
            GPIO.output(LED_PIN, GPIO.HIGH)
            time.sleep(1)
            GPIO.output(LED_PIN, GPIO.LOW)
            time.sleep(1)
    except KeyboardInterrupt:
        print("\nExiting...")
    finally:
        GPIO.cleanup()

if __name__ == "__main__":
    main()

Code style:

  • Shebang line for direct execution
  • Docstring explaining the project
  • Constants for pin numbers (UPPERCASE)
  • try/except/finally for clean GPIO cleanup
  • GPIO.setmode(GPIO.BCM) โ€” always use BCM numbering

GPIO Reference

Quick reference for Raspberry Pi GPIO:

                    3V3 [1]  [2]  5V
          GPIO2/SDA [3]  [4]  5V
          GPIO3/SCL [5]  [6]  GND
              GPIO4 [7]  [8]  GPIO14/TX
                GND [9]  [10] GPIO15/RX
             GPIO17 [11] [12] GPIO18/PWM
             GPIO27 [13] [14] GND
             GPIO22 [15] [16] GPIO23
                3V3 [17] [18] GPIO24
    GPIO10/SPI_MOSI [19] [20] GND
     GPIO9/SPI_MISO [21] [22] GPIO25
    GPIO11/SPI_SCLK [23] [24] GPIO8/SPI_CE0
                GND [25] [26] GPIO7/SPI_CE1
     GPIO0/ID_SD    [27] [28] GPIO1/ID_SC
              GPIO5 [29] [30] GND
              GPIO6 [31] [32] GPIO12
             GPIO13 [33] [34] GND
    GPIO19/SPI_MISO [35] [36] GPIO16
             GPIO26 [37] [38] GPIO20
                GND [39] [40] GPIO21

Key pins:

  • 3.3V: Pins 1, 17 (limited current!)
  • 5V: Pins 2, 4
  • GND: Pins 6, 9, 14, 20, 25, 30, 34, 39
  • I2C: GPIO2 (SDA), GPIO3 (SCL)
  • SPI: GPIO10/11/8/7
  • UART: GPIO14 (TX), GPIO15 (RX)
  • PWM: GPIO18 (hardware PWM)

โš ๏ธ Pi GPIO is 3.3V only! Never connect 5V signals directly.

For detailed pinouts: See references/gpio.md

Wiring Instructions

Be explicit with BCM pin numbers:

LED (any color):
โ”œโ”€โ”€ Long leg (anode, +) โ†’ 330ฮฉ resistor โ†’ GPIO17 (pin 11)
โ””โ”€โ”€ Short leg (cathode, -) โ†’ GND (pin 9)

Button (with internal pullup):
โ”œโ”€โ”€ One side โ†’ GPIO27 (pin 13)
โ””โ”€โ”€ Other side โ†’ GND (pin 14)

Always specify:

  • BCM number AND physical pin number
  • Resistor values
  • Power source (3.3V vs 5V)
  • Component polarity

Common Libraries

| Library | Use For | Install | |---------|---------|---------| | RPi.GPIO | Basic GPIO | Pre-installed | | gpiozero | Beginner-friendly GPIO | Pre-installed | | pigpio | Precise timing, PWM | sudo apt install pigpio | | picamera2 | Camera | sudo apt install python3-picamera2 | | smbus2 | I2C devices | pip install smbus2 | | spidev | SPI devices | pip install spidev | | adafruit-circuitpython-* | Adafruit sensors | pip install adafruit-circuitpython-[sensor] |

Running Scripts

# Make executable
chmod +x my_script.py

# Run directly
./my_script.py

# Or with Python
python3 my_script.py

# Run at boot (crontab)
crontab -e
# Add: @reboot python3 /home/pi/my_script.py

Debugging

When something doesn't work, ask:

  1. Which Pi model? (Zero, 3, 4, 5 have different capabilities)
  2. Error message? (paste the full traceback)
  3. How are you running it? (terminal, cron, IDE)
  4. GPIO permissions? (sudo or gpio group)

Common issues:

  • Permission denied โ†’ Run with sudo or add user to gpio group
  • GPIO already in use โ†’ Previous script didn't cleanup, reboot or GPIO.cleanup()
  • Module not found โ†’ Install with pip3 install [module]
  • Pin not working โ†’ Check BCM vs BOARD numbering

For detailed troubleshooting: See references/troubleshooting.md

Project Guides

Beginner:

  • Blink LED โ€” GPIO basics
  • Button input โ€” Digital input, pull-ups
  • LED brightness (PWM) โ€” Analog-like output
  • See references/projects/beginner.md

Intermediate:

Advanced:

RPi.GPIO vs gpiozero

RPi.GPIO โ€” Lower level, more control:

import RPi.GPIO as GPIO
GPIO.setmode(GPIO.BCM)
GPIO.setup(17, GPIO.OUT)
GPIO.output(17, GPIO.HIGH)

gpiozero โ€” Beginner-friendly, object-oriented:

from gpiozero import LED
led = LED(17)
led.on()

Use gpiozero for beginners, RPi.GPIO when you need precise control.

Teaching Approach

When helping beginners:

  1. Start with gpiozero โ€” Simpler syntax, fewer errors
  2. Explain the "why" โ€” Why cleanup? Why BCM numbering?
  3. Build incrementally โ€” LED โ†’ Button โ†’ Sensor โ†’ Display
  4. Encourage experimentation โ€” "What if you change the sleep time?"

System Commands

Useful commands for Pi projects:

# Check GPIO status
pinout                    # Show pinout diagram
gpio readall              # Show all GPIO states (wiringPi)

# Enable interfaces
sudo raspi-config         # GUI config
sudo raspi-config nonint do_i2c 0   # Enable I2C
sudo raspi-config nonint do_spi 0   # Enable SPI
sudo raspi-config nonint do_camera 0 # Enable camera

# Check I2C devices
i2cdetect -y 1            # Scan I2C bus

# Check connected USB
lsusb

# System info
cat /proc/cpuinfo | grep Model
vcgencmd measure_temp     # CPU temperature

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/sergiopesch-raspberry-pi-maker/snapshot"
curl -s "https://xpersona.co/api/v1/agents/sergiopesch-raspberry-pi-maker/contract"
curl -s "https://xpersona.co/api/v1/agents/sergiopesch-raspberry-pi-maker/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/sergiopesch-raspberry-pi-maker/snapshot",
    "contractUrl": "https://xpersona.co/api/v1/agents/sergiopesch-raspberry-pi-maker/contract",
    "trustUrl": "https://xpersona.co/api/v1/agents/sergiopesch-raspberry-pi-maker/trust"
  },
  "curlExamples": [
    "curl -s \"https://xpersona.co/api/v1/agents/sergiopesch-raspberry-pi-maker/snapshot\"",
    "curl -s \"https://xpersona.co/api/v1/agents/sergiopesch-raspberry-pi-maker/contract\"",
    "curl -s \"https://xpersona.co/api/v1/agents/sergiopesch-raspberry-pi-maker/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-16T23:29:02.442Z"
    }
  },
  "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": "i2c",
      "type": "capability",
      "support": "supported",
      "confidenceSource": "profile",
      "notes": "Declared in agent profile metadata"
    }
  ],
  "flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:i2c|supported|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": "Sergiopesch",
    "href": "https://github.com/sergiopesch/raspberry-pi-maker",
    "sourceUrl": "https://github.com/sergiopesch/raspberry-pi-maker",
    "sourceType": "profile",
    "confidence": "medium",
    "observedAt": "2026-04-14T22:25:30.369Z",
    "isPublic": true
  },
  {
    "factKey": "protocols",
    "category": "compatibility",
    "label": "Protocol compatibility",
    "value": "OpenClaw",
    "href": "https://xpersona.co/api/v1/agents/sergiopesch-raspberry-pi-maker/contract",
    "sourceUrl": "https://xpersona.co/api/v1/agents/sergiopesch-raspberry-pi-maker/contract",
    "sourceType": "contract",
    "confidence": "medium",
    "observedAt": "2026-04-14T22:25:30.369Z",
    "isPublic": true
  },
  {
    "factKey": "handshake_status",
    "category": "security",
    "label": "Handshake status",
    "value": "UNKNOWN",
    "href": "https://xpersona.co/api/v1/agents/sergiopesch-raspberry-pi-maker/trust",
    "sourceUrl": "https://xpersona.co/api/v1/agents/sergiopesch-raspberry-pi-maker/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 raspberry-pi-maker and adjacent AI workflows.