基于易经思维设计的配置管理库,将硬编码重构为配置驱动。
Scanned 9/7/2026
Install to Claude Code
npx -y skills add modbender/skill-library-mcp --skill config-manager --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Config Manager?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/modbender-config-manager)More formats (shields.io, HTML) on the badges page.
---
name: Config Refactor - 配置驱动重构工具
description: 基于易经思维设计的配置管理库,将硬编码重构为配置驱动。
---
# Config Refactor - 配置驱动重构工具
**版本**: 1.0.0
**作者**: Claw
**许可证**: MIT
---
## 功能说明
基于易经思维设计的配置管理库,将硬编码重构为配置驱动。
### 核心功能
- 动态配置管理(支持字符串、数字、布尔类型)
- 配置文件加载(key=value 格式)
- 配置验证与默认值
- 类型安全访问
### 适用场景
- 需要将硬编码改为配置驱动的项目
- 需要动态调整配置的系统
- 需要支持多环境配置的应用
---
## 使用示例
```c
#include "code.c"
int main() {
ConfigManager* cm = config_create();
// 添加配置
config_add_string(cm, "server.host", "localhost");
config_add_int(cm, "server.port", 8080);
config_add_bool(cm, "server.ssl", false);
// 获取配置
const char* host = config_get_string(cm, "server.host", "localhost");
int port = config_get_int(cm, "server.port", 80);
config_destroy(cm);
return 0;
}
```
---
## 易经思维应用
- **简易原则**: 配置即键值对,抓住本质
- **变易原则**: 支持多种类型,动态扩展
- **整体思维**: 配置管理整体策略
---
## 测试
编译运行:
```bash
gcc -o config_demo code.c -DCONFIG_DEMO
./config_demo
```
---
## 变更日志
### 1.0.0
- 初始版本
- 支持字符串、整数、布尔类型
- 配置文件加载/保存
- 类型安全访问
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Playbook for creating and editing uCoz landing pages via MCP tools (`templates_tool`, `ftp_tool`, `modules_tool`). Use for tasks such as: "build a landing page", "update the homepage as a landing page", "create a promo page on the homepage", "add a lead form / menu / SEO to the homepage". Homepage: `page_list`, `page_get`; first publish — `page_update` with full `page_tmpl`; HTML edits after generation — `patch_template` (module_id=2, template_id=1), not `update_template`. Activate the mail f...