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
Crawler Summary
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
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
Public facts
4
Change events
1
Artifacts
0
Freshness
Apr 14, 2026
Capability contract not published. No trust telemetry is available yet. Last updated 4/14/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Apr 14, 2026
Vendor
Sergiopesch
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
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.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
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.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Sergiopesch
Protocol compatibility
OpenClaw
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
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] GPIO21text
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)
Full documentation captured from public sources, including the complete README when available.
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
Guide users through Raspberry Pi projects step-by-step. Generate Python code, explain wiring, troubleshoot issues.
Use this division of labor:
When the user needs code:
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."
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:
GPIO.setmode(GPIO.BCM) โ always use BCM numberingQuick 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:
โ ๏ธ Pi GPIO is 3.3V only! Never connect 5V signals directly.
For detailed pinouts: See references/gpio.md
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:
| 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] |
# 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
When something doesn't work, ask:
sudo or gpio group)Common issues:
sudo or add user to gpio groupGPIO.cleanup()pip3 install [module]For detailed troubleshooting: See references/troubleshooting.md
Beginner:
Intermediate:
Advanced:
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.
When helping beginners:
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
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
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"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
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
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
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
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
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
Rank
70
The Frontend for Agents & Generative UI. React + Angular
Traction
No public download signal
Freshness
Updated 23d ago
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.