Skip to content

Commit fb99e1e

Browse files
committed
Release Harness Codex plugin v0.1.4
1 parent b59dac6 commit fb99e1e

10 files changed

Lines changed: 14 additions & 14 deletions

File tree

.agents/plugins/marketplace.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"source": "git-subdir",
88
"url": "https://github.com/BTCNAI/harness-codex-marketplace.git",
99
"path": "./plugins/harness-codex-plugin",
10-
"ref": "v0.1.3"
10+
"ref": "v0.1.4"
1111
},
1212
"policy": {
1313
"installation": "AVAILABLE",

.codex-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "harness-codex-plugin",
3-
"version": "0.1.3",
3+
"version": "0.1.4",
44
"description": "Essential workflow framework runtime for building, running, and verifying custom Codex agent harnesses.",
55
"license": "MIT",
66
"author": {

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## 0.1.3
3+
## 0.1.4
44

55
- Packaged Harness as a Codex plugin.
66
- Added plugin manifest, repo marketplace metadata, and MCP registration.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Official Codex Plugin Directory publishing is not yet self-serve.
44
Harness is currently distributed through a GitHub-backed Codex marketplace.
55

66
```bash
7-
codex plugin marketplace add https://github.com/BTCNAI/harness-codex-marketplace.git --ref v0.1.3
7+
codex plugin marketplace add https://github.com/BTCNAI/harness-codex-marketplace.git --ref v0.1.4
88
```
99

1010
Harness is the workflow framework for custom Codex agent systems.
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Harness Codex Plugin v0.1.3
1+
# Harness Codex Plugin v0.1.4
22

3-
Harness v0.1.3 packages Harness Studio as a Codex plugin and positions it as a workflow framework for custom Codex agent systems.
3+
Harness v0.1.4 packages Harness Studio as a Codex plugin and positions it as a workflow framework for custom Codex agent systems.
44

55
## Highlights
66

@@ -15,7 +15,7 @@ Harness v0.1.3 packages Harness Studio as a Codex plugin and positions it as a w
1515
## Install
1616

1717
```bash
18-
codex plugin marketplace add https://github.com/BTCNAI/harness-codex-marketplace.git --ref v0.1.3
18+
codex plugin marketplace add https://github.com/BTCNAI/harness-codex-marketplace.git --ref v0.1.4
1919
```
2020

2121
## Verification

docs/distribution.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Harness is currently distributed through a GitHub-backed Codex marketplace.
66
Standard install command:
77

88
```bash
9-
codex plugin marketplace add https://github.com/BTCNAI/harness-codex-marketplace.git --ref v0.1.3
9+
codex plugin marketplace add https://github.com/BTCNAI/harness-codex-marketplace.git --ref v0.1.4
1010
```
1111

1212
Repo marketplace layout:

docs/promotion.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Codex is powerful, but complex agent work needs more than prompts. Harness turns
3535
It is distributed today through a GitHub-backed Codex marketplace:
3636

3737
```bash
38-
codex plugin marketplace add https://github.com/BTCNAI/harness-codex-marketplace.git --ref v0.1.3
38+
codex plugin marketplace add https://github.com/BTCNAI/harness-codex-marketplace.git --ref v0.1.4
3939
```
4040

4141
## Channels

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "harness-codex-plugin",
3-
"version": "0.1.3",
3+
"version": "0.1.4",
44
"private": false,
55
"description": "Visual workbench for building, inspecting, and running structured multi-agent harnesses with task instances, capability registries, and artifact-based execution traces.",
66
"scripts": {

scripts/smoke.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,13 +107,13 @@ async function main(): Promise<void> {
107107
const runId = String(run.run.id);
108108
console.log(`[smoke] run API ok -> ${runId}`);
109109

110-
await waitForRunPage(runId);
111-
112110
const output = await waitForFinalOutput(runId);
113111
assert(output.status === "completed" || output.run?.status === "completed", "output API reports completed run");
114112
assert(output.finalDeliverable, "final deliverable exists");
115113
console.log(`[smoke] output API ok -> ${String(output.finalDeliverable.id)}`);
116114

115+
await waitForRunPage(runId);
116+
117117
const artifacts = await fetchJson(`${BASE_URL}/api/runs/${runId}/artifacts`);
118118
assert(Array.isArray(artifacts.artifacts), "artifacts API returned list");
119119
assert(artifacts.artifacts.length > 0, "artifacts API returned non-empty artifacts");

0 commit comments

Comments
 (0)