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 in RPDevs-Builds publish 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[repo.launcher.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

EcosystemSubdomain / PortalTarget FormatPrimary ArtifactsStatus
**[[kodiKodi Add-ons]]**kodi.repo.iamrp.dev.zipaddons.xml, addons.xml.md5, repository.rpdevs-*.zip
**[[openwrtOpenWrt Custom Feed]]**openwrt.repo.iamrp.dev.ipk / .apkPackages.gz (OPKG), APKINDEX.tar.gz (APK v3), luci-app-nfs
**[[firefoxFirefox Privacy Add-ons]]**firefox.repo.iamrp.dev.xpiupdates.json, DNS Forge, SHA-256 binary manifests
**[[launcherRPDev Launcher Registry]]**repo.launcher.iamrp.dev.json / .apkmodules.json, Hub Card JSON Schemas, APK releases
**[[cdnEdge Delivery Gateway]]**cdn.iamrp.devStatic AssetsJetBrains 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-nfs

2. Kodi Media Center (Omega v21 & Piers v22)

  1. In Kodi, navigate to SettingsFile ManagerAdd source.
  2. Enter source URL: https://kodi.repo.iamrp.dev/ and name it RPDev Repo.
  3. Return to Add-onsInstall from zip file → select RPDev Repo → install repository.rpdevs-1.0.0.zip.

3. Firefox Privacy Extension (DNS Forge)

  1. Visit https://firefox.repo.iamrp.dev/.
  2. Click Install DNS Forge Extension to load the signed .xpi package into Firefox.
  3. 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:

  1. Source Verifiable: Every package is compiled exclusively by automated GitHub Actions workflows from pinned source commits.
  2. Deterministic Manifests: Package feeds generate authenticated indices (addons.xml.md5, Packages.gz, APKINDEX.tar.gz, updates.json) during every build step.
  3. Immutability: Re-releases require version bumps; existing artifacts are checksummed with SHA-256 before ingestion.