aade-api-monitor
Real-time monitoring of Greek AADE tax authority systems — tracks deadlines, rate changes, and compliance updates. File-based, OpenClaw-native.
What this skill does
# AADE API Monitor
This skill provides comprehensive monitoring of AADE systems and announcements through OpenClaw's file processing capabilities, delivering real-time alerts for Greek tax compliance changes.
## Setup
```bash
export OPENCLAW_DATA_DIR="/data"
export AADE_USERNAME="your-aade-username"
export AADE_PASSWORD="your-aade-password"
which jq curl || sudo apt install jq curl
```
AADE credentials are used for authenticated read-only checks of announcements, rate changes, and system status. This skill never submits filings.
## Core Philosophy
- **File-First Processing**: Monitor and process government documents, not complex APIs
- **Reliable Operation**: Work offline with cached data when government sites unavailable
- **OpenClaw Native**: Built specifically for OpenClaw's strengths and limitations
- **Production Ready**: Error handling, logging, and recovery built-in from start
- **Greek Business Focus**: Professional alerts and reporting in Greek
## OpenClaw Commands
### Core AADE Monitoring Commands
```bash
# Primary monitoring operations
openclaw aade monitor --enable --government-sites --cache-updates
openclaw aade check-updates --since "24 hours" --urgent-only
openclaw aade download-announcements --date today --all-categories
openclaw aade scan-deadlines --compare-previous --alert-changes
# System status monitoring
openclaw aade status-check --taxis --mydata --efka --report-outages
openclaw aade system-health --uptime-tracking --performance-metrics
openclaw aade maintenance-schedule --upcoming --impact-assessment
# Document processing
openclaw aade process-documents --input /data/incoming/government/ --extract-deadlines
openclaw aade classify-updates --tax-changes --deadline-changes --system-updates
openclaw aade generate-alerts --priority high --recipients accounting-team
```
### Deadline & Rate Change Monitoring
```bash
# Deadline monitoring
openclaw aade monitor-deadlines --vat --income-tax --enfia --social-security
openclaw aade deadline-changes --since yesterday --client-impact-analysis
openclaw aade calendar-update --sync-changes --notify-affected-clients
# Rate and regulation changes
openclaw aade monitor-rates --vat-rates --tax-brackets --social-security
openclaw aade regulation-tracker --new-circulars --law-changes --implementation-dates
openclaw aade impact-analysis --rate-changes --client-calculations --cost-impact
```
### Integration & Reporting Commands
```bash
# Integration with other skills
openclaw aade integrate --cli-deadline-monitor --email-processor --meta-skill
openclaw aade export-data --format json --destination /data/dashboard/state/
openclaw aade sync-calendar --include-holidays
# Professional reporting
openclaw aade report-generate --daily --weekly --monthly --client-ready-greek
openclaw aade client-notifications --deadline-changes --rate-updates --professional-tone
openclaw aade compliance-dashboard --current-status --upcoming-deadlines --action-items
```
## OpenClaw File Processing Architecture
### File System Organization
```yaml
AADE_File_Structure:
input_monitoring: # Raw government documents arrive here
- /data/incoming/government/ # All AADE/government downloads
processing_workspace: # Ephemeral — cleared after pipeline
- /data/processing/compliance/ # Classification and extraction workspace
output_delivery:
- /data/dashboard/state/current-alerts.json # Active alerts for dashboard
- /data/dashboard/state/deadline-tracker.json # Updated deadline tracker
- /data/reports/compliance/ # Professional compliance reports
- /data/exports/compliance-deadlines.json # Calendar integration export
```
### Document Processing Pipeline
```yaml
Processing_Workflow:
step_1_download:
command: "openclaw aade download-batch --sources all --format pdf,html,xml"
input: "Government website monitoring"
output: "/data/incoming/government/{YYYYMMDD}/"
step_2_extract:
command: "openclaw aade extract-content --use-deepread --greek-language"
input: "/data/incoming/government/"
output: "/data/processing/compliance/"
step_3_classify:
command: "openclaw aade classify-importance --deadline-changes high --rate-changes high"
input: "/data/processing/compliance/"
output: "/data/processing/compliance/"
step_4_compare:
command: "openclaw aade detect-changes --compare-with-cache --highlight-differences"
input: "/data/processing/compliance/"
output: "/data/processing/compliance/"
step_5_validate:
command: "openclaw aade validate-data --cross-reference --accuracy-check"
input: "/data/processing/compliance/"
output: "/data/processing/compliance/"
step_6_generate:
command: "openclaw aade generate-outputs --alerts --reports --notifications"
input: "/data/processing/compliance/"
output: "/data/dashboard/state/ and /data/reports/compliance/"
```
## Intelligent Document Monitoring
### AADE Website Monitoring Strategy
```yaml
Government_Site_Monitoring:
primary_sources:
aade_main:
url: "https://www.aade.gr"
sections: ["announcements", "circulars", "deadlines", "rates"]
frequency: "every_2_hours"
taxis_updates:
url: "https://www1.aade.gr/taxisnet"
sections: ["system-announcements", "maintenance-schedules"]
frequency: "every_4_hours"
mydata_status:
url: "https://mydatapi.aade.gr"
sections: ["api-status", "system-updates", "technical-announcements"]
frequency: "hourly"
backup_sources:
press_releases:
url: "https://www.aade.gr/deltia-typou"
fallback: true
legal_database:
url: "https://www.aade.gr/nomothesia"
frequency: "daily"
```
### Intelligent Change Detection
```yaml
Change_Detection_Logic:
deadline_changes:
triggers:
- "Date changes in deadline tables"
- "New deadline announcements"
- "Extension or acceleration notices"
confidence_threshold: 0.95
validation: "Cross-reference multiple sources"
rate_changes:
triggers:
- "VAT rate modifications"
- "Tax bracket adjustments"
- "Social security rate updates"
effective_date_tracking: "Extract implementation dates"
impact_calculation: "Estimate client effects"
system_updates:
triggers:
- "Maintenance announcements"
- "New feature releases"
- "System outage notifications"
criticality_assessment: "Business impact analysis"
workaround_suggestions: "Alternative procedures"
```
## OpenClaw-Native Processing Features
### Robust Error Handling
```bash
# Error recovery commands
openclaw aade retry-failed --batch-id {id} --fix-network-issues
openclaw aade fallback-mode --use-cached-data --offline-operation
openclaw aade manual-review --flagged-updates --require-human-verification
# Monitoring and diagnostics
openclaw aade health-check --test-all-sources --report-failures
openclaw aade diagnostics --connection-test --parsing-test --alert-test
openclaw aade logs --filter errors --last 48h --include-context
```
### Caching & Offline Operation
```yaml
Caching_Strategy:
announcement_cache:
retention: "90 days"
update_frequency: "every_2_hours"
fallback_behavior: "Use cached data if source unavailable"
deadline_cache:
retention: "1 year"
critical_updates: "Force immediate refresh"
validation: "Compare multiple sources for accuracy"
system_status_cache:
retention: "7 days"
real_time_updates: "When possible"
offline_mode: "Report last known status with timestamp"
```
### Greek Language Processing
```yaml
Greek_Document_Processing:
text_extraction:
encoding: "UTF-8, Windows-1253, ISO-8859-7"
ocr_support: "Greek character recognition via deepread"
keyword_detection:
deadline_terms: ["προθεσμία", "λήξη", "υποβολή", "deadline"]
rate_terRelated in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.