Metadata-Version: 2.4
Name: career_emulator
Version: 0.1.8
Summary: A career emulator for AI Agents.
Author-email: Hugo <hugo@hugohuang.com>, Yuwei <yuwei.willow.z@gmail.com>
License-Expression: MIT
Project-URL: Homepage, https://www.xir.cn/competition/races/BDCI2026
Project-URL: Documentation, https://career-emulator.readthedocs.io
Project-URL: Source, https://github.com/Trenza1ore/CareerSim-BDCI26
Project-URL: Gitcode, https://gitcode.com/SushiNinja/CareerSim-BDCI26
Project-URL: Issues, https://gitcode.com/SushiNinja/CareerSim-BDCI26/issues
Keywords: python,career-sim,simulation,agent,llm,openjiuwen,competition,mcp client,client,mcp,fastmcp,mcp server,model context protocol,ccf,bdci
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Intended Audience :: Developers
Classifier: Typing :: Typed
Requires-Python: <4,>=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: msgpack>=1.0.0
Requires-Dist: aiosqlite>=0.22.1
Requires-Dist: aiofiles>=25.1.0
Provides-Extra: mcp
Requires-Dist: fastmcp>=2; extra == "mcp"
Provides-Extra: bdci26
Requires-Dist: career-emulator[mcp]; extra == "bdci26"
Requires-Dist: career-emulator-bdci26; extra == "bdci26"
Provides-Extra: bdci
Requires-Dist: career-emulator[bdci26]; extra == "bdci"
Dynamic: license-file

# Career Emulator - CCF BDCI 2026

[![Documentation](https://img.shields.io/badge/赛题文档-brown?style=for-the-badge&logo=readthedocs&link=https%3A%2F%2Fcareer-emulator.readthedocs.io%2Fen%2Flatest%2Findex.html)](https://career-emulator.readthedocs.io)

- 所属赛题：`2026 CCF 大数据与计算智能大赛` 的《职场生存与晋升挑战》赛题，说明见[官网](https://www.xir.cn/competition/1165)，赛事入口见[2026 CCF 大数据与计算智能大赛](https://www.xir.cn/competition/races/BDCI2026)
- 参赛方式：使用 [JiuwenSwarm](https://openjiuwen.com/jiuwenswarm) 构建 Agent，并开发一个或多个 [SKILL](https://agentskills.io)
- 交付形式：将一个或多个 SKILL 文件夹打包成单个 `zip`
- 交互方式：通过 `career-emulator` MCP 与环境交互
- 参赛仓库：[GitHub链接](https://github.com/Trenza1ore/CareerSim-BDCI26) [GitCode链接](https://gitcode.com/SushiNinja/CareerSim-BDCI26)

如果你准备做多 Agent 协同参谋，也可以看看 [Swarm Skill 标准](https://swarmskills.openjiuwen.com)。

你会从 `L1` 新人入职开始，在 48 个月里处理剧情事件、分配季度体力、选择季度主行动，再按半年节奏迎接绩效和晋升。目标也很直接：别太早出局，顺手把这段职业生涯经营得稍微体面一点。

我们提供两种入口：

- `career-emulator`：本地 CLI，适合直接试玩和调规则。
- `career-emulator-mcp`：MCP 服务，适合接给 Agent 自动玩。

更多公开规则、手册和玩法说明见文档：[career-emulator.readthedocs.io](https://career-emulator.readthedocs.io)。

## 这题大概在玩什么

每个月，系统会生成剧情事件，你从当前选项里挑一个往下走。每到季度末，还要额外处理两件事：

- 分配 3 点 `Energy`
- 选择 1 个季度主行动

每半年会有一次绩效考评，职级、财富、健康、尊严、技能、人脉和产出会一起算总账。很多规则是公开的，但也有不少坑只会通过反馈和日志给你一点暗示。组织很忙，通常不会在入职手册里为你逐条标红。

如果你只是想先记住一句话：

> 多赚点钱、少受点气，也别太早把自己玩出局。尽量还是把这段职业生涯打成一段能写进简历的经历吧～

## 快速开始

更新题库：

```bash
career-emulator update
```

进行游戏：

```bash
career-emulator play
```

继续上一局：

```bash
career-emulator play --session-id <session-id>
```

CLI 里常用的几个输入：

- 输入数字：执行当前选项
- 输入 `handbook`：查看新员工手册
- 输入 `logs`：查看当前会话日志
- 输入 `quit`：退出

## 给 Agent 用

当前 MCP 能力包括：

- `new_game`
- `observe(session_id)`
- `take_action(session_id, choice, notes)`
- `check_latest_logs(session_id, count=10)`
- `show_employee_handbook()`

另外还提供日志资源：

- `logs://{session_id}`

## 文档

- 文档首页：[career-emulator.readthedocs.io](https://career-emulator.readthedocs.io/)
- 快速上手：[quickstart](https://career-emulator.readthedocs.io/quickstart.html)
- 公开手册：[handbook](https://career-emulator.readthedocs.io/handbook.html)
- 失败与结局：[failure-and-ending](https://career-emulator.readthedocs.io/failure-and-ending.html)
