← All skills
Tencent SkillHub Β· Developer Tools

Private Web App (PWA)

Personal PWA dashboard server with plugin apps. Use when: (1) installing or setting up PrivateApp, (2) starting/stopping/restarting the service, (3) building...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Personal PWA dashboard server with plugin apps. Use when: (1) installing or setting up PrivateApp, (2) starting/stopping/restarting the service, (3) building...

⬇ 0 downloads β˜… 0 stars Unverified but indexed

Install for OpenClaw

Item is unstable.

This item is timing out or returning errors right now. Review the source page and try again later.

Quick setup
  1. Wait for the source to recover or retry later.
  2. Review SKILL.md only after the source returns a real package.
  3. Do not rely on this source for automated install yet.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Manual review
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, SKILL.md, apps/file-browser/app.json, apps/file-browser/backend/routes.py, apps/file-browser/frontend/index.html, apps/file-browser/frontend/package-lock.json

Validation

  • Wait for the source to recover or retry later.
  • Review SKILL.md only after the download returns a real package.
  • Treat this source as transient until the upstream errors clear.

Install with your agent

Agent handoff

Use the source page and any available docs to guide the install because the item is currently unstable or timing out.

  1. Open the source page via Review source status.
  2. If you can obtain the package, extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the source page and extracted files.
New install

I tried to install a skill package from Yavira, but the item is currently unstable or timing out. Inspect the source page and any extracted docs, then tell me what you can confirm and any manual steps still required. Then review README.md for any prerequisites, environment setup, or post-install checks.

Upgrade existing

I tried to upgrade a skill package from Yavira, but the item is currently unstable or timing out. Compare the source page and any extracted docs with my current installation, then summarize what changed and what manual follow-up I still need. Then review README.md for any prerequisites, environment setup, or post-install checks.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.3

Documentation

ClawHub primary doc Primary doc: SKILL.md 9 sections Open source page

PrivateApp

Personal PWA dashboard β€” FastAPI backend + React/Vite frontend with plugin apps.

Setup

# Clone and install (creates venv, builds frontends, sets up systemd/launchd) git clone https://github.com/camopel/PrivateApp.git ~/Workspace/PrivateApp cd ~/Workspace/PrivateApp bash scripts/install.sh [--port 8800] Copy scripts/config.example.json β†’ scripts/config.json and edit: { "host": "0.0.0.0", "port": 8800, "data_dir": "~/.local/share/privateapp", "file_browser": { "root": "~" }, "push": { "vapid_email": "you@example.com" } }

Service Management

# Linux (systemd user service) systemctl --user start privateapp systemctl --user stop privateapp systemctl --user restart privateapp systemctl --user status privateapp # macOS (launchd) launchctl load ~/Library/LaunchAgents/com.privateapp.server.plist launchctl unload ~/Library/LaunchAgents/com.privateapp.server.plist # Manual .venv/bin/python3 scripts/server.py --host 127.0.0.1 --port 8800

Build Frontends

After any frontend change, rebuild: # Build shell (home screen) cd frontend && npm run build # Build all app frontends for app_dir in apps/*/frontend; do [ -f "$app_dir/package.json" ] && (cd "$app_dir" && npm install && npm run build) done # Or use the install script which builds everything bash scripts/install.sh Then restart the service.

Built-in Apps

AppShortcodeDescriptionπŸ“Š SystemsysmonCPU, RAM, disk, GPU stats and service healthπŸ“ FilesfilesBrowse, preview, and share files

Adding a New App

Create apps/{app-id}/ with: app.json β€” metadata (id, name, shortcode, icon, description) backend/routes.py β€” FastAPI router (mounted at /api/app/{shortcode}/) frontend/ β€” React SPA (Vite, builds to frontend/dist/) Shortcode must be unique. The app loader auto-discovers on startup. See the existing apps for reference patterns. Key conventions: All routes async def, return plain dicts Frontend uses CSS custom properties for dark mode Input font-size β‰₯ 16px (prevents iOS auto-zoom) Every app has a back button linking to /

Push Notifications

Apps can send push via commons.push_client: from commons.push_client import send_push await send_push(title="Alert", body="Something happened", url="/app/my-app/")

Data

~/.local/share/privateapp/ β”œβ”€β”€ privateapp.db # Settings, preferences, push subscriptions β”œβ”€β”€ vapid_private.pem # VAPID signing key └── vapid_public.txt # VAPID public key

Key APIs

GET /api/apps β€” list installed apps GET /api/settings/preferences β€” get preferences (timezone, language, app_order) POST /api/settings/preferences β€” save preferences POST /api/push/send β€” send push notification GET /api/push/test β€” test push

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs2 Config1 Scripts1 Files
  • SKILL.md Primary doc
  • README.md Docs
  • apps/file-browser/backend/routes.py Scripts
  • apps/file-browser/app.json Config
  • apps/file-browser/frontend/package-lock.json Config
  • apps/file-browser/frontend/index.html Files