Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion context-manager/iii.worker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ bin: context-manager
description: Turns a raw conversation history plus a target model into a model-ready context — token counting, function-result pruning, and history compaction.

dependencies:
configuration: "^0.19.0"
configuration: "^0.21.3"
llm-router: "^1.0.0"
2 changes: 1 addition & 1 deletion iii-directory/iii.worker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ bin: iii-directory
description: Engine introspection (functions / triggers / workers), workers registry proxy, and filesystem-backed skill + prompt reader.

dependencies:
configuration: "^0.19.0"
configuration: "^0.21.3"
4 changes: 2 additions & 2 deletions llm-router/iii.worker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ bin: llm-router
description: One front door + provider protocol in front of every LLM provider.

dependencies:
iii-state: "^0.19.0"
configuration: "^0.19.0"
iii-state: "^0.21.3"
configuration: "^0.21.3"
2 changes: 1 addition & 1 deletion provider-anthropic/iii.worker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ bin: provider-anthropic
description: Anthropic Messages API provider worker; implements provider::anthropic::stream and provider::anthropic::refresh_models behind llm-router.

dependencies:
iii-state: "^0.19.0"
iii-state: "^0.21.3"
llm-router: "^1.0.0"
2 changes: 1 addition & 1 deletion provider-openai/iii.worker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ bin: provider-openai
description: OpenAI Chat Completions provider worker; implements provider::openai::stream and provider::openai::refresh_models behind llm-router.

dependencies:
iii-state: "^0.19.0"
iii-state: "^0.21.3"
llm-router: "^1.0.0"
Comment on lines +10 to 11

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🗄️ Data Integrity & Integration | 🟠 Major | ⚡ Quick win

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Description: Search all iii.worker.yaml files for stale ^0.19.0 constraints on configuration or iii-state.

# Find all worker manifests and check for old version pins
fd -t f 'iii.worker.yaml' --exec rg -n 'configuration:\s*"?\^0\.19' {} +
fd -t f 'iii.worker.yaml' --exec rg -n 'iii-state:\s*"?\^0\.19' {} +

Repository: iii-hq/workers

Length of output: 5177


Update the remaining worker manifests to ^0.21.3. Several iii.worker.yaml files still pin configuration and/or iii-state to ^0.19.0, so iii worker reinstall harness will still hit version_conflict for those workers: pubsub/iii.worker.yaml, worktree/iii.worker.yaml, cron/iii.worker.yaml, queue/iii.worker.yaml, http/iii.worker.yaml, approval-gate/iii.worker.yaml, slack/iii.worker.yaml, state/iii.worker.yaml, telegram-bot/iii.worker.yaml, rbac-proxy/iii.worker.yaml, bridge/iii.worker.yaml, provider-llamacpp/iii.worker.yaml, provider-zai/iii.worker.yaml, provider-xai/iii.worker.yaml, provider-openai-codex/iii.worker.yaml.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@provider-openai/iii.worker.yaml` around lines 10 - 11, Several remaining
iii.worker.yaml manifests still pin configuration and/or iii-state to ^0.19.0,
which will keep causing version_conflict during iii worker reinstall harness.
Update the worker manifest entries in each affected package (including
provider-openai and the listed pubsub, worktree, cron, queue, http,
approval-gate, slack, state, telegram-bot, rbac-proxy, bridge,
provider-llamacpp, provider-zai, provider-xai, and provider-openai-codex
manifests) so both configuration and iii-state are aligned to ^0.21.3, matching
the other workers.

2 changes: 1 addition & 1 deletion session-manager/iii.worker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ bin: session-manager
description: Durable, reactive, branching store of typed conversation entries with six emitted trigger types.

dependencies:
configuration: "^0.19.0"
configuration: "^0.21.3"
2 changes: 1 addition & 1 deletion web/iii.worker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ bin: web
description: Outbound HTTP client on the iii bus (web::fetch).

dependencies:
configuration: "^0.19.0"
configuration: "^0.21.3"
Loading