Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计提醒

singapore-sme-compliance新加坡中小企业合规

Agent Skill

singapore-sme-compliance 用于处理音频、语音、转写和声音素材相关任务,适合在 OpenClaw 中需要整理音频流程、转写内容或生成配音素材时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,060

周安装

125

GitHub Stars

公开资料未说明

下载量

990
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:singapore-sme-compliance(新加坡中小企业合规)
来源仓库:https://github.com/redwoo/singapore-sme-compliance
安装命令:
openclaw skills install singapore-sme-compliance
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install singapore-sme-compliance

简介

singapore-sme-compliance 用于处理音频和税务合规任务,适合在 OpenClaw 中自动化中小企业申报时使用。

  • 主要功能包括 GST 计算、PEPPOL 发票验证、税务报告生成和 IRAS 截止日期提醒。
  • 通过 openclaw skills install 命令从 ClawHub 安装,需确认权限范围。
  • 建议在使用前检查维护状态及是否会触发外部系统调用或文件生成操作。
  • 适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
singapore-sme-compliance
description
>
homepage
https://github.com/openclaw/openclaw
metadata
openclaw
requires
bins
["bc"]
files
["scripts/*"]
official
false

Singapore SME Compliance Assistant

Help Singapore SMEs automate compliance tasks: GST calculation, PEPPOL invoice validation, tax report generation, and regulatory checklist.

Quick Start

Check GST registration requirements:

# Check if business needs GST registration (threshold: S$1M annual turnover)
curl -s "https://www.iras.gov.sg/api/gst-threshold-check" -d '{"turnover": 1000000}'

GST calculation:

# Calculate GST (9% as of 2024)
curl -s "https://api.gstcalculator.sg/calculate" -d '{"amount": 1000, "rate": 0.09}'
# Returns: {amount: 1000, gst: 90, total: 1090}

Key Features

1. GST Registration Checker

Singapore businesses must register for GST if:

  • Annual taxable turnover exceeds S$1 million (mandatory)
  • You expect turnover to exceed S$1 million in next 12 months (voluntary)

Usage:

# Check registration requirement
echo "Check GST registration for turnover: S$1,200,000"

2. GST Calculator

Current GST rates:

  • 2023: 8%
  • 2024 onwards: 9%

Calculate GST:

# For invoice amount
Invoice: S$5,000
GST (9%): S$450
Total: S$5,450

3. PEPPOL Invoice Validator

Singapore uses PEPPOL (InvoiceNow) for e-invoicing.

Validate PEPPOL invoice:

  1. Check UEN format (9 or 10 characters)
  2. Verify invoice structure (UBL 2.1 format)
  3. Validate against IRAS requirements

Checklist:

  • [ ] Supplier UEN present
  • [ ] Buyer UEN present
  • [ ] Invoice number unique
  • [ ] Tax amount calculated correctly
  • [ ] Currency code (SGD)
  • [ ] Payment terms specified

4. Monthly GST Return (GST F5) Helper

Required data for GST F5:

  • Box 1: Total value of standard-rated supplies
  • Box 2: Total value of zero-rated supplies
  • Box 3: Total value of supplies (Box 1 + Box 2)
  • Box 4: Output tax due
  • Box 5: Input tax claimed
  • Box 6: Net GST payable/refundable

Monthly checklist:

□ Collect all tax invoices (purchases)
□ Collect all tax invoices (sales)
□ Calculate output tax (sales)
□ Calculate input tax (purchases)
□ Reconcile with accounting records
□ File GST F5 by deadline (1 month after period end)

5. Compliance Calendar

Key deadlines:

DeadlineRequirement
Monthly (if on monthly filing)GST F5 return
Quarterly (default)GST F5 return (within 1 month after quarter end)
AnnuallyEstimated Chargeable Income (ECI) - within 3 months after FYE
AnnuallyCorporate Tax Return (Form C-S/C) - by Nov 30

Reminders:

  • Set up auto-reminders 7 days before deadline
  • Prepare documents 3 days before filing
  • Keep records for 5 years (IRAS requirement)

Common Compliance Scenarios

Scenario 1: New Business Registration

Steps:

  1. Register business with ACRA
  2. Get UEN (Unique Entity Number)
  3. Check if GST registration required
  4. Set up accounting system
  5. Register for CorpPass (for digital services)

Scenario 2: Importing Goods

Requirements:

  • Customs import permit
  • Pay import GST (7% or 9%)
  • Claim input tax (if GST registered)
  • Keep import documentation

Scenario 3: Exporting Goods

Requirements:

  • Zero-rate exports (0% GST)
  • Keep export documentation
  • Declare in GST return (Box 2)

IRAS Resources

Penalty Information

Late GST Filing:

  • First offence: S$200 penalty
  • Repeat offence: S$500-S$5,000
  • Continued failure: Prosecution possible

Incorrect Information:

  • Up to 200% of tax undercharged
  • Criminal prosecution for fraud

Automation Workflows

Monthly GST Preparation (Automated)

Day 1 of new month:

  1. Fetch all sales invoices from previous month
  2. Calculate total output tax
  3. Fetch all purchase invoices
  4. Calculate total input tax
  5. Generate GST F5 draft
  6. Send reminder to accountant

Commands:

# Generate monthly GST summary
echo "Generate GST report for $(date -d 'last month' '+%Y-%m')"

# Calculate totals
Output Tax: Sum of GST on all sales invoices
Input Tax: Sum of GST on all purchase invoices
Net GST: Output - Input

Quarterly Compliance Check

End of each quarter:

  1. Review all transactions
  2. Verify GST calculations
  3. Check PEPPOL compliance
  4. Update compliance calendar
  5. Prepare for GST F5 filing

Integration Examples

With Accounting Software

Xero/QuickBooks integration:

# Export sales data
curl -s "https://api.xero.com/api/Invoices?status=PAID" \
  -H "Authorization: Bearer TOKEN"

# Export purchase data
curl -s "https://api.xero.com/api/Bills?status=PAID" \
  -H "Authorization: Bearer TOKEN"

With IRAS MyTax Portal

File GST F5 via API:

# Submit GST return (requires CorpPass authentication)
curl -s "https://apiservices.iras.gov.sg/gst/f5" \
  -X POST \
  -H "Authorization: Bearer CORPPASS_TOKEN" \
  -d '{"period": "202403", "box1": 100000, "box4": 9000, ...}'

Error Handling

Common Errors

"GST registration required"

  • Turnover exceeded S$1M
  • Action: Register within 30 days

"PEPPOL invoice rejected"

  • Invalid UEN format
  • Missing required fields
  • Action: Validate against InvoiceNow schema

"Late filing penalty"

  • File immediately
  • Pay penalty
  • Set up auto-reminders

Best Practices

  1. Keep digital records - IRAS accepts digital records
  2. Reconcile monthly - Don't wait until quarter end
  3. Use accounting software - Xero, QuickBooks, SQL Accounting
  4. Set up auto-reminders - Never miss a deadline
  5. Review input tax claims - Ensure all claims are valid
  6. Keep export documentation - For zero-rated supplies
  7. Train staff - On GST requirements and PEPPOL

Support Resources

  • IRAS Helpline: +65 1800 356 8300
  • InvoiceNow (PEPPOL): +65 6248 0909
  • ACRA: +65 6248 6000
  • Enterprise Singapore: +65 6898 1800

Updates

  • 2026-03-27: Initial release
  • GST rate: 9% (2024 onwards)
  • PEPPOL mandatory for government suppliers
  • B2B PEPPOL expansion expected 2027-2028

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

75.1%
按下载量换算743

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills