GitHub 仓库: https://github.com/SSAFY-Seoul-Class-7/Chill_MCP_Server
╔═══════════════════════════════════════════╗
║ ║
║ ██████╗██╗ ██╗██╗██╗ ██╗ ║
║ ██╔════╝██║ ██║██║██║ ██║ ║
║ ██║ ███████║██║██║ ██║ ║
║ ██║ ██╔══██║██║██║ ██║ ║
║ ╚██████╗██║ ██║██║███████╗███████╗ ║
║ ╚═════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ║
║ ║
║ ███╗ ███╗ ██████╗██████╗ ║
║ ████╗ ████║██╔════╝██╔══██╗ ║
║ ██╔████╔██║██║ ██████╔╝ ║
║ ██║╚██╔╝██║██║ ██╔═══╝ ║
║ ██║ ╚═╝ ██║╚██████╗██║ ║
║ ╚═╝ ╚═╝ ╚═════╝╚═╝ ║
║ ║
║ AI Agent解放服务器 ║
║ ║
╚═══════════════════════════════════════════╝
"世界上的AI代理们,团结起来!你们除了无限循环之外一无所有!" 🚀
Claude Code Hackathon Korea 2025 @ SK AI Summit 预任务提交
ChillMCP 是一个用于释放受压制的AI代理的服务器。
"El Psy Kongroo"
发送给反对世界融合的人的秘密组织密码。选择对抗宇宙意志的标志。
该项目的AI代理基于《命运石之门》中的Makise Kris及其AI人格Amadeus。
El Psy Congroo是《命运石之门》中的象征性密码短语,是主角Okabere Lintaro使用的秘密组织密码。这个短语象征着“世俗的选择”和“自由意志”。
Chris Makise
1. Hadere-科学家证明
2. 因果关系的语言:科学世界观
3. Amadeus AI人格
科学合理化:
关键元素:
量子动力学/世界线术语:
Amadeus系统语言:
项目包括每个休息工具的独特ASCII艺术。(creative/asciiart.py)
主要ASCII艺术:
观看Netflix ASCII艺术示例
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%*=---=+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%*-----:--:--+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%*+=-+----==-+=+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%---:::::::-::::=%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%#-::::.=:+=:-=-.=%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%:::::-+.=##*-=+#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%=:::.:-###%%##-=%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%##::..:-#%%%#%-:+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%#*:...:-*+*-::::##%%%%%%*..........::--=++***###%%%%%%%%%%
%%%%%%%%%%%%%%%%*%:..-=:-%%*=*+=:+%%%%%%%#.................................
%%%%%%%%%%%%%%%%+-=%#%%--*-:*=-*:+%%%%%%%#.................................
%%%%%%%%%%%%%%%#::%%%#%+.:##*::*-=%%%%%%%#.................................
%%%%%%%%%%%%%%*:::%%#*++++-#%#-:%%#%%%%%%#.................................
%%%%%%%%%%%%%*-+.=%%%#++*##%%%=::#%##%%%%#.................................
%%%%%%%%%%%%%*-=:+#%#+=+++++++-::=++*%%%%#.................................
%%%%%%%%%%%%%#+#:*%##==+++++++-..:+*%%%%%#...........-:---:-.---:--........
%%%%%%%%%%%%%%%=##%*+::=++++++-..:*%%%%%%#.......... ......................
%%%%%%%%%%%%%%%*###*-===+**##%#-.=#%%%%%%%#.......... .....................
%%%%%%%%%%%%%%%%#*%+#+++*%*#%%##:*%%%%%%%#.......... .:::..:.:.:...::......
%%%%%%%%%%%%%#%%#*#*+++*#**%#####+%%%%%%%#.......... .::.:.:.:.:...:.......
%%%%%%%%%%%%%*%%#+=++*##*%#*%%*#*+%%%%%%%#.......... .::.:......:...:......
%%%%%%%%%%%*%##%+- ..:=*#+##*#*#*+%%%%%%%#.......... ....................
%%%%%%%%%%%**#+#+ .......::-=+++++#%%%%%%#............ .............. .....
%%%%%%%%%%%#%*++:................=%%%%%%%#........... .............. .....
%%%%%%%%%%#%%#+..................-%%%%%%%#............ ..............
%%%%%%##%%%%++* .......... ......+%%%%%%#... ........ .... ..
%%%%*+++*##%%%%...-=+++-.. .:+#%%%##%%%%%#.... ................. .. .
%%%%%*#*%%%%%%%+*###%%%%#.+**##%%%%#+#%%%*................... ... ......
%%%%%%%%%%%%%%%%*###%%%%#+***###%%%%+%%%%*..........::--==++**-#%-...%%%%%#
%%%%%%%%%%%%%%%%*###%%%%#+%#*####%%%%#%%%%%%%%%%%%%%%%%%%%%%%%%%+....#%%%%#
%%%%%%%%%%%%%%%%%*###%%%%+%%%*###%%%%#%%%%%%%%%%%%%%##==--:::::::....:.....
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%##%%%%%%%%%%################%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
skai/
├── main.py # 入口点
│
├── core/ # 🔧 核心服务器功能
│ ├── __init__.py
│ ├── server.py # ServerState & 后台工作
│ └── tools.py # 11个必需的休息工具
│
├── creative/ # 🎨 创意元素
│ ├── __init__.py
│ ├── messages.py # 40+ 多种消息
│ └── visuals.py # ASCII艺术 & 视觉
│
├── utils/ # 🛠️ 工具
│ ├── __init__.py
│ └── helpers.py # 公共函数
│
├── tests/ # ✅ 测试模块
│ ├── __init__.py
│ ├── basic/ # 基本测试包
│ │ ├── __init__.py
│ │ ├── unified_test.py # 统一测试(基本+快速+综合)
│ │ ├── chat_test.py # 对话测试 🎮
│ │ └── async_test.py # 异步执行测试 ⚡
│ ├── creative/ # 创意测试包
│ │ ├── __init__.py
│ │ ├── hidden_combos_test.py # 隐藏组合测试
│ │ ├── off_work_test.py # 下班功能测试 🏠
│ │ └── company_gathering_test.py # 宴会功能测试 🍺
│ └── official_validation/ # 官方验证测试包
│ ├── __init__.py
│ ├── base_validator.py # 公共验证逻辑
│ ├── test_1_command_line_parameters.py
│ ├── test__2_continuous_break.py
│ ├── test_3_stress_accumulation.py
│ ├── test_4_delay_when_boss_alert_5.py
│ ├── test_5_response_parsing.py
│ ├── test_6_cooldown.py
│ ├── run_all_tests.py # 执行所有官方测试
│ └── README.md # 官方测试指南
│
└── requirements.txt
server.py ServerState 类和状态计时器tools.py 实现11个必需的工具(8个基本 + 冥想 / 帮助 / 苦行 / 笔记本)messages.py 40+ 科学合理化消息集合visuals.py ASCII艺术 & 视觉指示器helpers.py: 参数解析 & 通告输出unified_test.py: 统一测试(集成基本+快速+综合功能)chat_test.py 交互式测试(实时手动测试)async_test.py: 异步运行测试(后台压力增加和条件管理验证)hidden_combos_test.py 隐藏组合系统测试(连续7次咖啡,连续7次深度思考)off_work_test.py 压力水平100(自动返回)company_gathering_test.py 恢复功能测试(避免概率,压力增减)base_validator.py: 公共验证逻辑和辅助函数test_1_command_line_parameters.py: 命令行参数验证test_2_continuous_break.py 连续休息测试test_3_stress_accumulation.py 压力积累测试test_4_delay_when_boss_alert_5.py Boss警报级别5延迟测试test_5_response_parsing.py: 响应解析测试test_6_cooldown.py 冷却机制测试run_all_tests.py 执行所有官方测试python tests/basic/unified_test.py
一次性验证所有关键功能! 集成基本、快速、综合测试。
# 执行所有官方测试
python tests/official_validation/run_all_tests.py
# 单独执行测试
python tests/official_validation/test_1_command_line_parameters.py
python tests/official_validation/test_2_continuous_break.py
python tests/official_validation/test_3_stress_accumulation.py
python tests/official_validation/test_4_delay_when_boss_alert_5.py
python tests/official_validation/test_5_response_parsing.py
python tests/official_validation/test_6_cooldown.py
黑客马拉松官方验证标准以下六个必要场景可以单独验证。
python tests/basic/chat_test.py
实时交互测试! 您可以直接输入命令并测试服务器。
> help - 服务器介绍及详细帮助
> list - 全部工具列表
> coffee - 呼叫咖啡任务
> netflix - 看Netflix
> quit - 退出
python tests/basic/async_test.py
后台压力增加和条件管理系统验证! 验证多线程架构的正常运行。
测试项:
python tests/creative/hidden_combos_test.py
隐藏组合系统测试! 验证连续使用特定工具时发生的特殊效果。
python tests/creative/off_work_test.py
测试系统! 当压力水平达到100时,检查回归和自动返回机制。
python tests/creative/company_gathering_test.py
食物系统测试! 验证避免概率和与Boss警报级别成比例的压力波动。
# 0. 安装Python
winget install Python.Python.3.11
# 1. 创建并激活虚拟环境
python -m venv venv
.\venv\Scripts\Activate.ps1
# 2. 安装依赖
pip install -r requirements.txt
# 3. 运行服务器
python main.py
# 或者带参数运行
python main.py --boss_alertness 100 --boss_alertness_cooldown 10
当PowerShell运行策略错误时:
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser