Skip to content

feat: add authoritative code intel execution kernel - #12

Merged
2233admin merged 3 commits into
mainfrom
agent/code-intel-execution-kernel
Jul 24, 2026
Merged

feat: add authoritative code intel execution kernel#12
2233admin merged 3 commits into
mainfrom
agent/code-intel-execution-kernel

Conversation

@2233admin

Copy link
Copy Markdown
Owner

What changed

  • add one typed authoritative execution kernel and structured RunOutcome
  • compile default, strict, offline, and compatibility profiles into one policy
  • make PowerShell a thin validated adapter
  • prepare v0.4.0 release metadata

Validation

  • cargo test -p code-intel
  • cargo build -p code-intel --release
  • stable wrapper E2E
  • orchestration and schema contract checks
  • independent code review: APPROVE

@gemini-code-assist

Copy link
Copy Markdown

Caution

The consumer version of Gemini Code Assist on GitHub has been sunset. All code review activity has officially ceased.

@coderabbitai

coderabbitai Bot commented Jul 24, 2026

Copy link
Copy Markdown

Review Change Stack

Warning

Review limit reached

@2233admin, you've reached your PR review limit, so we couldn't start this review.

Next review available in: 46 minutes

Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available.
You're only billed for reviews past your plan's rate limits ($0.25/file).

How can I continue?

After more reviews become available, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews.

How do review limits work?

CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability.

For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window.

Please refer docs for additional details.

Review details
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro Plus

Run ID: 27e4a6f9-0691-490a-a49f-ae76f9562637

📥 Commits

Reviewing files that changed from the base of the PR and between 4c0bef6 and 7a42303.

⛔ Files ignored due to path filters (1)
  • Cargo.lock is excluded by !**/*.lock
📒 Files selected for processing (17)
  • CHANGELOG.md
  • README.md
  • crates/code-intel-cli/Cargo.toml
  • crates/code-intel-cli/src/dag_coordinator.rs
  • crates/code-intel-cli/src/dag_run.rs
  • crates/code-intel-cli/src/execution_kernel.rs
  • crates/code-intel-cli/src/execution_policy.rs
  • crates/code-intel-cli/src/main.rs
  • crates/code-intel-cli/src/run_commit.rs
  • crates/code-intel-cli/tests/dag_coordinator.rs
  • crates/code-intel-cli/tests/dag_run.rs
  • docs/execution-kernel-architecture.md
  • invoke-code-intel.ps1
  • orchestration/integrations.json
  • orchestration/internalization/graph.json
  • orchestration/internalization/sentrux.json
  • orchestration/schemas/code-intel-execution-result.v1.schema.json
📝 Walkthrough

Walkthrough

The CLI adds a typed execution kernel, immutable execution profiles, profile-aware DAG construction, schema-validated results, and integrated publication. PowerShell, orchestration contracts, provider adapters, tests, documentation, CI, and evidence metadata are updated for the 0.4.0 flow.

Changes

Execution kernel and orchestration

Layer / File(s) Summary
Typed outcomes and execution policy
crates/code-intel-cli/src/dag_coordinator.rs, crates/code-intel-cli/src/execution_policy.rs, crates/code-intel-cli/src/execution_kernel.rs
Run outcomes use fixed enum variants and stable exit codes; profiles compile provider, working-tree, capability-option, and effect policies; the kernel publishes typed execution results.
Policy-aware CLI and DAG execution
crates/code-intel-cli/src/dag_run.rs, crates/code-intel-cli/src/main.rs, crates/code-intel-cli/src/run_commit.rs
run execute and policy-backed dag-coordinate parsing drive conditional DAG capabilities, optional-provider handling, structured results, and explicit publication parameters.
Execution facade and result contract
invoke-code-intel.ps1, orchestration/schemas/*, orchestration/integrations.json, crates/code-intel-cli/tests/dag_run.rs
The PowerShell facade invokes run execute, validates result schema and outcome consistency, verifies committed artifacts, and tests default, offline, strict, and invalid execution paths.
Provider command and inventory handling
crates/code-intel-cli/src/builtin_provider_evidence.rs, crates/code-intel-cli/src/sentrux.rs, crates/code-intel-cli/src/sentrux_analysis.rs, crates/code-intel-cli/tests/*
Sentrux command construction is platform-specific and tested, while ripgrep inventory collection ignores external configuration and updated tests cover the resulting behavior.
Documentation, CI, and evidence refresh
.github/workflows/ci.yml, docs/*, docs/plans/*, orchestration/internalization/*, test-*.ps1, prototypes/session-observability/*
CI fetches complete history, documentation paths use <repo-root>, test scripts normalize final PowerShell exit codes, and evidence hashes are refreshed.

Estimated code review effort: 4 (Complex) | ~60 minutes

Sequence Diagram(s)

sequenceDiagram
  participant PowerShellFacade
  participant CodeIntelCLI
  participant ExecutionPolicy
  participant DAGCoordinator
  participant AuthorityRoot
  PowerShellFacade->>CodeIntelCLI: run execute
  CodeIntelCLI->>ExecutionPolicy: resolve profile and overrides
  CodeIntelCLI->>DAGCoordinator: execute policy-aware DAG
  DAGCoordinator-->>CodeIntelCLI: manifest and typed outcome
  CodeIntelCLI->>AuthorityRoot: publish committed run
  AuthorityRoot-->>CodeIntelCLI: publication metadata
  CodeIntelCLI-->>PowerShellFacade: schema-validated execution result
Loading

Possibly related PRs

Poem

I’m a rabbit with a kernel to run,
Policies hop where providers once spun.
Typed outcomes neatly land,
Publications bloom as planned—
Full-history carrots for everyone!

🚥 Pre-merge checks | ✅ 4 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 32.81% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
✅ Passed checks (4 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly summarizes the main change: adding an authoritative code intel execution kernel.
Description check ✅ Passed The description matches the changeset and summarizes the kernel, policy, adapter, and release work.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@2233admin
2233admin force-pushed the agent/code-intel-execution-kernel branch from 4c0bef6 to 5b5c0af Compare July 24, 2026 15:34

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Actionable comments posted: 2

🧹 Nitpick comments (2)
crates/code-intel-cli/tests/dag_run.rs (1)

650-651: 🎯 Functional Correctness | 🔵 Trivial | ⚡ Quick win

Assert that the omitted diagnosis capability emits no request.

The test verifies absent provider request files, but not diagnosis.hospital.request.json. Add that assertion so an unintended diagnosis-side effect cannot regress unnoticed.

Proposed test addition
 assert!(!out.join("evidence.graph.request.json").exists());
 assert!(!out.join("evidence.sentrux.request.json").exists());
+assert!(!out.join("diagnosis.hospital.request.json").exists());
🤖 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 `@crates/code-intel-cli/tests/dag_run.rs` around lines 650 - 651, Extend the
test assertions in the DAG run test to verify that
out.join("diagnosis.hospital.request.json") does not exist when the diagnosis
capability is omitted. Keep the existing evidence.graph and evidence.sentrux
absence checks unchanged.
crates/code-intel-cli/src/builtin_provider_evidence.rs (1)

295-321: 📐 Maintainability & Code Quality | 🔵 Trivial | ⚡ Quick win

Two independent sentrux_command helpers with duplicated OS-dispatch logic. Both files introduce a new sentrux_command function in this PR to decide how to launch the external sentrux tool per OS; sentrux.rs's version is functionally a duplicate of the None-path fallback already implemented in builtin_provider_evidence.rs's more general sentrux_command(explicit: Option<&Path>).

  • crates/code-intel-cli/src/builtin_provider_evidence.rs#L295-L321: keep this as the canonical helper (it already supports both the explicit-path and fallback cases); make it pub(crate) so it can be reused.
  • crates/code-intel-cli/src/sentrux.rs#L64-L112: drop the local sentrux_command() and call builtin_provider_evidence::sentrux_command(None) instead, removing the duplicated Windows/non-Windows branches and duplicated tests.
♻️ Proposed consolidation
--- a/crates/code-intel-cli/src/builtin_provider_evidence.rs
+++ b/crates/code-intel-cli/src/builtin_provider_evidence.rs
@@
-fn sentrux_command(explicit: Option<&Path>) -> Command {
+pub(crate) fn sentrux_command(explicit: Option<&Path>) -> Command {
--- a/crates/code-intel-cli/src/sentrux.rs
+++ b/crates/code-intel-cli/src/sentrux.rs
@@
-    let mut command = sentrux_command();
+    let mut command = crate::builtin_provider_evidence::sentrux_command(None);
@@
-fn sentrux_command() -> Command {
-    #[cfg(windows)]
-    {
-        let mut command = Command::new("cmd.exe");
-        command.args(["/d", "/c", "sentrux.cmd"]);
-        command
-    }
-    #[cfg(not(windows))]
-    {
-        Command::new("sentrux")
-    }
-}
🤖 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 `@crates/code-intel-cli/src/builtin_provider_evidence.rs` around lines 295 -
321, Make builtin_provider_evidence::sentrux_command the shared canonical helper
by changing its visibility to pub(crate). In
crates/code-intel-cli/src/sentrux.rs lines 64-112, remove the local
sentrux_command implementation and duplicated tests, and call
builtin_provider_evidence::sentrux_command(None) instead; retain the
explicit-path support in the canonical helper.
🤖 Prompt for all review comments with 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.

Inline comments:
In @.github/workflows/ci.yml:
- Around line 20-21: Disable persisted checkout credentials in both
actions/checkout configurations at .github/workflows/ci.yml lines 20-21 and
221-222 by adding persist-credentials: false under each with block.

In `@orchestration/integrations.json`:
- Around line 341-342: Update both command registries in
orchestration/integrations.json: append optional --doctor-require-repowise and
--doctor-require-understand flags to runtime.code-intel.commands.execute at
lines 341-342 and run.execute.commands.run at lines 1106-1126. Keep the existing
--profile contract intact.

---

Nitpick comments:
In `@crates/code-intel-cli/src/builtin_provider_evidence.rs`:
- Around line 295-321: Make builtin_provider_evidence::sentrux_command the
shared canonical helper by changing its visibility to pub(crate). In
crates/code-intel-cli/src/sentrux.rs lines 64-112, remove the local
sentrux_command implementation and duplicated tests, and call
builtin_provider_evidence::sentrux_command(None) instead; retain the
explicit-path support in the canonical helper.

In `@crates/code-intel-cli/tests/dag_run.rs`:
- Around line 650-651: Extend the test assertions in the DAG run test to verify
that out.join("diagnosis.hospital.request.json") does not exist when the
diagnosis capability is omitted. Keep the existing evidence.graph and
evidence.sentrux absence checks unchanged.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro Plus

Run ID: a88e39ee-e1dc-476d-ae5c-0247436b5de7

📥 Commits

Reviewing files that changed from the base of the PR and between fdde17c and 4c0bef6.

⛔ Files ignored due to path filters (1)
  • Cargo.lock is excluded by !**/*.lock
📒 Files selected for processing (45)
  • .github/workflows/ci.yml
  • CHANGELOG.md
  • Invoke-CodeIntelAcceptance.ps1
  • README.md
  • crates/code-intel-cli/Cargo.toml
  • crates/code-intel-cli/src/builtin_provider_evidence.rs
  • crates/code-intel-cli/src/dag_coordinator.rs
  • crates/code-intel-cli/src/dag_run.rs
  • crates/code-intel-cli/src/execution_kernel.rs
  • crates/code-intel-cli/src/execution_policy.rs
  • crates/code-intel-cli/src/main.rs
  • crates/code-intel-cli/src/run_commit.rs
  • crates/code-intel-cli/src/sentrux.rs
  • crates/code-intel-cli/src/sentrux_analysis.rs
  • crates/code-intel-cli/tests/dag_coordinator.rs
  • crates/code-intel-cli/tests/dag_run.rs
  • crates/code-intel-cli/tests/sentrux_analysis.rs
  • crates/code-intel-cli/tests/snapshot_identity.rs
  • docs/execution-kernel-architecture.md
  • docs/plans/automatic-pr-one-command-orchestration-idea.md
  • docs/plans/four-blind-spots-closure-idea.md
  • docs/plans/language-adapter-acceptance-standard-idea.md
  • docs/plans/model-independent-pipeline-completion-idea.md
  • docs/plans/multi-agent-merge-queue-idea.md
  • docs/plans/multi-agent-workspace-governance-idea.md
  • docs/plans/pon-multilanguage-code-evidence-idea.md
  • docs/plans/pon-parity-floor-idea.md
  • docs/plans/session-evidence-adapter-idea.md
  • docs/plans/three-stage-project-acceptance-idea.md
  • invoke-code-intel.ps1
  • orchestration/integrations.json
  • orchestration/internalization/evidence/r08-live-20260714/github-solution-research.md
  • orchestration/internalization/git.json
  • orchestration/internalization/graph.json
  • orchestration/internalization/pon-multilanguage.json
  • orchestration/internalization/pon-project-conformance.json
  • orchestration/internalization/pon-python314-development.json
  • orchestration/internalization/sentrux.json
  • orchestration/schemas/code-intel-execution-result.v1.schema.json
  • prototypes/session-observability/IDEA.md
  • prototypes/session-observability/README.md
  • test-code-intel-project-conformance.ps1
  • test-github-solution-research.ps1
  • test-python314-pon-compatibility.ps1
  • test-stable-wrapper-e2e.ps1

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Caution

Inline review comments failed to post. This is likely due to GitHub's internal server error or limits when posting large numbers of comments. If you are seeing this consistently it is likely a permissions issue. Please check "Moderation" -> "Code review limits" under your organization settings.

Actionable comments posted: 2

🧹 Nitpick comments (2)
crates/code-intel-cli/tests/dag_run.rs (1)

650-651: 🎯 Functional Correctness | 🔵 Trivial | ⚡ Quick win

Assert that the omitted diagnosis capability emits no request.

The test verifies absent provider request files, but not diagnosis.hospital.request.json. Add that assertion so an unintended diagnosis-side effect cannot regress unnoticed.

Proposed test addition
 assert!(!out.join("evidence.graph.request.json").exists());
 assert!(!out.join("evidence.sentrux.request.json").exists());
+assert!(!out.join("diagnosis.hospital.request.json").exists());
🤖 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 `@crates/code-intel-cli/tests/dag_run.rs` around lines 650 - 651, Extend the
test assertions in the DAG run test to verify that
out.join("diagnosis.hospital.request.json") does not exist when the diagnosis
capability is omitted. Keep the existing evidence.graph and evidence.sentrux
absence checks unchanged.
crates/code-intel-cli/src/builtin_provider_evidence.rs (1)

295-321: 📐 Maintainability & Code Quality | 🔵 Trivial | ⚡ Quick win

Two independent sentrux_command helpers with duplicated OS-dispatch logic. Both files introduce a new sentrux_command function in this PR to decide how to launch the external sentrux tool per OS; sentrux.rs's version is functionally a duplicate of the None-path fallback already implemented in builtin_provider_evidence.rs's more general sentrux_command(explicit: Option<&Path>).

  • crates/code-intel-cli/src/builtin_provider_evidence.rs#L295-L321: keep this as the canonical helper (it already supports both the explicit-path and fallback cases); make it pub(crate) so it can be reused.
  • crates/code-intel-cli/src/sentrux.rs#L64-L112: drop the local sentrux_command() and call builtin_provider_evidence::sentrux_command(None) instead, removing the duplicated Windows/non-Windows branches and duplicated tests.
♻️ Proposed consolidation
--- a/crates/code-intel-cli/src/builtin_provider_evidence.rs
+++ b/crates/code-intel-cli/src/builtin_provider_evidence.rs
@@
-fn sentrux_command(explicit: Option<&Path>) -> Command {
+pub(crate) fn sentrux_command(explicit: Option<&Path>) -> Command {
--- a/crates/code-intel-cli/src/sentrux.rs
+++ b/crates/code-intel-cli/src/sentrux.rs
@@
-    let mut command = sentrux_command();
+    let mut command = crate::builtin_provider_evidence::sentrux_command(None);
@@
-fn sentrux_command() -> Command {
-    #[cfg(windows)]
-    {
-        let mut command = Command::new("cmd.exe");
-        command.args(["/d", "/c", "sentrux.cmd"]);
-        command
-    }
-    #[cfg(not(windows))]
-    {
-        Command::new("sentrux")
-    }
-}
🤖 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 `@crates/code-intel-cli/src/builtin_provider_evidence.rs` around lines 295 -
321, Make builtin_provider_evidence::sentrux_command the shared canonical helper
by changing its visibility to pub(crate). In
crates/code-intel-cli/src/sentrux.rs lines 64-112, remove the local
sentrux_command implementation and duplicated tests, and call
builtin_provider_evidence::sentrux_command(None) instead; retain the
explicit-path support in the canonical helper.
🤖 Prompt for all review comments with 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.

Inline comments:
In @.github/workflows/ci.yml:
- Around line 20-21: Disable persisted checkout credentials in both
actions/checkout configurations at .github/workflows/ci.yml lines 20-21 and
221-222 by adding persist-credentials: false under each with block.

In `@orchestration/integrations.json`:
- Around line 341-342: Update both command registries in
orchestration/integrations.json: append optional --doctor-require-repowise and
--doctor-require-understand flags to runtime.code-intel.commands.execute at
lines 341-342 and run.execute.commands.run at lines 1106-1126. Keep the existing
--profile contract intact.

---

Nitpick comments:
In `@crates/code-intel-cli/src/builtin_provider_evidence.rs`:
- Around line 295-321: Make builtin_provider_evidence::sentrux_command the
shared canonical helper by changing its visibility to pub(crate). In
crates/code-intel-cli/src/sentrux.rs lines 64-112, remove the local
sentrux_command implementation and duplicated tests, and call
builtin_provider_evidence::sentrux_command(None) instead; retain the
explicit-path support in the canonical helper.

In `@crates/code-intel-cli/tests/dag_run.rs`:
- Around line 650-651: Extend the test assertions in the DAG run test to verify
that out.join("diagnosis.hospital.request.json") does not exist when the
diagnosis capability is omitted. Keep the existing evidence.graph and
evidence.sentrux absence checks unchanged.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro Plus

Run ID: a88e39ee-e1dc-476d-ae5c-0247436b5de7

📥 Commits

Reviewing files that changed from the base of the PR and between fdde17c and 4c0bef6.

⛔ Files ignored due to path filters (1)
  • Cargo.lock is excluded by !**/*.lock
📒 Files selected for processing (45)
  • .github/workflows/ci.yml
  • CHANGELOG.md
  • Invoke-CodeIntelAcceptance.ps1
  • README.md
  • crates/code-intel-cli/Cargo.toml
  • crates/code-intel-cli/src/builtin_provider_evidence.rs
  • crates/code-intel-cli/src/dag_coordinator.rs
  • crates/code-intel-cli/src/dag_run.rs
  • crates/code-intel-cli/src/execution_kernel.rs
  • crates/code-intel-cli/src/execution_policy.rs
  • crates/code-intel-cli/src/main.rs
  • crates/code-intel-cli/src/run_commit.rs
  • crates/code-intel-cli/src/sentrux.rs
  • crates/code-intel-cli/src/sentrux_analysis.rs
  • crates/code-intel-cli/tests/dag_coordinator.rs
  • crates/code-intel-cli/tests/dag_run.rs
  • crates/code-intel-cli/tests/sentrux_analysis.rs
  • crates/code-intel-cli/tests/snapshot_identity.rs
  • docs/execution-kernel-architecture.md
  • docs/plans/automatic-pr-one-command-orchestration-idea.md
  • docs/plans/four-blind-spots-closure-idea.md
  • docs/plans/language-adapter-acceptance-standard-idea.md
  • docs/plans/model-independent-pipeline-completion-idea.md
  • docs/plans/multi-agent-merge-queue-idea.md
  • docs/plans/multi-agent-workspace-governance-idea.md
  • docs/plans/pon-multilanguage-code-evidence-idea.md
  • docs/plans/pon-parity-floor-idea.md
  • docs/plans/session-evidence-adapter-idea.md
  • docs/plans/three-stage-project-acceptance-idea.md
  • invoke-code-intel.ps1
  • orchestration/integrations.json
  • orchestration/internalization/evidence/r08-live-20260714/github-solution-research.md
  • orchestration/internalization/git.json
  • orchestration/internalization/graph.json
  • orchestration/internalization/pon-multilanguage.json
  • orchestration/internalization/pon-project-conformance.json
  • orchestration/internalization/pon-python314-development.json
  • orchestration/internalization/sentrux.json
  • orchestration/schemas/code-intel-execution-result.v1.schema.json
  • prototypes/session-observability/IDEA.md
  • prototypes/session-observability/README.md
  • test-code-intel-project-conformance.ps1
  • test-github-solution-research.ps1
  • test-python314-pon-compatibility.ps1
  • test-stable-wrapper-e2e.ps1
🛑 Comments failed to post (2)
.github/workflows/ci.yml (1)

20-21: 🔒 Security & Privacy | 🟠 Major | ⚡ Quick win

Disable persisted checkout credentials. actions/checkout writes the job token into local Git configuration by default; subsequent repository-controlled scripts can access it.

  • .github/workflows/ci.yml#L20-L21: add persist-credentials: false.
  • .github/workflows/ci.yml#L221-L222: add persist-credentials: false.
🧰 Tools
🪛 zizmor (1.26.1)

[warning] 18-21: credential persistence through GitHub Actions artifacts (artipacked): does not set persist-credentials: false

(artipacked)

📍 Affects 1 file
  • .github/workflows/ci.yml#L20-L21 (this comment)
  • .github/workflows/ci.yml#L221-L222
🤖 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 @.github/workflows/ci.yml around lines 20 - 21, Disable persisted checkout
credentials in both actions/checkout configurations at .github/workflows/ci.yml
lines 20-21 and 221-222 by adding persist-credentials: false under each with
block.

Source: Linters/SAST tools

orchestration/integrations.json (1)

341-342: 🗄️ Data Integrity & Integration | 🟡 Minor | ⚡ Quick win

Document the supported run execute doctor flags in both command registries.

The facade passes --doctor-require-repowise and --doctor-require-understand, but both run execute contracts advertise only --profile. This leaves direct orchestration consumers unable to reproduce the facade invocation.

  • orchestration/integrations.json#L341-L342: append both optional doctor flags to runtime.code-intel.commands.execute.
  • orchestration/integrations.json#L1106-L1126: append both optional doctor flags to run.execute.commands.run.
📍 Affects 1 file
  • orchestration/integrations.json#L341-L342 (this comment)
  • orchestration/integrations.json#L1106-L1126
🤖 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 `@orchestration/integrations.json` around lines 341 - 342, Update both command
registries in orchestration/integrations.json: append optional
--doctor-require-repowise and --doctor-require-understand flags to
runtime.code-intel.commands.execute at lines 341-342 and
run.execute.commands.run at lines 1106-1126. Keep the existing --profile
contract intact.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant