Feat/20260817 agoal search - #1053
Open
anxiangbo wants to merge 5 commits into
Open
Conversation
added 3 commits
August 19, 2026 15:05
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
agoal新增计分卡搜索mcp
Risk tier
packaging, or interface behavior changed
platform, auth/keychain, installer, packaging, release, transport, recovery,
or another fail-closed infrastructure change
Verification
Record the smallest targeted evidence that proves the changed behavior. Do not
repeat the entire CI suite locally only to fill this checklist: CI expands the
selected tier from documentation checks, through affected-package tests, to
the complete high-risk suite.
N/A):.changes/<unique-name>.md; ordinary PRs must not editCHANGELOG.md.N/A):./scripts/policy/check-changelog-pr.sh --content-only "$(git merge-base HEAD origin/main)" HEADN/A)tiers; record command/result or
N/A)./scripts/policy/check-generated-drift.sh(when generator inputs or generated artifacts may change)
./scripts/policy/check-command-surface.sh --strict(if command surface changed)./scripts/release/verify-package-managers.sh(after
make package, if packaging or installer surfaces changed)Notes
-- 命令真实调用成功
anxb@U-0PWG76K0-1826 dingtalk-workspace-cli % ./dws agoal scorecard search-entities --keyword '111122'
{
"code": null,
"content": {
"pageSize": 20,
"result": [
{
"entityId": "6a0ea20f7650a85bd5dcf1c5",
"entityType": "SC_INDICATOR",
"formId": "69c64e8d62096675868bc9ba",
"scId": "674d4df0ec35475cd839c754",
"selectedTime": 1767196800000,
"team": {
"id": "6474999e45c7742a07617d29",
"name": "经营管理部",
"openId": "853940115"
},
"title": "111122"
}
],
"totalCount": 1
},
"message": null,
"requestId": "212190a217871266144867726e0504",
"success": true
}
-- 触发必填校验
anxb@U-0PWG76K0-1826 dingtalk-workspace-cli % ./dws agoal scorecard search-entities --keyword ''
{
"error": {
"category": "internal",
"code": 5,
"message": "missing required flag(s): --keyword\n usage: dws agoal scorecard search-entities [flags]\n example:\n dws agoal scorecard search-entities --keyword "业绩"\n dws agoal scorecard search-entities --keyword "" --page 1 --page-size 20"
}
}