skills/vn-payroll/SKILL.md
Calculates Net Income, Personal Income Tax (PIT), and Social Insurance (BHXH) based on Vietnam's progressive tax brackets.
npx skillsauth add arisng/github-copilot-fc vn-payrollInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Description: Calculates Net Income, Personal Income Tax (PIT), and Social Insurance (BHXH) based on Vietnam's progressive tax brackets.
Tools:
calc_pit.py: The main calculation engine.
Usage: To calculate a salary breakdown, run the python script with the following arguments:
python calc_pit.py --gross <AMOUNT> --dependents <COUNT> --region <1|2|3|4>
Arguments: --gross: The gross monthly salary in VND (e.g., 80000000). --dependents: Number of qualified dependents (children, elderly parents). Default is 0. --region: Minimum wage region (1 is Hanoi/HCM/Nha Trang). Default is 1.
Example Task: "Calculate net salary for 50 million VND with 1 baby." -> Command: run_skill_script(skill_name="vn-payroll", script_name="calc_pit.py", arguments="--gross 50000000 --dependents 1")
Output Format: The script outputs a formatted text block. Present this directly to the user.
devops
Programmatically create tldraw whiteboards and visualize them with a self-hosted tldraw instance. Create boards with shapes, text, and connectors, then deploy to a self-hosted server for collaborative editing and gallery management.
tools
Execute Google Cloud Platform operations using the gcloud CLI (and gsutil/bq where applicable). Use when the user wants to: authenticate with GCP, manage GCP resources, deploy applications, configure projects or IAM, view logs, run SQL/BigQuery, or interact with any GCP service from the command line. Triggers on phrases like "gcloud", "Google Cloud CLI", "deploy to GCP", "create a VM", "Cloud Run", "GKE cluster", "Cloud Storage bucket", "set GCP project", "service account", "Cloud Functions", "App Engine deploy", or any request to manage Google Cloud resources via command line.
testing
Grilling session that challenges your plan against the existing domain model, sharpens terminology, and updates documentation (CONTEXT.md, ADRs) inline as decisions crystallise. Use when user wants to stress-test a plan against their project's language and documented decisions.
development
Session-scoped git commit orchestrator that commits only current-session changes and leaves unrelated dirty worktree edits untouched. Inherits git-atomic-commit for atomic grouping and commit message execution, and git-commit-scope-constitution for scope governance and validation. Use when asked to commit this session only or isolate commits from mixed worktree state.