Skip to content

feat(docs): upload local image and source resources - #1864

Open
SunPeiYang996 wants to merge 10 commits into
mainfrom
sun/lark-cli-local-resources
Open

feat(docs): upload local image and source resources#1864
SunPeiYang996 wants to merge 10 commits into
mainfrom
sun/lark-cli-local-resources

Conversation

@SunPeiYang996

@SunPeiYang996 SunPeiYang996 commented Jul 13, 2026

Copy link
Copy Markdown
Collaborator

Summary

Add first-class local resource support to lark-cli docs v2:

  • XML: <img path="@relative/path.png"> and <source path="@relative/file.pdf">
  • Markdown: ![alt](@relative/path.png) plus <source path="@relative/file.pdf">
  • docs +create and docs +update (append / block_insert_after)
  • user and bot identities, Docx and Wiki URLs

The CLI validates local files, sends only opaque placeholder markers to Docs AI, uploads media after receiving distinct placeholder block IDs, and binds the uploaded tokens. Real local paths never leave the CLI.

What changed

  • Added local image/source discovery for XML and Markdown.
  • Added cwd-confined path, symlink, file type and non-empty validation.
  • Added upload, placeholder correlation, binding, retry, pacing, stable client token/revision, ambiguous-response verification and failed-placeholder cleanup.
  • Added 20-item binding batches and multipart upload for files larger than 20 MiB.
  • Preserved image captions/titles and source name/MIME/size/token across XML/Markdown.
  • Failed file upload cleanup now deletes the verified owning figure wrapper, avoiding residual empty <figure><source/></figure> blocks.
  • Updated lark-doc skill documentation and CLI docs.
  • Added parser, validation, upload, bind, cleanup, dry-run and live workflow tests.

Review regression coverage

Permanent live E2E assertions cover:

  • local image width / height values of zero, negative and non-numeric;
  • local source size values of zero, negative and non-numeric;
  • distinct block IDs for every image/file in one response;
  • Markdown export replayed directly into a new document;
  • XML readback proving Markdown image alt was restored as caption and source metadata survived;
  • post-write upload failure cleanup with no residual placeholder shell;
  • full resource lifecycle cleanup.

Safety and compatibility

  • Rejects missing files, directories, empty files, traversal, symlink escape and reserved markers before document mutation.
  • Ignores resource-like syntax inside inert Markdown contexts.
  • Cleanup revalidates the block type/token; file wrapper deletion is skipped conservatively if the parent ID is missing, self-referential or the document root.
  • Existing remote-resource and ordinary Docs v2 behavior is unchanged.
  • No OpenAPI, IDL or ai_edit RPC contract change is required.

Cross-repository dependency chain

  1. DocX Engine (merged): https://code.byted.org/larkdoc/docx_engine/merge_requests/2928
  2. DocxXML SDK: https://code.byted.org/lark/office_ai_sdk/merge_requests/184
  3. ai_edit: https://code.byted.org/ccm-platform/ai_edit/merge_requests/176
  4. This PR

Current exact heads:

  • CLI: c89354123e6c52e2c9bd6a888bf4ce3c1982980f
  • SDK: 4fddd72e615de96ccba729c47bfbd7a15484aa54
  • ai_edit: d7e292caac118815332ffeaefd35128941dcc2e0
  • Engine: bc22c5f0aab8891de00ef157699ff889d2e63811

Verification

Pre-PPE:

  • make unit-test: pass.
  • go vet ./...: pass.
  • make build: pass (v1.0.77-23-gc8935412).
  • SDK remote full tests, convert YAML E2E and build: pass.
  • ai_edit go mod tidy -diff, go mod verify, remote build and Codebase CI: pass.

PPE:

  • Lane: ppe_sun_ai_test
  • ai_edit SCM: 1.0.0.599
  • ENV ticket: 2081961573783420928
  • TCE deployment: 373113883
  • Runtime: 4/4 instances Running
  • Current-head formal E2E: bot 6/6 + user 6/6, pass
  • Current-head full suite: 59/59, pass
  • Cleanup: 8/8 created documents deleted and deletion state verified

E2E report:
https://bytedance.larkoffice.com/docx/LFg3db8YZo5jh3xqSVhcnanHnYb

Rollback

Revert this PR to remove CLI-side local resource detection/upload/bind behavior. Existing documents contain normal image/file blocks and remain readable. If the server chain is also rolled back, revert in reverse order: ai_edit, SDK, then Engine.

@coderabbitai

coderabbitai Bot commented Jul 13, 2026

Copy link
Copy Markdown

Review Change Stack

Note

Reviews paused

It looks like this branch is under active development. To avoid overwhelming you with review comments due to an influx of new commits, CodeRabbit has automatically paused this review. You can configure this behavior by changing the reviews.auto_review.auto_pause_after_reviewed_commits setting.

Use the following commands to manage reviews:

  • @coderabbitai resume to resume automatic reviews.
  • @coderabbitai review to trigger a single review.

Use the checkboxes below for quick actions:

  • ▶️ Resume reviews
  • 🔍 Trigger review
📝 Walkthrough

Walkthrough

Changes

The PR adds local image and attachment handling for Docs V2 create/update flows, including parsing, validation, upload, token binding, cleanup, dry-run support, pacing, scope enforcement, tests, and documentation.

Local document resources

Layer / File(s) Summary
Resource parsing and preparation
shortcuts/doc/local_doc_resources.go, shortcuts/doc/local_doc_resources_test.go
XML and Markdown local resources are validated and rewritten with placeholders while preserving metadata and ignoring inert contexts.
Upload, binding, and cleanup
shortcuts/doc/local_doc_resources.go, shortcuts/doc/local_doc_resources_test.go
Resources are correlated, uploaded with retries, bound in batches, verified, cleaned up when safe, and reported with structured outcomes.
V2 document write integration
shortcuts/doc/html5_block_resources.go, shortcuts/doc/docs_create*.go, shortcuts/doc/docs_update*.go
Create and update flows carry prepared resources through validation, dry-run generation, API writes, wiki resolution, and finalization.
Multipart request pacing
shortcuts/common/drive_media_upload.go, shortcuts/doc/doc_media_upload.go
Multipart uploads support minimum intervals between prepare, part, and finish requests with context cancellation.
Validation, documentation, and end-to-end coverage
cmd/root_test.go, shortcuts/doc/doc_media_insert.go, skills/lark-doc/references/*, tests/cli_e2e/docs/*
Authorization and validation expectations, local-resource documentation, coverage records, dry-run checks, and create/update workflows are updated.

Estimated code review effort: 5 (Critical) | ~120 minutes

Sequence Diagram(s)

sequenceDiagram
  participant DocsCLI
  participant DocsOpenAPI
  participant MediaAPI
  DocsCLI->>DocsCLI: parse and rewrite local resources
  DocsCLI->>DocsOpenAPI: create or update document with placeholders
  DocsOpenAPI-->>DocsCLI: return placeholder blocks
  DocsCLI->>MediaAPI: upload local files and images
  MediaAPI-->>DocsCLI: return media tokens
  DocsCLI->>DocsOpenAPI: bind tokens and clean placeholders
Loading

Possibly related PRs

  • larksuite/cli#638: Both changes modify the typed Docs API wrapper and nil-data validation.
  • larksuite/cli#1380: Both changes modify v2 document write preparation and reference-map handling.
  • larksuite/cli#1547: Both changes modify v2 update validation and request construction.

Suggested labels: feature

Suggested reviewers: liangshuo-1, fangshuyu-768

🚥 Pre-merge checks | ✅ 4 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 4.20% 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.
Title check ✅ Passed The title clearly matches the main change: adding local image and source resource uploads for docs.
Description check ✅ Passed The description covers summary, changes, verification, and broader context, with only the Related Issues section missing.
✨ 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 sun/lark-cli-local-resources

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.

@github-actions github-actions Bot added domain/ccm PR touches the ccm domain size/XL Architecture-level or global-impact change labels Jul 13, 2026
@github-actions

github-actions Bot commented Jul 13, 2026

Copy link
Copy Markdown

🚀 PR Preview Install Guide

🧰 CLI update

npm i -g https://pkg.pr.new/larksuite/cli/@larksuite/cli@1a79483ac529b9aac97ebbcc43929646e80ea40d

🧩 Skill update

npx skills add larksuite/cli#sun/lark-cli-local-resources -y -g

@codecov

codecov Bot commented Jul 13, 2026

Copy link
Copy Markdown

Codecov Report

❌ Patch coverage is 67.88593% with 518 lines in your changes missing coverage. Please review.
✅ Project coverage is 75.08%. Comparing base (1f565a2) to head (1a79483).

Files with missing lines Patch % Lines
shortcuts/doc/local_doc_resources.go 68.95% 356 Missing and 114 partials ⚠️
shortcuts/common/drive_media_upload.go 23.52% 10 Missing and 3 partials ⚠️
shortcuts/doc/docs_update_v2.go 56.66% 8 Missing and 5 partials ⚠️
shortcuts/doc/docs_create_v2.go 30.76% 7 Missing and 2 partials ⚠️
shortcuts/doc/html5_block_resources.go 66.66% 4 Missing and 2 partials ⚠️
shortcuts/doc/docs_update.go 0.00% 4 Missing ⚠️
shortcuts/doc/doc_media_insert.go 0.00% 3 Missing ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##             main    #1864      +/-   ##
==========================================
- Coverage   75.19%   75.08%   -0.11%     
==========================================
  Files         914      915       +1     
  Lines       96789    98367    +1578     
==========================================
+ Hits        72778    73858    +1080     
- Misses      18413    18785     +372     
- Partials     5598     5724     +126     

☔ View full report in Codecov by Harness.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@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: 3

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (1)
shortcuts/doc/doc_media_insert.go (1)

524-561: 📐 Maintainability & Code Quality | 🟠 Major | ⚡ Quick win

Move recovery guidance into .WithHint(...) for the "doc" case.

Line 534 bakes recovery guidance ("use a docx token/URL or a wiki URL that resolves to docx") into the main error message instead of .WithHint(...), while the sibling wiki/default branches keep the message fact-only. As per coding guidelines: "recovery guidance goes in .WithHint(...)".

♻️ Proposed fix
 	case "doc":
-		return "", errs.NewValidationError(errs.SubtypeInvalidArgument, "this document operation only supports docx documents; use a docx token/URL or a wiki URL that resolves to docx").WithParam("--doc")
+		return "", errs.NewValidationError(errs.SubtypeInvalidArgument, "this document operation only supports docx documents").
+			WithParam("--doc").
+			WithHint("use a docx token/URL or a wiki URL that resolves to docx")
🤖 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 `@shortcuts/doc/doc_media_insert.go` around lines 524 - 561, Update the "doc"
branch of resolveDocxDocumentID so the main validation error remains
fact-focused, and move the existing recovery guidance into a chained WithHint
call. Keep the existing error subtype and --doc parameter unchanged.

Source: Coding guidelines

🤖 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 `@shortcuts/common/drive_media_upload.go`:
- Around line 8-12: Add tests around waitDriveMediaMultipartRequest covering
both MinRequestInterval pauses: prepare→part and part→finish. Verify each pause
enforces the configured interval, and add a cancellation case confirming the
wait exits promptly when the context is canceled.

In `@skills/lark-doc/references/lark-doc-update.md`:
- Around line 59-60: Keep the warning text beginning with “本地图片和附件” as one
continuous blockquote by removing the blank line inside it or adding the
blockquote marker to that line, preventing the warning from being split into
separate blocks.

In `@tests/cli_e2e/docs/coverage.md`:
- Around line 26-34: Update the command descriptions in the coverage table cells
for docs +fetch and docs +update to escape or replace the alternative separators
in “markdown|xml” and “overwrite|append”. Preserve the documented command
options while ensuring each row remains exactly six Markdown table columns and
satisfies MD056.

---

Outside diff comments:
In `@shortcuts/doc/doc_media_insert.go`:
- Around line 524-561: Update the "doc" branch of resolveDocxDocumentID so the
main validation error remains fact-focused, and move the existing recovery
guidance into a chained WithHint call. Keep the existing error subtype and --doc
parameter 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: defaults

Review profile: CHILL

Plan: Pro

Run ID: ea3862b6-8026-45fd-872d-1e380e5b465f

📥 Commits

Reviewing files that changed from the base of the PR and between 83352fe and d960f15.

📒 Files selected for processing (19)
  • cmd/root_test.go
  • shortcuts/common/drive_media_upload.go
  • shortcuts/doc/doc_media_insert.go
  • shortcuts/doc/doc_media_upload.go
  • shortcuts/doc/docs_create.go
  • shortcuts/doc/docs_create_v2.go
  • shortcuts/doc/docs_update.go
  • shortcuts/doc/docs_update_v2.go
  • shortcuts/doc/helpers.go
  • shortcuts/doc/html5_block_resources.go
  • shortcuts/doc/local_doc_resources.go
  • shortcuts/doc/local_doc_resources_test.go
  • skills/lark-doc/references/lark-doc-create.md
  • skills/lark-doc/references/lark-doc-md.md
  • skills/lark-doc/references/lark-doc-update.md
  • skills/lark-doc/references/lark-doc-xml.md
  • tests/cli_e2e/docs/coverage.md
  • tests/cli_e2e/docs/docs_local_resources_dryrun_test.go
  • tests/cli_e2e/docs/docs_local_resources_workflow_test.go

Comment on lines +8 to +12
"context"
"fmt"
"io"
"net/http"
"time"

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Search for tests covering the multipart pacing / MinRequestInterval behavior
rg -n 'MinRequestInterval\|waitDriveMediaMultipartRequest\|MinRequestInterval' --type go -g '*_test.go'

Repository: larksuite/cli

Length of output: 151


🏁 Script executed:

#!/bin/bash
set -euo pipefail

# Map the target file and surrounding tests.
git ls-files 'shortcuts/common/drive_media_upload.go' 'shortcuts/common/*_test.go' 'shortcuts/**/*_test.go' | sed -n '1,200p'

echo '--- outline ---'
ast-grep outline shortcuts/common/drive_media_upload.go --view expanded

echo '--- search for pacing-related tests and symbols ---'
rg -n 'MinRequestInterval|waitDriveMediaMultipartRequest|multipart.*request|drive media upload|drive_media_upload' shortcuts -g '*_test.go' -g '*.go'

Repository: larksuite/cli

Length of output: 11172


🏁 Script executed:

#!/bin/bash
set -euo pipefail

echo '--- drive_media_upload_test.go outline ---'
ast-grep outline shortcuts/common/drive_media_upload_test.go --view expanded

echo '--- drive_media_upload_typed_test.go outline ---'
ast-grep outline shortcuts/common/drive_media_upload_typed_test.go --view expanded

echo '--- relevant test snippets ---'
sed -n '1,260p' shortcuts/common/drive_media_upload_test.go
echo '--- typed tests ---'
sed -n '1,260p' shortcuts/common/drive_media_upload_typed_test.go

Repository: larksuite/cli

Length of output: 17589


🏁 Script executed:

#!/bin/bash
set -euo pipefail

echo '--- all references to MinRequestInterval / waitDriveMediaMultipartRequest ---'
rg -n 'MinRequestInterval|waitDriveMediaMultipartRequest' shortcuts -g '*.go'

echo '--- continue drive_media_upload_typed_test.go ---'
sed -n '260,360p' shortcuts/common/drive_media_upload_typed_test.go

Repository: larksuite/cli

Length of output: 2716


🏁 Script executed:

#!/bin/bash
set -euo pipefail

echo '--- tests that exercise doc media upload flow ---'
rg -n 'upload_prepare|upload_part|upload_finish|MinRequestInterval|localDocResourceUploadInterval|wait.*Request' shortcuts/doc -g '*_test.go'

echo '--- test files in shortcuts/doc ---'
git ls-files 'shortcuts/doc/*_test.go' | sed -n '1,200p'

Repository: larksuite/cli

Length of output: 4190


Add tests for multipart pacing. Existing multipart tests cover the request bodies, but not the new MinRequestInterval wait path in waitDriveMediaMultipartRequest or its context-cancellation behavior. Add coverage for the prepare→part and part→finish pauses.

🤖 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 `@shortcuts/common/drive_media_upload.go` around lines 8 - 12, Add tests around
waitDriveMediaMultipartRequest covering both MinRequestInterval pauses:
prepare→part and part→finish. Verify each pause enforces the configured
interval, and add a cancellation case confirming the wait exits promptly when
the context is canceled.

Source: Coding guidelines

Comment on lines +59 to +60
> 本地图片和附件只允许用于 `append` 或 `block_insert_after`。`str_replace` 不会创建资源 block,而 `block_replace` / `overwrite` 一旦在后续上传绑定失败会先破坏旧内容,因此 CLI 会在写文档前拒绝这些组合。

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win

Keep the warning in one blockquote.

Line [60] is a blank line inside the blockquote, triggering MD028 and breaking the warning into separate blockquotes. Remove the blank line or prefix it with >.

Proposed fix
 > 本地图片和附件只允许用于 `append` 或 `block_insert_after`。`str_replace` 不会创建资源 block,而 `block_replace` / `overwrite` 一旦在后续上传绑定失败会先破坏旧内容,因此 CLI 会在写文档前拒绝这些组合。
-
+>
 > **匹配范围:**
🧰 Tools
🪛 markdownlint-cli2 (0.22.1)

[warning] 60-60: Blank line inside blockquote

(MD028, no-blanks-blockquote)

🤖 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 `@skills/lark-doc/references/lark-doc-update.md` around lines 59 - 60, Keep the
warning text beginning with “本地图片和附件” as one continuous blockquote by removing
the blank line inside it or adding the blockquote marker to that line,
preventing the warning from being split into separate blocks.

Source: Linters/SAST tools

Comment thread tests/cli_e2e/docs/coverage.md
@SunPeiYang996
SunPeiYang996 force-pushed the sun/lark-cli-local-resources branch from d960f15 to f7401bc Compare July 27, 2026 12:05

@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: 1

🤖 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 `@shortcuts/doc/html5_block_resources.go`:
- Around line 110-112: Update the reference-map handling in the PUT body
construction to check runtime.Changed("reference-map") rather than
len(input.ReferenceMap) > 0, and include input.ReferenceMap even when it is an
explicitly parsed empty map so the update clears existing mappings.
🪄 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: 06e7bd6c-47e3-4827-a3f5-a1b6500f1e03

📥 Commits

Reviewing files that changed from the base of the PR and between d960f15 and f7401bc.

📒 Files selected for processing (12)
  • cmd/root_test.go
  • shortcuts/common/drive_media_upload.go
  • shortcuts/doc/doc_media_insert.go
  • shortcuts/doc/doc_media_upload.go
  • shortcuts/doc/docs_create.go
  • shortcuts/doc/docs_create_v2.go
  • shortcuts/doc/docs_update.go
  • shortcuts/doc/docs_update_v2.go
  • shortcuts/doc/helpers.go
  • shortcuts/doc/html5_block_resources.go
  • shortcuts/doc/local_doc_resources.go
  • shortcuts/doc/local_doc_resources_test.go
🚧 Files skipped from review as they are similar to previous changes (11)
  • shortcuts/doc/docs_create.go
  • shortcuts/doc/doc_media_upload.go
  • cmd/root_test.go
  • shortcuts/doc/helpers.go
  • shortcuts/doc/doc_media_insert.go
  • shortcuts/common/drive_media_upload.go
  • shortcuts/doc/docs_update.go
  • shortcuts/doc/docs_update_v2.go
  • shortcuts/doc/docs_create_v2.go
  • shortcuts/doc/local_doc_resources.go
  • shortcuts/doc/local_doc_resources_test.go

Comment on lines 110 to 112
if len(input.ReferenceMap) > 0 {
body["reference_map"] = input.ReferenceMap
}

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

Preserve explicitly empty reference maps on update.

An explicit {} should clear existing mappings, but len(input.ReferenceMap) > 0 omits it from the PUT body. Use the changed-state (runtime.Changed("reference-map")) and preserve the empty map parsed by the resolver.

As per coding guidelines, requested values must not be silently discarded.

Proposed fix
-	if len(input.ReferenceMap) > 0 {
+	if runtime.Changed("reference-map") {
 		body["reference_map"] = input.ReferenceMap
 	}
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
if len(input.ReferenceMap) > 0 {
body["reference_map"] = input.ReferenceMap
}
if runtime.Changed("reference-map") {
body["reference_map"] = input.ReferenceMap
}
🤖 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 `@shortcuts/doc/html5_block_resources.go` around lines 110 - 112, Update the
reference-map handling in the PUT body construction to check
runtime.Changed("reference-map") rather than len(input.ReferenceMap) > 0, and
include input.ReferenceMap even when it is an explicitly parsed empty map so the
update clears existing mappings.

Source: Coding guidelines

@SunPeiYang996
SunPeiYang996 force-pushed the sun/lark-cli-local-resources branch from 47b2009 to 1a79483 Compare July 30, 2026 07:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

domain/ccm PR touches the ccm domain size/XL Architecture-level or global-impact change

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant