← All skills
Tencent SkillHub · Data Analysis

Kenya Tax Rates

Calculate Kenya payroll deductions - PAYE, SHIF, NSSF, Housing Levy with accurate 2024/2025 rates

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Calculate Kenya payroll deductions - PAYE, SHIF, NSSF, Housing Levy with accurate 2024/2025 rates

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
CHANGELOG.md, SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.1

Documentation

ClawHub primary doc Primary doc: SKILL.md 11 sections Open source page

Kenya Tax Rates Skill

Calculate Kenya payroll taxes and deductions with up-to-date rates for PAYE, SHIF, NSSF, and Housing Levy.

Features

PAYE - 5-band progressive tax (10% to 35%) SHIF - 2.75% Social Health Insurance (replaced NHIF Oct 2024) NSSF - Two-tier pension with auto date-based limits Housing Levy - 1.5% Affordable Housing Levy Tax Reliefs - Personal, insurance, pension, mortgage

Usage

Install the npm package: npm install kenya-tax-rates

Quick Net Salary

import { getNetSalary } from 'kenya-tax-rates'; const netSalary = getNetSalary(100000); // Returns ~KES 75,000

Full Payroll Breakdown

import { calculatePayroll } from 'kenya-tax-rates'; const result = calculatePayroll({ grossSalary: 100000, pensionContribution: 5000, // optional insurancePremium: 2000, // optional }); // Returns: // { // grossSalary: 100000, // taxableIncome: 93590, // deductions: { shif: 2750, nssf: 2160, housingLevy: 1500, paye: 18594 }, // netSalary: 74995, // employerContributions: { nssf: 2160, housingLevy: 1500 } // }

Individual Calculators

import { calculatePaye, calculateShif, calculateNssf, calculateHousingLevy } from 'kenya-tax-rates'; // PAYE with reliefs const paye = calculatePaye(85000); // SHIF (2.75%, min KES 300, no cap) const shif = calculateShif(50000); // 1375 // NSSF (auto-detects 2024/2025 rates based on current date) const nssf = calculateNssf(80000); // Housing Levy (1.5%) const levy = calculateHousingLevy(100000); // 1500

PAYE Monthly Bands

Income (KES)Rate0 - 24,00010%24,001 - 32,33325%32,334 - 500,00030%500,001 - 800,00032.5%Above 800,00035%

NSSF Limits (auto-selected by date)

PeriodLower LimitUpper LimitMax ContributionFeb 2024 - Jan 2025KES 7,000KES 36,000KES 2,160From Feb 2025KES 8,000KES 72,000KES 4,320

Reliefs

Personal Relief: KES 2,400/month Insurance Relief: 15% of premiums, max KES 5,000/month Pension Deduction: Max KES 30,000/month

API Reference

FunctionDescriptioncalculatePayroll(input)Full payroll with all deductionsgetNetSalary(gross, date?)Quick net salary calculationcalculatePaye(taxableIncome)PAYE with reliefscalculateShif(grossSalary)SHIF contributioncalculateNssf(earnings, date?)NSSF two-tier contributioncalculateHousingLevy(grossSalary)Housing levy (1.5%)

Source

npm: kenya-tax-rates GitHub: enjuguna/kenya-tax-rates

Category context

Data access, storage, extraction, analysis, reporting, and insight generation.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs
  • SKILL.md Primary doc
  • CHANGELOG.md Docs