From rkit
루트파일시스템 구성 가이드. init 시스템, 파일시스템 레이아웃, 부팅 최적화. Triggers: rootfs, init, systemd, busybox, 루트파일시스템, ファイルシステム
npx claudepluginhub solitasroh/rkit --plugin rkitThis skill is limited to using the following tools:
| System | Use Case | Package |
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
| System | Use Case | Package |
|---|---|---|
| systemd | Full-featured, service management | IMAGE_INSTALL += "systemd" |
| SysVinit | Traditional, lightweight | Default in many Yocto images |
| BusyBox init | Minimal, embedded | Buildroot default |
/ (rootfs)
├── bin/ → /usr/bin (merged on modern distros)
├── etc/ → Configuration files
├── lib/ → Shared libraries
├── usr/
│ ├── bin/ → User binaries
│ ├── lib/ → Libraries
│ └── share/ → Architecture-independent data
├── var/ → Variable data (logs, runtime)
├── tmp/ → Temporary files
├── dev/ → Device nodes (devtmpfs)
├── proc/ → Process info (procfs)
└── sys/ → Kernel/device info (sysfs)
INHIBIT_PACKAGE_STRIP = "0" (Yocto)EXTRA_IMAGE_FEATURES:remove = "doc-pkgs"