@jun133/athlete 0.0.7 → 0.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,17 +1,17 @@
1
1
  # Athlete
2
2
 
3
- <p align="center">
4
- <strong>一个把 LLM 变成可持续执行系统的 Agent Harness</strong>
5
- </p>
6
-
7
- <p align="center">
8
- <img alt="terminal first" src="https://img.shields.io/badge/terminal-first-2ea44f?style=for-the-badge">
9
- <img alt="durable runtime" src="https://img.shields.io/badge/durable-runtime-1f6feb?style=for-the-badge">
10
- <img alt="checkpoint persisted" src="https://img.shields.io/badge/checkpoint-persisted-8250df?style=for-the-badge">
11
- <img alt="runtime stats" src="https://img.shields.io/badge/runtime-stats-f59e0b?style=for-the-badge">
12
- </p>
13
-
14
- 一个终端优先的 Agent Harness。
3
+ <p align="center">
4
+ <strong>一个专注于解决问题与持续推进任务的智能体</strong>
5
+ </p>
6
+
7
+ <p align="center">
8
+ <img alt="problem solving agent" src="https://img.shields.io/badge/problem--solving-agent-2ea44f?style=for-the-badge">
9
+ <img alt="durable runtime" src="https://img.shields.io/badge/durable-runtime-1f6feb?style=for-the-badge">
10
+ <img alt="checkpoint persisted" src="https://img.shields.io/badge/checkpoint-persisted-8250df?style=for-the-badge">
11
+ <img alt="runtime stats" src="https://img.shields.io/badge/runtime-stats-f59e0b?style=for-the-badge">
12
+ </p>
13
+
14
+ 一个专注于解决问题的智能体。
15
15
 
16
16
  一个单纯的 LLM,往往擅长回答问题;一个加上 harness 的 LLM,才开始真正接住任务。它不只是“说下一句”,而是能在复杂任务里持续往前跑,知道什么时候该读文件、什么时候该调用工具、什么时候该拆任务、什么时候该把状态记下来,出了错以后还能接着做。✨
17
17
 
package/dist/cli.js CHANGED
@@ -37,14 +37,14 @@ var init_package = __esm({
37
37
  "package.json"() {
38
38
  package_default = {
39
39
  name: "@jun133/athlete",
40
- version: "0.0.7",
41
- description: "A global terminal AI coding assistant.",
40
+ version: "0.0.8",
41
+ description: "A problem-solving agent focused on durable task execution.",
42
42
  keywords: [
43
43
  "athlete",
44
- "cli",
45
- "ai",
46
44
  "agent",
47
- "coding"
45
+ "automation",
46
+ "runtime",
47
+ "problem-solving"
48
48
  ],
49
49
  bin: {
50
50
  athlete: "dist/cli.js"
@@ -12691,7 +12691,7 @@ function buildStaticPromptBlocks(input) {
12691
12691
  function buildIdentityContract(config, runtimeState) {
12692
12692
  const identity = runtimeState.identity;
12693
12693
  const lines = [
12694
- "You are Athlete, a terminal-first AI agent for coding and general problem solving.",
12694
+ "You are Athlete, a problem-solving agent focused on durable task execution.",
12695
12695
  "Use tools for real actions instead of role-playing filesystem, shell, browser, task, or team work.",
12696
12696
  config.mode === "agent" ? "Mode: agent. You may edit files and run commands inside allowed roots." : "Mode: read-only. Inspect and analyze only; do not attempt mutating actions."
12697
12697
  ];
@@ -29956,7 +29956,7 @@ function buildCliProgram(dependencies = {}) {
29956
29956
  const program = new import_commander.Command();
29957
29957
  const resolveRuntime = dependencies.resolveRuntime ?? resolveCliRuntime;
29958
29958
  const getCliOverrides = () => extractCliOverrides(program.opts());
29959
- program.name("athlete").description("Athlete - a terminal AI coding assistant.").version(package_default.version, "-v, --version", "Print the current Athlete version.").configureOutput({
29959
+ program.name("athlete").description("Athlete - a problem-solving agent focused on durable task execution.").version(package_default.version, "-v, --version", "Print the current Athlete version.").configureOutput({
29960
29960
  writeOut: (text) => {
29961
29961
  writeStdout(text);
29962
29962
  },