Skip to content

feat(adt-mcp): add delegated assistant read scope - #148

Merged
ThePlenkov merged 6 commits into
mainfrom
feat/delegated-assistant-read-scope
Jul 26, 2026
Merged

feat(adt-mcp): add delegated assistant read scope#148
ThePlenkov merged 6 commits into
mainfrom
feat/delegated-assistant-read-scope

Conversation

@ThePlenkov

@ThePlenkov ThePlenkov commented Jul 25, 2026

Copy link
Copy Markdown
Member

Summary

  • Add a product-neutral delegated-assistant read invocation envelope
  • Keep tool catalogue and dispatch policy server-owned
  • Reject tool allowlists, limits, write, and safe-execute authority
  • Replace the obsolete repeated commit/push confirmation rule with autonomous scoped feature delivery

Verification

  • 20 focused policy, catalogue, and signed-JWT tests pass
  • Scoped ESLint and Prettier pass
  • Strict OpenSpec validation passes

Technical Details

This change introduces a new delegated-assistant signed invocation policy that allows interactive MCP clients to discover and call read tools on behalf of an authenticated principal without duplicating the server's tool catalogue. The policy is product-neutral and does not include product-specific agent names or workflows.

The change also updates the repository's git workflow rules to enable autonomous delivery of verified feature work to scoped branches, replacing the previous "no auto-commit" rule with a more flexible "autonomous delivery" rule that still gates destructive operations and protected-branch updates.


Open in Devin Review

Summary by cubic

Adds a product-neutral delegated-assistant read scope to adt-mcp so interactive clients can list and run server-owned read tools (incl. ATC and AUnit) without client allowlists. Also exposes a REST runtime composition seam in adt-server and tightens scoped listing rules for ATC/AUnit.

  • New Features

    • Added a signed delegated-assistant read policy bound to principal, threadId, executionId, systemSid, and one Destination; exported parseDelegatedAssistantReadPolicy.
    • Classified atc_run and run_unit_tests (incl. coverage) as read; ordinary read authority can dispatch them, and when using an exact scoped policy their listing requires the safe_execute class (still supported for stricter runs).
    • Exposed loadRestRuntimeSecurity, RestRuntimeSecurity, and RestRuntimeSecurityOptions from adt-server to compose REST runtime.
  • Refactors

    • Replaced .agents/rules/git/no-auto-commit with .agents/rules/git/autonomous-delivery; updated guides and epic templates to allow committing and pushing authorized feature work without extra prompts.

Written for commit ff614ec. Summary will update on new commits.

Review in cubic

Summary by CodeRabbit

  • New Features

    • Code analysis, ATC checks, unit tests, and coverage can now run under standard read-only access.
    • Delegated assistants can access analysis tools while mutation operations remain restricted.
    • Stricter, object-scoped execution permissions remain supported.
  • Documentation

    • Added policy and specification documentation describing read-only analysis behavior and security boundaries.
  • Refactor

    • Exposed REST runtime security utilities through the server’s public interface.
  • Tests

    • Added coverage for delegated read access and updated authorization checks for analysis tools.

@chatgpt-codex-connector

Copy link
Copy Markdown

You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard.

@netlify

netlify Bot commented Jul 25, 2026

Copy link
Copy Markdown

Deploy Preview for adt-cli canceled.

Name Link
🔨 Latest commit ff614ec
🔍 Latest deploy log https://app.netlify.com/projects/adt-cli/deploys/6a66816e24d0a500087703c5

@coderabbitai

coderabbitai Bot commented Jul 25, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

📝 Walkthrough

Walkthrough

The PR classifies atc_run and run_unit_tests as authenticated read operations while preserving scoped safe_execute handling and mutation boundaries. It adds delegated catalogue and authorization tests, and exports REST runtime security types through the ADT server entry point.

Changes

Delegated MCP read access

Layer / File(s) Summary
Read-analysis policy contract
openspec/changes/classify-atc-as-read-analysis/{design.md,proposal.md,tasks.md}, openspec/.../specs/adt-mcp/spec.md
Documents read classification for ATC, AUnit, and coverage, delegated access behavior, mutation exclusions, and retained scoped execution support.
Catalogue and authorization enforcement
packages/adt-mcp/src/lib/tools/scope-catalogue.ts, packages/adt-mcp/tests/{delegated-assistant-catalogue.test.ts,scope-enforcement.test.ts}
Lists analysis tools under read, preserves matching for scoped safe_execute, and verifies delegated read access and mutation denial.

REST runtime security surface

Layer / File(s) Summary
REST runtime security exports
packages/adt-server/src/{index.ts,rest-runtime.ts}, packages/adt-server/tests/rest-runtime.test.ts
Names and re-exports the REST runtime security type and loader, with tests importing the loader from the package entry point.

Estimated code review effort: 3 (Moderate) | ~20 minutes

Possibly related PRs

Suggested labels: baz: needs review

Suggested reviewers: baz-reviewer

🚥 Pre-merge checks | ✅ 4 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 25.00% 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
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.
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title accurately summarizes the main change: adding delegated assistant read scope for ADT MCP.
✨ Finishing Touches
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch feat/delegated-assistant-read-scope

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.

@amazon-q-developer amazon-q-developer Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

This PR successfully adds the delegated-assistant read scope with proper security controls and comprehensive test coverage. The implementation correctly follows the established patterns for agent policy validation, includes all necessary security checks, and maintains the fail-closed approach. All 20 tests pass, and the code is ready to merge.


You can now have the agent implement changes and create commits directly on your pull request's source branch. Simply comment with /q followed by your request in natural language to ask the agent to make changes.

@codacy-production

codacy-production Bot commented Jul 25, 2026

Copy link
Copy Markdown

Up to standards ✅

🟢 Issues 0 issues

Results:
0 new issues

View in Codacy

🟢 Metrics 0 complexity · 0 duplication

Metric Results
Complexity 0
Duplication 0

View in Codacy

NEW Get contextual insights on your PRs based on Codacy's metrics, along with PR and Jira context, without leaving GitHub. Enable AI reviewer
TIP This summary will be updated as you push new changes.

@baz-reviewer

baz-reviewer Bot commented Jul 25, 2026

Copy link
Copy Markdown

Merger

Ready to Merge

MERGE: the delegated read-scope change is internally consistent, and all review threads are already resolved or rejected with no remaining blocker. CI didn’t run, but there’s no diff-confirmed defect or open disagreement that would justify holding this PR.

Commit ff614ec · Evaluated 2026-07-26 21:53 UTC


Review this PR on Baz | Customize your next review

@devin-ai-integration devin-ai-integration Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Devin Review found 2 potential issues.

Open in Devin Review

Comment thread packages/adt-mcp/src/lib/http/invocation.ts
Comment thread .agents/repo-guide.md
@qodo-code-review

Copy link
Copy Markdown

PR Summary by Qodo

feat(adt-mcp): add delegated-assistant signed read scope

✨ Enhancement 🧪 Tests 📝 Documentation 🕐 40+ Minutes

Grey Divider

AI Description

• Add delegated-assistant signed read envelope for server-owned tool discovery and dispatch.
• Enforce exact claim shape; reject allowlists, limits, write, safe_execute, and extra Destinations.
• Replace no-auto-commit guidance with autonomous, verified feature-branch delivery rules.
Diagram

graph TD
  A["Interactive MCP client"] --> B["ADT credential issuer"] --> C["Delegated read JWT"] --> D["Invocation verifier"] --> E["Scope catalogue"]
  E --> F["tools/list"]
  E --> G["Dispatch checks"] --> H[("SAP via Destination")]
Loading
High-Level Assessment

The following are alternative approaches to this PR:

1. Reuse system-assistant envelope
  • ➕ No new agentId/policy parser to maintain
  • ➕ Potentially fewer moving parts for clients already using it
  • ➖ No explicit thread/execution binding for interactive delegation
  • ➖ Blurs compatibility behavior with a tighter delegated contract
2. Embed client tool allowlist/limits in the claim
  • ➕ Client can further constrain tool availability per session
  • ➖ Drifts from server catalogue; requires client updates as tools evolve
  • ➖ Increases claim surface area and verification complexity; widening risk
3. Add safe_execute to delegated envelope
  • ➕ Enables ATC/unit test style flows from interactive clients
  • ➖ Higher risk; requires separate, strict single-use grants and stronger checks
  • ➖ Conflicts with stated read-only/non-goals of delegated envelope

Recommendation: Keep the PR’s approach: introduce a product-neutral delegated-assistant read-only envelope with an exact claim shape and server-owned catalogue authority. It minimizes client coupling, prevents catalogue drift, and fails closed by rejecting any widened authority (limits, allowlists, extra classes/destinations). If safe_execute is needed later, add it via a separate explicit grant rather than expanding this envelope.

Files changed (28) +380 / -25

Enhancement (2) +41 / -1
index.tsExport delegated-assistant policy parser and types +2/-0

Export delegated-assistant policy parser and types

• Re-exports parseDelegatedAssistantReadPolicy and DelegatedAssistantReadPolicy from the package entrypoint.

packages/adt-mcp/src/index.ts

invocation.tsImplement delegated-assistant-read-v1 parsing and dispatch support gating +39/-1

Implement delegated-assistant-read-v1 parsing and dispatch support gating

• Adds delegated-assistant as a trusted agentId and introduces a strict parser requiring exactly server+read classes, one destination, empty limits, exact constraint keys, and validated UUID/system SID; dispatch admission now depends on this parser.

packages/adt-mcp/src/lib/http/invocation.ts

Tests (3) +162 / -0
delegated-assistant-catalogue.test.tsTest delegated read catalogue projection and dispatch denial for write/safe_execute +56/-0

Test delegated read catalogue projection and dispatch denial for write/safe_execute

• Verifies tools/list admits many read tools from the server-owned catalogue and excludes write and safe-execute tools; asserts dispatch denies write/safe_execute/unknown tools.

packages/adt-mcp/tests/delegated-assistant-catalogue.test.ts

delegated-assistant-policy.test.tsAdd strict delegated-assistant policy unit tests +84/-0

Add strict delegated-assistant policy unit tests

• Covers accept-path for the exact policy and rejects widened authority (tool lists, limits, extra classes, extra destinations) plus malformed thread/execution/system bindings.

packages/adt-mcp/tests/delegated-assistant-policy.test.ts

http-invocation.test.tsAdd signed JWT verification test for delegated-assistant envelope +22/-0

Add signed JWT verification test for delegated-assistant envelope

• Extends invocation verifier tests to sign a delegated-assistant-read-v1 ES256 JWT and assert it verifies and is dispatch-admissible.

packages/adt-mcp/tests/http-invocation.test.ts

Documentation (23) +177 / -24
repo-guide.mdSwap always-on git rule reference to autonomous delivery +7/-7

Swap always-on git rule reference to autonomous delivery

• Updates the rules index to replace git/no-auto-commit with git/autonomous-delivery.

.agents/repo-guide.md

autonomous-delivery.mdAdd autonomous commit/push rule with gated high-risk actions +26/-0

Add autonomous commit/push rule with gated high-risk actions

• Introduces an always-on rule allowing verified atomic commits/pushes to scoped feature branches without re-prompting, while still gating force-pushes, protected branches, releases, and scope expansion.

.agents/rules/git/autonomous-delivery.md

README.mdUpdate epic workflow guidance to autonomous delivery +3/-1

Update epic workflow guidance to autonomous delivery

• Replaces the old “no commits without approval” guidance with autonomous verified feature delivery and links to the new rule.

docs/roadmap/README.md

_template.mdUpdate epic template commit instructions +1/-1

Update epic template commit instructions

• Changes the template’s instruction to commit and push verified changes to the scoped feature branch without a separate confirmation prompt.

docs/roadmap/epics/_template.md

e01-include.mdAlign epic instructions with autonomous delivery +1/-1

Align epic instructions with autonomous delivery

• Updates the epic header guidance from explicit approval to autonomous scoped delivery wording.

docs/roadmap/epics/e01-include.md

e02-function.mdAlign epic instructions with autonomous delivery +1/-1

Align epic instructions with autonomous delivery

• Updates the epic header guidance from explicit approval to autonomous scoped delivery wording.

docs/roadmap/epics/e02-function.md

e03-badi.mdAlign epic instructions with autonomous delivery +1/-1

Align epic instructions with autonomous delivery

• Updates the epic header guidance from explicit approval to autonomous scoped delivery wording.

docs/roadmap/epics/e03-badi.md

e04-strust.mdAlign epic instructions with autonomous delivery +1/-1

Align epic instructions with autonomous delivery

• Updates the epic header guidance from explicit approval to autonomous scoped delivery wording.

docs/roadmap/epics/e04-strust.md

e05-format-plugin-api.mdAlign epic instructions with autonomous delivery +1/-1

Align epic instructions with autonomous delivery

• Updates the epic header guidance from explicit approval to autonomous scoped delivery wording.

docs/roadmap/epics/e05-format-plugin-api.md

e06-gcts-format-plugin.mdAlign epic instructions with autonomous delivery +1/-1

Align epic instructions with autonomous delivery

• Updates the epic header guidance from explicit approval to autonomous scoped delivery wording.

docs/roadmap/epics/e06-gcts-format-plugin.md

e07-gcts-command-plugin.mdAlign epic instructions with autonomous delivery +1/-1

Align epic instructions with autonomous delivery

• Updates the epic header guidance from explicit approval to autonomous scoped delivery wording.

docs/roadmap/epics/e07-gcts-command-plugin.md

e08-checkin.mdAlign epic instructions with autonomous delivery +1/-1

Align epic instructions with autonomous delivery

• Updates the epic header guidance from explicit approval to autonomous scoped delivery wording.

docs/roadmap/epics/e08-checkin.md

e09-acds-parser.mdAlign epic instructions with autonomous delivery +1/-1

Align epic instructions with autonomous delivery

• Updates the epic header guidance from explicit approval to autonomous scoped delivery wording.

docs/roadmap/epics/e09-acds-parser.md

e10-rap-bdef.mdAlign epic instructions with autonomous delivery +1/-1

Align epic instructions with autonomous delivery

• Updates the epic header guidance from explicit approval to autonomous scoped delivery wording.

docs/roadmap/epics/e10-rap-bdef.md

e11-rap-srvd.mdAlign epic instructions with autonomous delivery +1/-1

Align epic instructions with autonomous delivery

• Updates the epic header guidance from explicit approval to autonomous scoped delivery wording.

docs/roadmap/epics/e11-rap-srvd.md

e12-rap-srvb.mdAlign epic instructions with autonomous delivery +1/-1

Align epic instructions with autonomous delivery

• Updates the epic header guidance from explicit approval to autonomous scoped delivery wording.

docs/roadmap/epics/e12-rap-srvb.md

e13-startrfc.mdAlign epic instructions with autonomous delivery +1/-1

Align epic instructions with autonomous delivery

• Updates the epic header guidance from explicit approval to autonomous scoped delivery wording.

docs/roadmap/epics/e13-startrfc.md

e14-flp.mdAlign epic instructions with autonomous delivery +1/-1

Align epic instructions with autonomous delivery

• Updates the epic header guidance from explicit approval to autonomous scoped delivery wording.

docs/roadmap/epics/e14-flp.md

e15-wb.mdAlign epic instructions with autonomous delivery +1/-1

Align epic instructions with autonomous delivery

• Updates the epic header guidance from explicit approval to autonomous scoped delivery wording.

docs/roadmap/epics/e15-wb.md

design.mdDocument delegated-assistant read design and rejected alternatives +44/-0

Document delegated-assistant read design and rejected alternatives

• Defines the delegated-assistant-read-v1 constraint shape and enforcement model, and records rejected approaches (product IDs, client allowlists, reuse system-assistant, add safe_execute).

openspec/changes/add-delegated-assistant-read-scope/design.md

proposal.mdAdd proposal for delegated-assistant read envelope and non-goals +28/-0

Add proposal for delegated-assistant read envelope and non-goals

• Explains motivation, intended behavior, explicit non-goals (no write/safe_execute/allowlists), and validation expectations.

openspec/changes/add-delegated-assistant-read-scope/proposal.md

spec.mdAdd OpenSpec requirements for delegated read catalogue + fail-closed widening +40/-0

Add OpenSpec requirements for delegated read catalogue + fail-closed widening

• Specifies that delegated assistants get the server-owned server/read catalogue and that malformed/widened authority is denied at discovery and dispatch.

openspec/changes/add-delegated-assistant-read-scope/specs/adt-mcp/spec.md

tasks.mdAdd implementation checklist and verification notes +13/-0

Add implementation checklist and verification notes

• Tracks completed tasks for policy/tests/implementation and documents known full-tree build blockers due to dependency mismatch.

openspec/changes/add-delegated-assistant-read-scope/tasks.md

@cubic-dev-ai cubic-dev-ai 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.

No issues found across 29 files

Re-trigger cubic

@ThePlenkov
ThePlenkov force-pushed the feat/delegated-assistant-read-scope branch from 4592063 to a74fb02 Compare July 25, 2026 23:51

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Actionable comments posted: 3

🧹 Nitpick comments (2)
packages/adt-mcp/tests/delegated-assistant-catalogue.test.ts (2)

49-65: 📐 Maintainability & Code Quality | 🔵 Trivial | ⚡ Quick win

Add runtime dispatch coverage for run_unit_tests.

This verifies only isMcpToolAllowed; the supplied scope-enforcement.test.ts change exercises actual wrapped dispatch for atc_run but not run_unit_tests. Since both tools changed classification, add a read-authority handler test that invokes run_unit_tests with coverage arguments and verifies the handler runs.

🤖 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 `@packages/adt-mcp/tests/delegated-assistant-catalogue.test.ts` around lines 49
- 65, Add a runtime read-authority handler test for run_unit_tests alongside the
existing dispatch coverage, invoking it with objectType, objectName,
withCoverage, and coverageFormat arguments and asserting the handler executes.
Use the established wrapped-dispatch test pattern from
scope-enforcement.test.ts, while preserving the existing isMcpToolAllowed
assertions.

15-32: 🔒 Security & Privacy | 🔵 Trivial | ⚡ Quick win

Make the catalogue test prove the complete read-only boundary.

listed.length > 10 plus one lock_object exclusion will not catch another mutation tool being accidentally advertised. Assert an explicit expected read set, or enumerate all known write entries and assert that none are listed.

🤖 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 `@packages/adt-mcp/tests/delegated-assistant-catalogue.test.ts` around lines 15
- 32, Update the delegated read catalogue test around MCP_TOOL_SCOPE_CATALOGUE
and isMcpToolListed to assert the complete read-only boundary: compare listed
against an explicit expected read-tool set, or explicitly verify every known
write entry is absent. Replace the weak length-only assertion while preserving
the existing required read tools and lock_object exclusion checks.
🤖 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 `@packages/adt-mcp/src/lib/tools/scope-catalogue.ts`:
- Around line 552-560: Update isMcpToolListed() so the atc_run/run_unit_tests
safe_execute exception also requires access.classes to include safe_execute,
matching isMcpToolAllowed() dispatch behavior and preventing uncallable tools
from being listed. Preserve the existing operationClass checks and update the
relevant listed-versus-allowed invariant test.

In `@packages/adt-mcp/tests/delegated-assistant-catalogue.test.ts`:
- Around line 1-2: Replace the Node built-in test imports in
delegated-assistant-catalogue.test.ts with the project’s configured Vitest
imports, using vitest or `@abapify/nx-vitest` for test, describe, and it as
applicable. Keep the existing test behavior unchanged and remove reliance on
node:test.

In `@packages/adt-mcp/tests/delegated-assistant-policy.test.ts`:
- Around line 1-7: Update delegated-assistant-policy.test.ts to import describe
and it from vitest instead of node:test, while preserving the existing test
behavior and other imports.

---

Nitpick comments:
In `@packages/adt-mcp/tests/delegated-assistant-catalogue.test.ts`:
- Around line 49-65: Add a runtime read-authority handler test for
run_unit_tests alongside the existing dispatch coverage, invoking it with
objectType, objectName, withCoverage, and coverageFormat arguments and asserting
the handler executes. Use the established wrapped-dispatch test pattern from
scope-enforcement.test.ts, while preserving the existing isMcpToolAllowed
assertions.
- Around line 15-32: Update the delegated read catalogue test around
MCP_TOOL_SCOPE_CATALOGUE and isMcpToolListed to assert the complete read-only
boundary: compare listed against an explicit expected read-tool set, or
explicitly verify every known write entry is absent. Replace the weak
length-only assertion while preserving the existing required read tools and
lock_object exclusion checks.
🪄 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: defaults

Review profile: CHILL

Plan: Pro Plus

Run ID: 61efa746-1054-406e-bf34-85f9a7af3061

📥 Commits

Reviewing files that changed from the base of the PR and between 41a624b and a74fb02.

📒 Files selected for processing (38)
  • .agents/repo-guide.md
  • .agents/rules/git/autonomous-delivery.md
  • .agents/rules/git/no-auto-commit.md
  • docs/roadmap/README.md
  • docs/roadmap/epics/_template.md
  • docs/roadmap/epics/e01-include.md
  • docs/roadmap/epics/e02-function.md
  • docs/roadmap/epics/e03-badi.md
  • docs/roadmap/epics/e04-strust.md
  • docs/roadmap/epics/e05-format-plugin-api.md
  • docs/roadmap/epics/e06-gcts-format-plugin.md
  • docs/roadmap/epics/e07-gcts-command-plugin.md
  • docs/roadmap/epics/e08-checkin.md
  • docs/roadmap/epics/e09-acds-parser.md
  • docs/roadmap/epics/e10-rap-bdef.md
  • docs/roadmap/epics/e11-rap-srvd.md
  • docs/roadmap/epics/e12-rap-srvb.md
  • docs/roadmap/epics/e13-startrfc.md
  • docs/roadmap/epics/e14-flp.md
  • docs/roadmap/epics/e15-wb.md
  • openspec/changes/add-delegated-assistant-read-scope/design.md
  • openspec/changes/add-delegated-assistant-read-scope/proposal.md
  • openspec/changes/add-delegated-assistant-read-scope/specs/adt-mcp/spec.md
  • openspec/changes/add-delegated-assistant-read-scope/tasks.md
  • openspec/changes/classify-atc-as-read-analysis/design.md
  • openspec/changes/classify-atc-as-read-analysis/proposal.md
  • openspec/changes/classify-atc-as-read-analysis/specs/adt-mcp/spec.md
  • openspec/changes/classify-atc-as-read-analysis/tasks.md
  • packages/adt-mcp/src/index.ts
  • packages/adt-mcp/src/lib/http/invocation.ts
  • packages/adt-mcp/src/lib/tools/scope-catalogue.ts
  • packages/adt-mcp/tests/delegated-assistant-catalogue.test.ts
  • packages/adt-mcp/tests/delegated-assistant-policy.test.ts
  • packages/adt-mcp/tests/http-invocation.test.ts
  • packages/adt-mcp/tests/scope-enforcement.test.ts
  • packages/adt-server/src/index.ts
  • packages/adt-server/src/rest-runtime.ts
  • packages/adt-server/tests/rest-runtime.test.ts
💤 Files with no reviewable changes (1)
  • .agents/rules/git/no-auto-commit.md

Comment thread packages/adt-mcp/src/lib/tools/scope-catalogue.ts
Comment thread packages/adt-mcp/tests/delegated-assistant-catalogue.test.ts
Comment thread packages/adt-mcp/tests/delegated-assistant-policy.test.ts
devin-ai-integration Bot and others added 2 commits July 26, 2026 21:51
Co-Authored-By: Petr Plenkov <petr.plenkov@gmail.com>
Co-Authored-By: Petr Plenkov <petr.plenkov@gmail.com>
@nx-cloud

nx-cloud Bot commented Jul 26, 2026

Copy link
Copy Markdown
Contributor

View your CI Pipeline Execution ↗ for commit ff614ec

Command Status Duration Result
nx affected -t lint test build e2e-ci --verbose... ✅ Succeeded 52s View ↗

💡 Verify your cache is correct by running tasks in a sandbox. Read docs ↗


☁️ Nx Cloud last updated this comment at 2026-07-26 21:53:09 UTC

@sonarqubecloud

Copy link
Copy Markdown

@ThePlenkov
ThePlenkov merged commit 7aeec92 into main Jul 26, 2026
14 checks passed
@ThePlenkov
ThePlenkov deleted the feat/delegated-assistant-read-scope branch July 26, 2026 22:11
@gitar-bot

gitar-bot Bot commented Jul 26, 2026

Copy link
Copy Markdown

Important

You are using the Gitar free plan. Upgrade to unlock code review, CI analysis, auto-apply, custom automations, and more.

Gitar

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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant