{
  "schemaVersion": "1.0",
  "item": {
    "slug": "kenya-tax-rates",
    "name": "Kenya Tax Rates",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/enjuguna/kenya-tax-rates",
    "canonicalUrl": "https://clawhub.ai/enjuguna/kenya-tax-rates",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/kenya-tax-rates",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=kenya-tax-rates",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "CHANGELOG.md",
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/kenya-tax-rates"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/kenya-tax-rates",
    "agentPageUrl": "https://openagent3.xyz/skills/kenya-tax-rates/agent",
    "manifestUrl": "https://openagent3.xyz/skills/kenya-tax-rates/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/kenya-tax-rates/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Kenya Tax Rates Skill",
        "body": "Calculate Kenya payroll taxes and deductions with up-to-date rates for PAYE, SHIF, NSSF, and Housing Levy."
      },
      {
        "title": "Features",
        "body": "PAYE - 5-band progressive tax (10% to 35%)\nSHIF - 2.75% Social Health Insurance (replaced NHIF Oct 2024)\nNSSF - Two-tier pension with auto date-based limits\nHousing Levy - 1.5% Affordable Housing Levy\nTax Reliefs - Personal, insurance, pension, mortgage"
      },
      {
        "title": "Usage",
        "body": "Install the npm package:\n\nnpm install kenya-tax-rates"
      },
      {
        "title": "Quick Net Salary",
        "body": "import { getNetSalary } from 'kenya-tax-rates';\n\nconst netSalary = getNetSalary(100000);\n// Returns ~KES 75,000"
      },
      {
        "title": "Full Payroll Breakdown",
        "body": "import { calculatePayroll } from 'kenya-tax-rates';\n\nconst result = calculatePayroll({\n  grossSalary: 100000,\n  pensionContribution: 5000,  // optional\n  insurancePremium: 2000,     // optional\n});\n\n// Returns:\n// {\n//   grossSalary: 100000,\n//   taxableIncome: 93590,\n//   deductions: { shif: 2750, nssf: 2160, housingLevy: 1500, paye: 18594 },\n//   netSalary: 74995,\n//   employerContributions: { nssf: 2160, housingLevy: 1500 }\n// }"
      },
      {
        "title": "Individual Calculators",
        "body": "import { calculatePaye, calculateShif, calculateNssf, calculateHousingLevy } from 'kenya-tax-rates';\n\n// PAYE with reliefs\nconst paye = calculatePaye(85000);\n\n// SHIF (2.75%, min KES 300, no cap)\nconst shif = calculateShif(50000); // 1375\n\n// NSSF (auto-detects 2024/2025 rates based on current date)\nconst nssf = calculateNssf(80000);\n\n// Housing Levy (1.5%)\nconst levy = calculateHousingLevy(100000); // 1500"
      },
      {
        "title": "PAYE Monthly Bands",
        "body": "Income (KES)Rate0 - 24,00010%24,001 - 32,33325%32,334 - 500,00030%500,001 - 800,00032.5%Above 800,00035%"
      },
      {
        "title": "NSSF Limits (auto-selected by date)",
        "body": "PeriodLower LimitUpper LimitMax ContributionFeb 2024 - Jan 2025KES 7,000KES 36,000KES 2,160From Feb 2025KES 8,000KES 72,000KES 4,320"
      },
      {
        "title": "Reliefs",
        "body": "Personal Relief: KES 2,400/month\nInsurance Relief: 15% of premiums, max KES 5,000/month\nPension Deduction: Max KES 30,000/month"
      },
      {
        "title": "API Reference",
        "body": "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%)"
      },
      {
        "title": "Source",
        "body": "npm: kenya-tax-rates\nGitHub: enjuguna/kenya-tax-rates"
      }
    ],
    "body": "Kenya Tax Rates Skill\n\nCalculate Kenya payroll taxes and deductions with up-to-date rates for PAYE, SHIF, NSSF, and Housing Levy.\n\nFeatures\nPAYE - 5-band progressive tax (10% to 35%)\nSHIF - 2.75% Social Health Insurance (replaced NHIF Oct 2024)\nNSSF - Two-tier pension with auto date-based limits\nHousing Levy - 1.5% Affordable Housing Levy\nTax Reliefs - Personal, insurance, pension, mortgage\nUsage\n\nInstall the npm package:\n\nnpm install kenya-tax-rates\n\nQuick Net Salary\nimport { getNetSalary } from 'kenya-tax-rates';\n\nconst netSalary = getNetSalary(100000);\n// Returns ~KES 75,000\n\nFull Payroll Breakdown\nimport { calculatePayroll } from 'kenya-tax-rates';\n\nconst result = calculatePayroll({\n  grossSalary: 100000,\n  pensionContribution: 5000,  // optional\n  insurancePremium: 2000,     // optional\n});\n\n// Returns:\n// {\n//   grossSalary: 100000,\n//   taxableIncome: 93590,\n//   deductions: { shif: 2750, nssf: 2160, housingLevy: 1500, paye: 18594 },\n//   netSalary: 74995,\n//   employerContributions: { nssf: 2160, housingLevy: 1500 }\n// }\n\nIndividual Calculators\nimport { calculatePaye, calculateShif, calculateNssf, calculateHousingLevy } from 'kenya-tax-rates';\n\n// PAYE with reliefs\nconst paye = calculatePaye(85000);\n\n// SHIF (2.75%, min KES 300, no cap)\nconst shif = calculateShif(50000); // 1375\n\n// NSSF (auto-detects 2024/2025 rates based on current date)\nconst nssf = calculateNssf(80000);\n\n// Housing Levy (1.5%)\nconst levy = calculateHousingLevy(100000); // 1500\n\nCurrent Tax Rates\nPAYE Monthly Bands\nIncome (KES)\tRate\n0 - 24,000\t10%\n24,001 - 32,333\t25%\n32,334 - 500,000\t30%\n500,001 - 800,000\t32.5%\nAbove 800,000\t35%\nNSSF Limits (auto-selected by date)\nPeriod\tLower Limit\tUpper Limit\tMax Contribution\nFeb 2024 - Jan 2025\tKES 7,000\tKES 36,000\tKES 2,160\nFrom Feb 2025\tKES 8,000\tKES 72,000\tKES 4,320\nReliefs\nPersonal Relief: KES 2,400/month\nInsurance Relief: 15% of premiums, max KES 5,000/month\nPension Deduction: Max KES 30,000/month\nAPI Reference\nFunction\tDescription\ncalculatePayroll(input)\tFull payroll with all deductions\ngetNetSalary(gross, date?)\tQuick net salary calculation\ncalculatePaye(taxableIncome)\tPAYE with reliefs\ncalculateShif(grossSalary)\tSHIF contribution\ncalculateNssf(earnings, date?)\tNSSF two-tier contribution\ncalculateHousingLevy(grossSalary)\tHousing levy (1.5%)\nSource\nnpm: kenya-tax-rates\nGitHub: enjuguna/kenya-tax-rates"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/enjuguna/kenya-tax-rates",
    "publisherUrl": "https://clawhub.ai/enjuguna/kenya-tax-rates",
    "owner": "enjuguna",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/kenya-tax-rates",
    "downloadUrl": "https://openagent3.xyz/downloads/kenya-tax-rates",
    "agentUrl": "https://openagent3.xyz/skills/kenya-tax-rates/agent",
    "manifestUrl": "https://openagent3.xyz/skills/kenya-tax-rates/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/kenya-tax-rates/agent.md"
  }
}