OpenClaw skill packs

OpenClaw skills.

Skills extend your OpenClaw agent with real-world integrations. Here are the best AU-specific skills, how to install them, and how to write your own.

Try OpenClaw free → Setup guide

What are OpenClaw skills?

Skills (sometimes called plugins or extensions) are JavaScript files that extend your OpenClaw agent's capabilities. A skill defines triggers (phrases or patterns that activate it), handlers (code that runs when triggered), and responses. Skills live in your agent's /skills directory and are loaded automatically on restart.

NemoClam ships with an AU skill pack pre-installed. All plans include full filesystem access to install additional skills from the community library or write your own.

NemoClam AU skill pack

au-tax.js

ATO BAS deadline reminders, GST quarter tracking, tax return lodgement alerts. Configurable per financial year.

commbank.js

Commonwealth Bank transaction parsing from email notifications. Daily balance summaries. Spend categorisation.

gmail-triage.js

Morning inbox summary, priority flagging by sender, draft reply suggestions, newsletter unsubscribe triggers.

slack-daily.js

Morning digest of your Slack workspace — unread highlights, @mentions, and action items.

au-timezone.js

AEST/AEDT awareness, state-aware time conversions, DST transition handling.

ato-reminder.js

ATO lodgement calendar integration. BAS, PAYG, STP reminders delivered via Telegram.

How to install a skill

# SSH into your NemoClam instance ssh root@YOUR_INSTANCE_IP # Copy skill file to skills directory cp my-skill.js /opt/openclaw/skills/ # Restart agent to load new skill pm2 restart openclaw # Verify skill loaded pm2 logs openclaw | grep "skills loaded"

How to write a skill

// my-skill.js — basic skill template module.exports = {{ name: 'my-skill', description: 'Description of what this skill does', skills: [ {{ name: 'my-trigger', trigger: /keyword|phrase/i, handler: async (msg, context) => {{ // Your code here return 'Response to the user'; }} }} ] }};

Community skill resources

NemoClam users: AU skills are pre-installed and auto-load on restart. SSH into your instance at any time to add, modify, or write custom skills — full filesystem and npm access included on all paid plans.