title: “RPDev Repository Hub” description: “Master distribution portal for RPDev sovereign package repositories: Kodi add-ons, OpenWrt custom feed, Firefox extensions, Launcher modules, and CDN assets.”
Sovereign Package Distribution Hub
Central Ingress & Universal Package Index for the RPDev Ecosystem
Architectural Mission
The RPDev Repository Hub (
repo.iamrp.dev) provides an authoritative single pane of glass across all sovereign software distribution channels. When upstream projects inRPDevs-Buildspublish new release tags or build artifacts, automated CI/CD pipelines compile, sign, checksum, and stage packages directly into their specialized sub-repositories.
graph TD A[Upstream CI/CD: RPDevs-Builds] -->|Publish Artifacts| B[Sovereign Package Repositories] subgraph Distribution Fleet B --> K[kodi.repo.iamrp.dev<br><i>Kodi Add-on Repository</i>] B --> O[openwrt.repo.iamrp.dev<br><i>OPKG & APK v3 Feed</i>] B --> F[firefox.repo.iamrp.dev<br><i>Mozilla MV3 Add-ons</i>] B --> L[launcher.repo.iamrp.dev<br><i>Launcher Modules & Schemas</i>] B --> C[cdn.iamrp.dev<br><i>Edge Binaries & Assets</i>] end K --> D1[Smart TVs / Home Theater] O --> D2[Edge Routers & Gateways] F --> D3[Desktop & Mobile Browsers] L --> D4[Android 120Hz Workstations] C --> D5[Global Client Ingress]
📦 Sovereign Distribution Repositories
| Ecosystem | Subdomain / Portal | Target Format | Primary Artifacts | Status |
|---|---|---|---|---|
| **[[kodi | Kodi Add-ons]]** | kodi.repo.iamrp.dev | .zip | addons.xml, addons.xml.md5, repository.rpdevs-*.zip |
| **[[openwrt | OpenWrt Custom Feed]]** | openwrt.repo.iamrp.dev | .ipk / .apk | Packages.gz (OPKG), APKINDEX.tar.gz (APK v3), luci-app-nfs |
| **[[firefox | Firefox Privacy Add-ons]]** | firefox.repo.iamrp.dev | .xpi | updates.json, DNS Forge, SHA-256 binary manifests |
| **[[launcher | RPDev Launcher Registry]]** | launcher.repo.iamrp.dev | .json / .apk | modules.json, Hub Card JSON Schemas, APK releases |
| **[[cdn | Edge Delivery Gateway]]** | cdn.iamrp.dev | Static Assets | JetBrains Mono fonts, security policies, raw assets |
⚡ Quick Integration Terminal Guide
1. OpenWrt Routers (Wire-Speed Storage & Management)
# OPKG Feed (OpenWrt 23.05 and earlier)
echo 'src/gz rpdev_all https://openwrt.repo.iamrp.dev/packages/all' >> /etc/opkg/customfeeds.conf
opkg update && opkg install luci-app-nfs
# Alpine APK v3 Feed (OpenWrt 24.10+)
echo 'https://openwrt.repo.iamrp.dev/packages/all' >> /etc/apk/repositories.d/rpdev.list
apk update && apk add luci-app-nfs2. Kodi Media Center (Omega v21 & Piers v22)
- In Kodi, navigate to Settings → File Manager → Add source.
- Enter source URL:
https://kodi.repo.iamrp.dev/and name itRPDev Repo. - Return to Add-ons → Install from zip file → select
RPDev Repo→ installrepository.rpdevs-1.0.0.zip.
3. Firefox Privacy Extension (DNS Forge)
- Visit
https://firefox.repo.iamrp.dev/. - Click Install DNS Forge Extension to load the signed
.xpipackage into Firefox. - Automatic updates are governed by
https://firefox.repo.iamrp.dev/updates.json.
🔒 Cryptographic Integrity & Automated Ingestion
All packages hosted within the RPDev distribution fleet adhere to zero-trust packaging principles:
- Source Verifiable: Every package is compiled exclusively by automated GitHub Actions workflows from pinned source commits.
- Deterministic Manifests: Package feeds generate authenticated indices (
addons.xml.md5,Packages.gz,APKINDEX.tar.gz,updates.json) during every build step. - Immutability: Re-releases require version bumps; existing artifacts are checksummed with SHA-256 before ingestion.