← 返回 Skills 市场
297
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install im-social-insurance-backpay
功能描述
内蒙古养老保险补缴计算工具。用于计算内蒙古地区养老保险补缴金额,包括本金、利息(按月复利计息)、滞纳金等明细。 **触发关键词**:社保补缴、社保补费、补缴、补费、养老保险补缴、社保欠费计算 **使用场景**: 1. 计算历史欠缴养老保险的补缴金额 2. 估算补缴本金、利息、滞纳金明细 3. 对比不同缴费档次(6...
使用说明 (SKILL.md)
内蒙古养老保险补缴计算
功能概述
本工具用于计算内蒙古地区养老保险补缴金额,支持:
- 按历年社平工资计算缴费基数
- 按月复利计算利息(从缴费当月开始计息)
- 按日万分之五计算滞纳金
- 支持60%/80%/100%/150%/200%/300%六档缴费比例
- 分别汇总有滞纳金和无滞纳金金额
计算规则
1. 缴费基数
按当年内蒙古社平工资 × 缴费档次比例(60%/80%/100%/150%/200%/300%)
2. 缴费比例
- 个人缴费(进入个人账户,逐步提高):
- 1996–1997 年:3%
- 1998–1999 年:4%
- 2000 年:5%
- 2001–2002 年:6%
- 2003–2004 年:7%
- 2005 年至今:8%
- 单位缴费(随政策调整):
- 1996–1997 年:20%
- 1998–1999 年:26%
- 2000 年:25%
- 2001–2002 年:24%
- 2003–2004 年:23%
- 2005–2017 年:20%
- 2018 年 5–12 月:19%(阶段性下调)
- 2019 年 1–4 月:19%
- 2019 年 5 月起:16%(国家统一调整)
- 2021 年至今:16%
3. 利息计算
- 每月缴费从当月开始按月复利计息
- 利率按历年社保记账利率
- 计算公式:
终值 = 本金 × (1 + 月利率)^月数
4. 滞纳金计算
- 费率:按日万分之五(0.05%)
- 起算:欠缴次月1日
- 截止:补缴时间
使用方法
命令行调用
单档次计算:
python scripts/calculate_backpay.py 2004 4 2011 3 --rate 0.6 --target 2026 3
多档次对比计算:
python scripts/calculate_backpay.py 2004 4 2011 3 --all --target 2026 3
自定义缴费基数:
# 指定月缴费基数为 5000 元(忽略社平工资和档次)
python scripts/calculate_backpay.py 2004 4 2011 3 --monthly-base 5000
全部可选参数:
--rate:缴费档次比例(默认 0.6,即 60%)--all:计算全部六档对比--target YEAR MONTH:补缴时间(默认系统当前年月)--monthly-base:自定义月缴费基数(元),设置后忽略 --rate 和社平工资
Python调用
from scripts.calculate_backpay import calculate_backpay
result = calculate_backpay(
start_year=2004,
start_month=4,
end_year=2011,
end_month=3,
base_rate=0.6,
target_year=2026,
target_month=3,
custom_monthly_base=None, # 自定义月缴费基数(可选)
)
print(result['summary'])
参考数据
历年社平工资
详见 references/social_avg_wages.md
包含2004-2024年内蒙古城镇非私营单位在岗职工年平均工资。
历年记账利率
详见 references/interest_rates.md
包含2004-2024年养老保险个人账户记账利率。
政策规则
包含缴费比例、滞纳金规则、补缴限制等政策说明。
输出示例
{
"start_date": "2004-04",
"end_date": "2011-03",
"target_date": "2026-03",
"base_rate": 0.6,
"summary": {
"personal_principal": 8499.7,
"unit_principal": 17886.14,
"total_principal": 26385.83,
"personal_interest": 5297.78,
"unit_interest": 11119.63,
"total_interest": 16417.4,
"personal_late_fee": 27120.21,
"unit_late_fee": 57541.34,
"total_late_fee": 84661.55,
"grand_total": 127464.79,
"total_without_late_fee": 42803.24
}
}
注意事项
- 数据准确性:历年社平工资和利率数据以官方公布为准,本工具数据仅供参考
- 滞纳金减免:部分地区对困难群体有滞纳金减免政策,实际金额以社保局核算为准
- 单位欠缴:如为单位原因欠缴,滞纳金应由单位承担
- 计算精度:计算结果保留两位小数,实际金额可能略有差异
数据来源
- 内蒙古统计局
- 人社部门公布数据
- 人力资源社会保障部
- 财政部
安全使用建议
This skill appears to implement the stated calculator locally and does not ask for credentials or network calls, but do not rely on it for official amounts yet. Before using: (1) inspect/run the full script locally — the included snippet shows a syntax error that may crash the tool; (2) verify units in SOCIAL_AVG_WAGES (some entries are divided by 12 while later years are not) and confirm interest-rate values against official sources; (3) run known test cases (e.g., the SKILL.md example) and compare results with an independent calculator or with local social security office outputs; (4) consider fixing/adding unit tests and linting the code. If you want me to, I can (a) review the full (untruncated) file for errors, (b) point out exact lines to fix, or (c) run example calculations and show expected vs. actual results (you must paste the full script or allow execution locally).
功能分析
Type: OpenClaw Skill
Name: im-social-insurance-backpay
Version: 0.1.0
The skill bundle is a legitimate utility for calculating Inner Mongolia social insurance backpayments. The Python script (scripts/calculate_backpay.py) performs mathematical calculations based on hardcoded historical data and user input without any network access, file system modifications, or suspicious execution patterns. The documentation (SKILL.md) and reference files are consistent with the stated purpose and contain no evidence of prompt injection or malicious intent.
能力评估
Purpose & Capability
Name/description align with the provided files: SKILL.md, local reference data (wages, rates, policy) and a Python script that implements the calculations. No unrelated binaries, credentials, or external services are requested.
Instruction Scope
Runtime instructions are limited to running the included Python script or importing its calculate_backpay() function — no network endpoints or secret access. However, the script and reference data contain inconsistencies (see below) and the shown script content is truncated/contains a syntax error in format_tier_comparison (a line 'for tier i' is malformed). These issues mean the tool may crash or return incorrect numbers; SKILL.md gives no tests or validation guidance.
Install Mechanism
No install specification; this is instruction-only with an included Python script. Nothing is downloaded or written to disk by an installer, which limits supply-chain risk.
Credentials
No environment variables, credentials, or config paths are required. The code only uses bundled reference data and parameters passed to the functions/CLI.
Persistence & Privilege
The skill does not request always:true or other elevated presence. Default autonomous invocation is allowed by platform but the skill itself does not request extra privileges.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install im-social-insurance-backpay - 安装完成后,直接呼叫该 Skill 的名称或使用
/im-social-insurance-backpay触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v0.1.0
- Initial release of im-social-insurance-backpay.
- Provides calculation tools for Inner Mongolia pension insurance backpay, including principal, interest (monthly compound), and late fees.
- Supports six payment grade comparisons (60%/80%/100%/150%/200%/300%) and custom monthly base contributions.
- Displays breakdowns for both individual and company shares, with/without late fees.
- Allows command-line and Python use with flexible parameters such as custom base, target date, and detailed summaries.
元数据
常见问题
内蒙古养老保险补缴计算工具 是什么?
内蒙古养老保险补缴计算工具。用于计算内蒙古地区养老保险补缴金额,包括本金、利息(按月复利计息)、滞纳金等明细。 **触发关键词**:社保补缴、社保补费、补缴、补费、养老保险补缴、社保欠费计算 **使用场景**: 1. 计算历史欠缴养老保险的补缴金额 2. 估算补缴本金、利息、滞纳金明细 3. 对比不同缴费档次(6... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 297 次。
如何安装 内蒙古养老保险补缴计算工具?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install im-social-insurance-backpay」即可一键安装,无需额外配置。
内蒙古养老保险补缴计算工具 是免费的吗?
是的,内蒙古养老保险补缴计算工具 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
内蒙古养老保险补缴计算工具 支持哪些平台?
内蒙古养老保险补缴计算工具 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 内蒙古养老保险补缴计算工具?
由 Beta(@binbin)开发并维护,当前版本 v0.1.0。
推荐 Skills