j.dashboard-share

Snapshot the project dashboard and upload it to a configured rclone cloud remote.

Updated Aug 3, 2026
One-click install
npx skills add https://github.com/samwelmunga/jenga-npm --skill j-dashboard-share-samwelmunga
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: j.dashboard-share
Source: https://github.com/samwelmunga/jenga-npm/tree/main/.agents/skills/j-dashboard-share
Command: npx skills add https://github.com/samwelmunga/jenga-npm --skill j-dashboard-share-samwelmunga

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires rclone, and includes scripts (resource) components.

What problem does it solve? Sharing a point-in-time view of your project dashboard normally means manually capturing a snapshot, figuring out which cloud remote is configured, and running the upload yourself. This Skill chains the existing snapshot capture and rclone upload scripts into one step, so a dashboard snapshot lands in cloud storage with a single request. ## Core Features & Use Cases - One-step snapshot and upload: Sequences the j-dashboard snapshot script with a templated rclone copyto upload, adding no new capture or upload logic of its own. - Remote selection handling: Reads rclone listremotes output to auto-select a single configured remote, prompt when several exist, or direct you to j.cloud-connect when none are configured. - Deterministic destination paths: Uploads to JengaAI/<repo-directory-name>/<UTC-datetime>-board-snapshot.html on the chosen remote, independent of the local filename. - Use Case: After a sprint review, ask to share the dashboard snapshot to your Google Drive remote, and the Skill captures the board state and uploads the single-file HTML bundle in one flow. ## Quick Start Ask the agent to snapshot the dashboard and upload it to your configured cloud remote, optionally naming a specific rclone remote such as gdrive.

Frequently Asked Questions about j.dashboard-share

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I upload a dashboard snapshot to Google Drive with rclone?▼

Ask the agent to share the dashboard snapshot to your configured remote. The Skill runs the j-dashboard snapshot script, then uploads the resulting HTML file via rclone copyto to JengaAI/<repo-name>/<datetime>-board-snapshot.html on the remote you name or select.

How do I share a Jenga AI project dashboard with my team?▼

Use this Skill to capture a single-file HTML snapshot of the board and upload it to cloud storage in one step. Creating a public share link is intentionally out of scope, so you run rclone link yourself afterward if you want a shareable URL.

What happens if no rclone remote is configured?▼

The Skill runs rclone listremotes first; if zero remotes exist it tells you to run j.cloud-connect to configure one and stops without attempting the upload. The upload script also re-checks the remote and fails with the same actionable message if configuration changed.

Does this skill create a public share link automatically?▼

No. It is upload-only by deliberate design and never runs rclone link or any link-creating command. Creating a public link remains a separate manual step you perform yourself after the upload completes.

Why does the dashboard upload fail with a git repository error?▼

The upload script derives the destination folder from the repository root using git rev-parse --show-toplevel. Running outside a git repository causes it to exit with an error, so invoke it from within your project repository.