7.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.
Skill Snapshot
| name | sage-system |
| description | Sage system operations. Sync status, version info, database statistics and maintenance. OpenClaw Skills integration. |
| owner | koba42corp |
| repository | koba42corp/sage-walletpath: sub-skills/sage-system |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @koba42corp/sage-wallet:sub-skills/sage-system |
| last updated | Feb 7, 2026 |
Maintainer

name: sage-system description: Sage system operations. Sync status, version info, database statistics and maintenance.
Sage System
System status and maintenance operations.
Endpoints
Status
| Endpoint | Payload | Description |
|---|---|---|
get_sync_status | {} | Get sync progress |
get_version | {} | Get wallet version |
Database
| Endpoint | Payload | Description |
|---|---|---|
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_vacuumdoes full database compaction (slower but more thorough)- Large
wal_pagesindicates pending writes; checkpoint clears them
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.
