โ† All skills
Tencent SkillHub ยท Developer Tools

Filewave

Query and manage FileWave UEM device inventory, perform filtered searches, view device hierarchy, and run fleet analytics via the REST API.

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

Query and manage FileWave UEM device inventory, perform filtered searches, view device hierarchy, and run fleet analytics via the REST API.

โฌ‡ 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
SKILL.md, docs/API_CAPABILITIES.md, docs/BULK_UPDATE.md, docs/CLI_REFERENCE.md, docs/CREDENTIAL_ARCHITECTURE.md, docs/ONBOARDING.md

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

FileWave UEM API Skill

Query and manage FileWave UEM device inventory via REST API. โš ๏ธ Disclaimer: This skill is a technology demonstration of Agentic Endpoint Management (AEM) โ€” the concept of AI agents interacting directly with UEM platforms to assist IT administrators. It is provided as-is for educational purposes to explore what's possible when AI meets endpoint management. Neither the author nor FileWave accepts any liability for the use, misuse, or consequences of running this skill against production or any other environment. Use at your own risk. Always test in a lab environment first and review any actions before applying them to production systems.

Overview

FileWave is a unified endpoint management platform for macOS, Windows, ChromeOS, Android, tvOS, iPadOS, and iOS. This skill provides programmatic access to device inventory and status information.

Licensing

FileWave ( https://www.filewave.com ) offers flexible deployment options: Community Edition โ€” Free, manages up to 15 computers + 15 mobile devices Good for testing and small deployments All API capabilities available No advanced features (deployments, policies, MDM commands) Commercial License โ€” More than 15 devices with advanced features TeamViewer Remote Control Deployment management, policy enforcement, MDM commands Technical support This skill works with both licensing models.

Prerequisites

FileWave server hostname/DNS FileWave API token (from FileWave Central โ†’ Manage Administrators โ†’ API Token)

Configuration

Setup is interactive via filewave setup: filewave setup This creates ~/.filewave/config with your server profiles. Credentials are stored securely (chmod 600, never hardcoded in scripts). For CI/CD environments, use environment variables: export FILEWAVE_SERVER="filewave.company.com" export FILEWAVE_TOKEN="your_api_token_here" Never hardcode tokens in scripts or documentation.

Basic Commands

# Setup profiles (first time) filewave setup # List configured servers filewave profiles # Query inventory filewave query --query-id 1 # Query with filter filewave query --query-id 1 --filter "last_seen > 30 days" # Search for devices (now returns multiple matches) filewave device-search "iPad" # Find all devices by product type (authoritative hardware lookup) filewave find-devices iPad filewave find-devices iPhone # View device hierarchy and groups filewave hierarchy 123 # Trigger a Model Update filewave update-model # Fleet analytics filewave insights --type platform filewave insights --type stale --days 30 # Cache management filewave warm-cache filewave cache-status # Bulk device updates (school workflow) filewave bulk-template --output ~/devices.csv filewave bulk-update --csv ~/devices.csv # Session comparison filewave query --query-id 1 --reference lab filewave query --query-id 1 --profile production --reference prod filewave compare lab prod

API Architecture

Multi-Server Support: Configure multiple FileWave servers (lab, production, test) with named profiles.

Key Endpoints Used

GET /api/inv/api/v1/query_result/{query_id} โ€” Query device inventory GET /filewave/api/devices/v1/devices/{id} โ€” Device details GET /filewave/api/devices/internal/devices/{id}/groups โ€” Device group memberships PATCH /filewave/api/devices/v1/devices/{id} โ€” Update device (name, auth user) POST /filewave/api/fwserver/update_model โ€” Refresh model after bulk updates

Available Device Fields (per Inventory Query)

You configure which fields to include in your Inventory Query: Device name, model, serial number, UDID/IMEI OS name, version, build Last checkin timestamp Enrollment date, user assignment Device group, management status, compliance state And 50+ more fields (configurable)

Platforms Supported

macOS Windows ChromeOS Android iOS iPadOS tvOS

Example Queries

# Query from Inventory Query (returns all devices) filewave query --query-id 1 # Filter devices not seen in 30+ days filewave query --query-id 1 --filter "last_seen > 30 days" # Get JSON format for scripting filewave query --query-id 1 --format json # Multiple filters (AND logic) filewave query --query-id 1 \ --filter "last_seen > 30 days" \ --filter "platform = iOS" # Compare lab vs production filewave query --query-id 1 --profile lab --reference lab_inventory filewave query --query-id 1 --profile prod --reference prod_inventory filewave compare lab_inventory prod_inventory

Authentication

FileWave API uses Bearer token authentication: Authorization: Bearer <token>

Response Format

FileWave Inventory Queries return column-oriented data: { "offset": 0, "fields": [ "Client_device_name", "OperatingSystem_name", "OperatingSystem_version", "Client_last_connected_to_fwxserver" ], "values": [ ["MacBook-Pro-John", "macOS 15 Sequoia", "15.1.0", "2026-02-12T14:30:00Z"], ["iPad-Student-001", "iPadOS", "17.3", "2026-02-10T10:22:00Z"] ], "filter_results": 2, "total_results": 2, "version": 7 } The CLI converts this to device objects automatically.

Current Features

โœ… Multi-server profile support โœ… Inventory Query integration โœ… Natural language filtering (last_seen > 30 days) โœ… Device hierarchy analysis (original vs. clones) โœ… Bulk device updates (school deployment workflow) โœ… Fleet analytics: platform breakdown, stale device reports, field summaries โœ… Session tracking and server comparison โœ… JSON export for scripting โœ… 7-day device cache for performance

Documentation

README.md โ€” Overview and quick start CLI_REFERENCE.md โ€” Complete command reference (includes fleet analytics, cache commands) BULK_UPDATE.md โ€” School district workflow API_CAPABILITIES.md โ€” API reference and analytics module CREDENTIAL_ARCHITECTURE.md โ€” Security design SESSION_DATA_MANAGER.md โ€” Session tracking internals ONBOARDING.md โ€” Setup wizard details

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
6 Docs
  • SKILL.md Primary doc
  • docs/API_CAPABILITIES.md Docs
  • docs/BULK_UPDATE.md Docs
  • docs/CLI_REFERENCE.md Docs
  • docs/CREDENTIAL_ARCHITECTURE.md Docs
  • docs/ONBOARDING.md Docs