skills$openclaw/sage-system
koba42corp7.8k

by koba42corp

sage-system – OpenClaw Skill

sage-system is an OpenClaw Skills integration for data analytics workflows. Sage system operations. Sync status, version info, database statistics and maintenance.

7.8k stars8.5k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026data analytics

Skill Snapshot

namesage-system
descriptionSage system operations. Sync status, version info, database statistics and maintenance. OpenClaw Skills integration.
ownerkoba42corp
repositorykoba42corp/sage-walletpath: sub-skills/sage-system
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @koba42corp/sage-wallet:sub-skills/sage-system
last updatedFeb 7, 2026

Maintainer

koba42corp

koba42corp

Maintains sage-system in the OpenClaw Skills directory.

View GitHub profile
File Explorer
1 files
sage-system
SKILL.md
2.1 KB
SKILL.md

name: sage-system description: Sage system operations. Sync status, version info, database statistics and maintenance.

Sage System

System status and maintenance operations.

Endpoints

Status

EndpointPayloadDescription
get_sync_status{}Get sync progress
get_version{}Get wallet version

Database

EndpointPayloadDescription
get_database_stats{}Database statistics
perform_database_maintenance{"force_vacuum": false}Optimize database

Sync Status Response

{
  "balance": "1000000000000",
  "unit": {"decimals": 12, "ticker": "XCH"},
  "synced_coins": 150,
  "total_coins": 150,
  "receive_address": "xch1...",
  "burn_address": "xch1...",
  "unhardened_derivation_index": 100,
  "hardened_derivation_index": 50,
  "checked_files": 25,
  "total_files": 25,
  "database_size": 52428800
}

Version Response

{
  "version": "0.12.7"
}

Database Stats Response

{
  "total_pages": 10000,
  "free_pages": 500,
  "free_percentage": 5.0,
  "page_size": 4096,
  "database_size_bytes": 40960000,
  "free_space_bytes": 2048000,
  "wal_pages": 100
}

Maintenance Response

{
  "vacuum_duration_ms": 1500,
  "analyze_duration_ms": 200,
  "wal_checkpoint_duration_ms": 50,
  "total_duration_ms": 1750,
  "pages_vacuumed": 250,
  "wal_pages_checkpointed": 100
}

Examples

# Check sync status
sage_rpc get_sync_status '{}'

# Get version
sage_rpc get_version '{}'

# Database stats
sage_rpc get_database_stats '{}'

# Run maintenance
sage_rpc perform_database_maintenance '{"force_vacuum": false}'

# Force full vacuum (slower)
sage_rpc perform_database_maintenance '{"force_vacuum": true}'

Sync Progress

Calculate sync percentage:

progress = (synced_coins / total_coins) * 100

Check if synced:

synced = (synced_coins == total_coins)

Notes

  • Run maintenance periodically to reclaim space
  • force_vacuum does full database compaction (slower but more thorough)
  • Large wal_pages indicates pending writes; checkpoint clears them
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install sage-system?

Run openclaw add @koba42corp/sage-wallet:sub-skills/sage-system in your terminal. This installs sage-system into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/koba42corp/sage-wallet. Review commits and README documentation before installing.