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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ For a direct provider, pass its name and key:

The action maps a provider name to the environment variable Core uses (`anthropic` → `ANTHROPIC_API_KEY`, `openai` → `OPENAI_API_KEY`, and so on). `aws`/`aws_bedrock` maps to `AWS_BEARER_TOKEN_BEDROCK`. Provider names following the standard convention are not restricted by an action-side allowlist; the pinned Core release remains the source of truth for which providers it implements.

CodeBoarding 0.13.8 supports OpenRouter, OpenAI-compatible endpoints, Anthropic, Google, Vercel AI Gateway, AWS Bedrock, Cerebras, DeepSeek, GLM, Kimi, Ollama, and LiteLLM. See Core's [`agents/llm_config.py`](https://github.com/CodeBoarding/CodeBoarding/blob/main/agents/llm_config.py) for current defaults and endpoint variables. In particular, Ollama needs `OLLAMA_BASE_URL` or `OLLAMA_HOST`, and LiteLLM needs `LITELLM_BASE_URL` on the action step.
CodeBoarding 0.13.10 supports OpenRouter, OpenAI-compatible endpoints, Anthropic-compatible endpoints, Google, Vercel AI Gateway, AWS Bedrock, Cerebras, DeepSeek, GLM, Kimi, OrcaRouter, Ollama, and LiteLLM. See Core's [`agents/llm_config.py`](https://github.com/CodeBoarding/CodeBoarding/blob/main/agents/llm_config.py) for current defaults and endpoint variables. In particular, Ollama needs `OLLAMA_BASE_URL` or `OLLAMA_HOST`, and LiteLLM needs `LITELLM_BASE_URL` on the action step.

A CodeBoarding license keeps the hosted OIDC path but removes hosted quota limits:

Expand Down Expand Up @@ -237,7 +237,7 @@ With the default `github.token`, the repository or organization must allow GitHu
| `force_full` | sync | `false` | Ignore the committed baseline for this run. |
| `warmstart_retention_days` | review | `1` | Days to keep the reusable analysis. Only the next run reads it. |

The `/codeboarding` command, comment heading, Mermaid direction (`LR`), hosted webview URL, rolling sync branch, commit message, and CodeBoarding 0.13.8 version are intentionally fixed in v2 rather than exposed as configuration.
The `/codeboarding` command, comment heading, Mermaid direction (`LR`), hosted webview URL, rolling sync branch, commit message, and CodeBoarding 0.13.10 version are intentionally fixed in v2 rather than exposed as configuration.

## Outputs

Expand Down Expand Up @@ -271,7 +271,7 @@ Run the local analysis pipeline:

```bash
export OPENROUTER_API_KEY=sk-or-...
python -m pip install codeboarding==0.13.8
python -m pip install codeboarding==0.13.10
tests/run_local.sh --repo /path/to/repo --base main --head feature
```

Expand Down
7 changes: 1 addition & 6 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,13 +165,8 @@ runs:
- name: Install CodeBoarding
if: steps.guard.outputs.skip != 'true'
shell: bash
# tqdm is imported by the pinned CLI but missing from its dependencies. It
# used to arrive through openai, which dropped it in 3.3.0, so every fresh
# resolve since then installs a CLI that cannot start. Naming it here is a
# workaround for that packaging gap, not a dependency of this action;
# remove it once the engine declares its own.
run: |
python -m pip install --disable-pip-version-check 'codeboarding==0.13.8' tqdm
python -m pip install --disable-pip-version-check 'codeboarding==0.13.10'

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P2 Badge Clear inherited OrcaRouter credentials before running Core

When a job already exports ORCAROUTER_API_KEY but this action invocation selects another provider, the newly pinned engine recognizes OrcaRouter while scripts/action/with-auth.sh omits its variables from both the selectors list and provider-preserving case. The engine therefore receives an unrelated credential alongside the explicitly selected one, defeating the wrapper's provider isolation and potentially selecting or charging the wrong backend; add OrcaRouter variables to that filtering logic as part of this pin.

AGENTS.md reference: AGENTS.md:L12-L16

Useful? React with 👍 / 👎.

# Fail here, with the reason, rather than mid-analysis with a traceback:
# pinning a release does not pin what its dependencies resolve to. Run
# the console script, not `python -c`, which would put the analyzed
Expand Down
4 changes: 2 additions & 2 deletions scripts/action/install-sync.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
set -euo pipefail
output="$CHECKOUT_DIR/.codeboarding"
mkdir -p "$output"
# New Core releases expose one canonical manifest. The compatibility imports
# keep the currently pinned 0.13.8 release usable without duplicating filenames.
# Core exposes one canonical manifest. The compatibility imports keep the local
# harness usable with older Core checkouts without duplicating filenames.
manifest="$(cd "$ACTION_PATH" && python3 - <<'PY'
try:
from constants import ANALYSIS_FILENAME, PERSISTED_ANALYSIS_ARTIFACT_FILENAMES as artifacts
Expand Down
Loading