codex-task 0.2.0 → 0.2.2
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/.codex-plugin/plugin.json +1 -1
- package/README.md +4 -4
- package/README.zh-CN.md +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
> Give another AI agent a focused errand—and get back text, images, or finished work. Powered by your existing Codex setup.
|
|
4
4
|
|
|
5
|
-
[中文文档](./README.zh-CN.md) · [PRD](./docs/PRD.md) · [Companion skill](./skills/codex-task/SKILL.md)
|
|
5
|
+
[中文文档](./README.zh-CN.md) · [PRD](./docs/PRD.md) · [Common commands](./docs/常用命令.txt) · [Companion skill](./skills/codex-task/SKILL.md)
|
|
6
6
|
|
|
7
7
|
CodexTask turns Codex into a small, composable worker for other agents. It ships one CLI, one TypeScript API, and one installable skill for three jobs:
|
|
8
8
|
|
|
@@ -124,11 +124,11 @@ Pass `--no-followup` to require reasonable assumptions and a completed/failed re
|
|
|
124
124
|
|
|
125
125
|
This repository ships `skills/codex-task/SKILL.md`. It teaches a calling agent when to choose text, image, task, or resume. It is a companion skill, not a skill injected into the Codex worker.
|
|
126
126
|
|
|
127
|
-
Install it with [
|
|
127
|
+
Install it with [SkillTruck](https://github.com/wangyendt/skilltruck):
|
|
128
128
|
|
|
129
129
|
```bash
|
|
130
|
-
npm install -g
|
|
131
|
-
|
|
130
|
+
npm install -g skilltruck
|
|
131
|
+
skilltruck install https://github.com/wangyendt/codex-task --global
|
|
132
132
|
```
|
|
133
133
|
|
|
134
134
|
Or locate the copy included in the npm package:
|
package/README.zh-CN.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
> 把一个明确的小任务交给另一个 AI Agent,拿回文本、图片或已经完成的工作。直接复用你现有的 Codex 环境。
|
|
4
4
|
|
|
5
|
-
[English](./README.md) · [产品需求文档](./docs/PRD.md) · [Companion skill](./skills/codex-task/SKILL.md)
|
|
5
|
+
[English](./README.md) · [产品需求文档](./docs/PRD.md) · [常用命令](./docs/常用命令.txt) · [Companion skill](./skills/codex-task/SKILL.md)
|
|
6
6
|
|
|
7
7
|
CodexTask 把 Codex 封装成可供其他 Agent 调用的轻量 worker,统一提供三类能力:
|
|
8
8
|
|
|
@@ -108,11 +108,11 @@ printf '%s' "是,必须保持。" | codex-task resume <task-id>
|
|
|
108
108
|
|
|
109
109
|
仓库内置 `skills/codex-task/SKILL.md`。它教调用方 Agent 选择 `text`、`image`、`task` 或 `resume`,并不是注入底层 Codex worker 的 skill。
|
|
110
110
|
|
|
111
|
-
使用 [
|
|
111
|
+
使用 [SkillTruck](https://github.com/wangyendt/skilltruck) 安装:
|
|
112
112
|
|
|
113
113
|
```bash
|
|
114
|
-
npm install -g
|
|
115
|
-
|
|
114
|
+
npm install -g skilltruck
|
|
115
|
+
skilltruck install https://github.com/wangyendt/codex-task --global
|
|
116
116
|
```
|
|
117
117
|
|
|
118
118
|
也可以查看 npm 包内 skill 的位置:
|