iOS tweak repository compatible with Cydia & Sileo.
https://mytai20100.github.io/rp/
Open Cydia / Sileo → Sources → Edit → Add → paste URL above.
/
├── index.html # Web UI
├── styles.css
├── script.js
├── packages/
│ ├── index.json # Auto-generated web index
│ └── com.meomeo.*/ # One folder per tweak
│ ├── control # Debian control file
│ ├── description.md
│ ├── icon.png
│ ├── screenshots/
│ └── package.deb
├── repo/
│ ├── Packages # Auto-generated APT index
│ ├── Packages.gz
│ └── Release
└── .github/workflows/
└── deploy.yml # Build & deploy pipeline
- Create
packages/com.yourname.tweakname/ - Add
control,description.md,icon.png,package.deb - Push to
main— GitHub Actions rebuilds & deploys automatically
Package: com.yourname.tweakname
Name: TweakName
Version: 1.0.0
Architecture: iphoneos-arm
Description: Short description here
Maintainer: yourname <you@example.com>
Author: yourname
Section: Tweaks
Depends: mobilesubstrate
python3 scripts/generate_packages.py
python3 scripts/generate_json.py
python3 -m http.server 8000- Repo Settings → Pages → Source: GitHub Actions
- Push to
mainto trigger first deploy