← All skills
Tencent SkillHub · Data Analysis

Dashboard Manager2

Gère en temps réel la lecture, mise à jour et synchronisation du fichier data.json du dashboard Jarvis, incluant notes, tâches, logs et statistiques.

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

Gère en temps réel la lecture, mise à jour et synchronisation du fichier data.json du dashboard Jarvis, incluant notes, tâches, logs et statistiques.

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

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

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
index.js, skill.json, SKILL.md, skill.yaml

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

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

Description

Gère les interactions avec le dashboard Jarvis. Ce skill permet de lire, mettre à jour et synchroniser le fichier data.json en temps réel.

Fonctionnalités

Lecture/Sauvegarde : Accès au fichier data.json Gestion des notes : Récupération des notes pending et marquage comme processed Logging : Ajout d'entrées dans l'historique Mise à jour du système : Statut, heartbeat, modèle actif Statistiques : Compteurs de tokens et coûts Gestion des tâches : Ajout et mise à jour Sub-agents : Gestion des agents actifs

Chemin du fichier

const DATA_FILE_PATH = 'D:\\Projets\\ClaudBot\\Jarvis_Dashboard\\data.json';

Permissions

Lecture/Écriture : Accès au fichier data.json Système : Mise à jour du statut et heartbeat Logging : Ajout d'entrées dans l'historique

Fonctions principales

// Chargement de la base de données await loadDatabase(); // Sauvegarde de la base de données await saveDatabase(db); // Récupération des notes en attente const pendingNotes = await getPendingNotes(); // Marquage d'une note comme traitée await processNote(noteId); // Ajout d'un log await addLog('Action effectuée'); // Mise à jour du statut du système await updateSystemStatus('idle', 'Claude-3-Opus'); // Mise à jour des statistiques await updateStats(1500, 2800, 0.52); // Ajout/mise à jour d'une tâche await updateTask(1, { status: 'done' }); // Gestion des sub-agents await addSubAgent('dashboard_agent', 'Monitoring dashboard'); await removeSubAgent('dashboard_agent');

Initialisation

const dashboardSkill = require('./skills/dashboard-manager'); const success = await dashboardSkill.init(); if (success) { console.log('🚀 Dashboard Manager initialisé'); }

Permissions requises

Accès fichier : D:\Projets\ClaudBot\Jarvis_Dashboard\data.json Écriture système : Mise à jour du statut et heartbeat Logging : Ajout d'entrées dans l'historique

Utilisation

Ce skill est conçu pour fonctionner en arrière-plan et maintenir la synchronisation entre Jarvis et le dashboard en temps réel.

Boucle de fonctionnement (The Loop)

INPUT : Consulte quick_notes et traite les notes pending OUTPUT : Met à jour data.json avec les changements Auto-sync : Heartbeat toutes les 2 secondes Silent mode : Fonctionne sans intervention conversationnelle

Exemple d'utilisation

// Dans une réponse conversationnelle await updateStats(estimatedInputTokens, estimatedOutputTokens, estimatedCost); await addLog('Réponse à la question sur les agents'); await updateSystemStatus('idle');

Installation

Copier le dossier dashboard-manager dans le répertoire des skills Vérifier le chemin du fichier data.json Activer le skill dans la configuration Le skill s'initialisera automatiquement

Problèmes courants

Fichier introuvable : Vérifier le chemin DATA_FILE_PATH Permissions refusées : Vérifier les droits d'accès au fichier JSON invalide : Vérifier la syntaxe du fichier data.json

Logs

Les logs sont ajoutés automatiquement dans la section logs du fichier data.json pour le suivi des actions.

Sécurité

Accès limité : Seul le fichier data.json est accessible Écriture contrôlée : Les mises à jour sont validées Logs d'audit : Toutes les actions sont enregistrées

Compatibilité

Ce skill est compatible avec OpenClaw et fonctionne avec n'importe quelle instance de Jarvis utilisant le dashboard V2 Ultimate.

Category context

Data access, storage, extraction, analysis, reporting, and insight generation.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Config1 Docs1 Scripts
  • SKILL.md Primary doc
  • index.js Scripts
  • skill.json Config
  • skill.yaml Config