@uzysjung/agent-harness 26.100.0 → 26.100.1
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uzysjung/agent-harness",
|
|
3
|
-
"version": "26.100.
|
|
3
|
+
"version": "26.100.1",
|
|
4
4
|
"description": "Curate vetted AI-coding skills & plugins by your tech stack — install only what you need, across Claude Code, Codex, OpenCode & Antigravity",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"publishConfig": {
|
|
@@ -51,10 +51,12 @@ not bundled here. The wrapper resolves it at `$CODEX_BIN`, then `PATH`, then
|
|
|
51
51
|
- **Not installed?** Ask the user to install it
|
|
52
52
|
(`https://developers.openai.com/codex/cli`) and run `codex login` once.
|
|
53
53
|
Don't attempt the install silently.
|
|
54
|
-
- **Auth expired?**
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
54
|
+
- **Auth expired?** Logged-out calls fail with a nonzero exit and stderr
|
|
55
|
+
containing `401 Unauthorized: Missing bearer or basic authentication`
|
|
56
|
+
(verified against codex 0.144.5 with an empty `CODEX_HOME`; codex retries
|
|
57
|
+
"Reconnecting… n/5" first, so it takes a few seconds to fail). On that
|
|
58
|
+
signature, **stop and ask the user to run `codex login`**. Never fabricate
|
|
59
|
+
credentials, never read/echo `.env*` or secrets.
|
|
58
60
|
- **Calls block for a while.** The wrapper caps a call at 300s
|
|
59
61
|
(`CODEX_CONSULT_TIMEOUT`); text runs ~20s, image generation ~60–90s. Raise
|
|
60
62
|
your shell tool's own timeout (e.g. 300000ms+) for image calls — its default
|
|
@@ -222,6 +222,12 @@ Prompt like Mode B of codex-consult: subject, style, background, aspect, and
|
|
|
222
222
|
session — iterate by editing the prompt, and remember every iteration is a
|
|
223
223
|
full-cost regeneration.
|
|
224
224
|
|
|
225
|
+
**Image quota is small and shared across model tiers.** A handful of
|
|
226
|
+
generations can exhaust it; Gemini then answers (politely) that quota is
|
|
227
|
+
exceeded — the wrapper surfaces that as exit 5 with the explanation inside the
|
|
228
|
+
tags. Observed reset horizon: up to ~7 days. Don't retry-loop against a quota
|
|
229
|
+
error; relay it and fall back to `codex-consult` for the image.
|
|
230
|
+
|
|
225
231
|
```
|
|
226
232
|
이미지 생성 도구로 이미지를 하나 생성해줘:
|
|
227
233
|
- 내용: <subject> · 스타일: <flat / watercolor / ...> · 배경: <white / ...>
|