docs: update renamed repo references in AGENTS.md - #257
Conversation
|
Warning Review limit reached
Next review available in: 31 minutes Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the 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. Comment |
|
@coderabbitai review |
✅ Action performedReview finished.
|
|
@opencode-agent Please independently review exact current head |
Pull request was closed
0be5f5d to
8e2d36f
Compare
|
자동 정리: base 대비 실제 변경(diff)이 0건이라 이 PR을 닫습니다. 변경을 추가한 뒤 reopen하세요. |
|
@opencode-agent Please independently review exact current head |
|
@coderabbitai review |
|
|
@coderabbitai review |
|
Pull request was converted to draft
|
@opencode-agent Please independently review exact current head |
|
@cwl-noema-review Please independently review exact current head |
|
@coderabbitai review @cwl-noema-review Please independently review exact current head |
|
|
Pull request was converted to draft
|
@coderabbitai review @opencode-agent @cwl-noema-review Please independently review exact current head |
|
|
|
@coderabbitai review @opencode-agent @cwl-noema-review Please independently review exact current head |
|
Tip For best results, initiate chat on the files or code changes. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
set -euo pipefail
expected_head="7ffbef706265586a1a7c2456ed9725e62ef1ddc7"
repo="ContextualWisdomLab/clearfolio"
echo "== Local head and expected commit =="
git rev-parse HEAD
git show -s --format='commit=%H%nparents=%P%nsubject=%s' HEAD
test "$(git rev-parse HEAD)" = "$expected_head"
echo
echo "== PR metadata =="
gh pr view 257 --repo "$repo" --json number,state,isDraft,headRefName,headRefOid,baseRefName,baseRefOid,mergeStateStatus,statusCheckRollup
echo
echo "== Diff summary against merge base =="
base="$(git merge-base HEAD "origin/main")"
printf 'merge_base=%s\n' "$base"
git diff --stat "$base" HEAD
git diff --name-status "$base" HEAD
git diff --check "$base" HEAD
git diff --unified=20 "$base" HEAD -- AGENTS.md
echo
echo "== AGENTS.md target and obsolete-reference scan =="
rg -n -C 2 'waf-ids-ai-soc|feelanet-adfs|wardnet|keyverse' AGENTS.md || true
echo
echo "== Replacement repository metadata =="
for sibling in wardnet keyverse; do
gh repo view "ContextualWisdomLab/$sibling" --json nameWithOwner,isPrivate,isArchived,url,updatedAt
done
echo
echo "== Exact-head check runs =="
gh api "repos/$repo/commits/$expected_head/check-runs?per_page=100" \
--jq '.check_runs[] | [.name,.status,.conclusion,.details_url] | `@tsv`'
echo
echo "== Repository branch protection / rulesets =="
gh api "repos/$repo/branches/main/protection" 2>/dev/null \
|| echo "Classic branch-protection endpoint unavailable; inspect repository rulesets."
gh api "repos/$repo/rulesets?includes_parents=true" \
--jq '.[] | {name,enforcement,target,rules}' 2>/dev/null \
|| trueLength of output: 19490 🏁 Script executed: #!/bin/bash
set -euo pipefail
repo="ContextualWisdomLab/clearfolio"
pr="257"
head="7ffbef706265586a1a7c2456ed9725e62ef1ddc7"
echo "== PR mergeability and review status =="
gh pr view "$pr" --repo "$repo" \
--json headRefOid,baseRefOid,mergeable,mergeStateStatus,reviewDecision,latestReviews,autoMergeRequest,mergeQueueEntry
echo
echo "== Active repository rulesets with full rule details =="
gh api "repos/$repo/rulesets?includes_parents=true" \
--jq '.[] | {id,name,target,enforcement,conditions,rules,bypass_actors}'
echo
echo "== Rules that apply to the PR head branch =="
head_branch="$(gh pr view "$pr" --repo "$repo" --json headRefName --jq '.headRefName')"
gh api "repos/$repo/rules/branches/$head_branch/rules?ref=$head" \
--jq '.[] | {type,parameters,ruleset_source,ruleset_source_type}' \
|| true
echo
echo "== Required-status contexts reported for the exact head =="
gh api "repos/$repo/commits/$head/status" \
--jq '{state,sha,contexts:[.statuses[] | {context,state,target_url}]}' \
|| true
echo
echo "== Merge queue entry, if present =="
gh api "repos/$repo/pulls/$pr/merge-queue-entry" 2>/dev/null || trueLength of output: 2162 🏁 Script executed: #!/bin/bash
set -euo pipefail
repo="ContextualWisdomLab/clearfolio"
owner="${repo%%/*}"
name="${repo#*/}"
pr="257"
head="7ffbef706265586a1a7c2456ed9725e62ef1ddc7"
echo "== PR mergeability and review status =="
gh pr view "$pr" --repo "$repo" \
--json headRefOid,baseRefOid,mergeable,mergeStateStatus,reviewDecision,latestReviews,autoMergeRequest
echo
echo "== Active repository rulesets =="
rulesets="$(gh api "repos/$repo/rulesets?includes_parents=true")"
printf '%s\n' "$rulesets" \
| jq '.[] | {id,name,target,enforcement,source_type,source,conditions}'
echo
echo "== Full details for active rulesets =="
printf '%s\n' "$rulesets" \
| jq -r '.[] | select(.enforcement == "active") | .id' \
| while IFS= read -r ruleset_id; do
echo "-- ruleset $ruleset_id --"
gh api "repos/$repo/rulesets/$ruleset_id" \
--jq '{id,name,target,enforcement,conditions,rules,bypass_actors}'
done
echo
echo "== Rules that apply to main at the PR head =="
gh api "repos/$repo/rules/branches/main/rules?ref=$head" \
--jq '.[] | {type,parameters,ruleset_source,ruleset_source_type}' \
|| true
echo
echo "== Combined commit status for exact head =="
gh api "repos/$repo/commits/$head/status" \
--jq '{state,sha,contexts:[.statuses[] | {context,state,target_url}]}' \
|| true
echo
echo "== Pull-request GraphQL merge-queue data =="
gh api graphql \
-F owner="$owner" -F name="$name" -F number="$pr" \
-f query='
query($owner: String!, $name: String!, $number: Int!) {
repository(owner: $owner, name: $name) {
pullRequest(number: $number) {
mergeable
mergeStateStatus
reviewDecision
isInMergeQueue
autoMergeRequest { enabledAt }
}
}
}' || trueLength of output: 4991
I found no issue in the source changes. Verified items:
I cannot approve this PR as merge-ready at this time. GitHub reports You are interacting with an AI system. |
|
@opencode-agent @cwl-noema-review Please independently review exact current head |
Pull request was converted to draft
|
@opencode-agent @cwl-noema-review Please independently review exact current head |
|
@opencode-agent @cwl-noema-review Please independently review exact current head |
Pull request was converted to draft
|
@opencode-agent @cwl-noema-review @coderabbitai review Independently review exact current head |
|
Tip For best results, initiate chat on the files or code changes. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
set -euo pipefail
repo="ContextualWisdomLab/clearfolio"
pr="257"
expected_head="7ffbef706265586a1a7c2456ed9725e62ef1ddc7"
echo "== Checked-out commit =="
git rev-parse HEAD
git show -s --format='commit=%H%nparents=%P%nsubject=%s' HEAD
test "$(git rev-parse HEAD)" = "$expected_head"
echo
echo "== Pull request state =="
gh pr view "$pr" --repo "$repo" \
--json state,isDraft,headRefOid,baseRefName,baseRefOid,mergeable,mergeStateStatus,reviewDecision,autoMergeRequest,statusCheckRollup
echo
echo "== Diff from PR base =="
base_oid="$(gh pr view "$pr" --repo "$repo" --json baseRefOid --jq '.baseRefOid')"
printf 'base=%s\nhead=%s\n' "$base_oid" "$expected_head"
git diff --stat "$base_oid" "$expected_head"
git diff --name-status "$base_oid" "$expected_head"
git diff --check "$base_oid" "$expected_head"
git diff --unified=12 "$base_oid" "$expected_head" -- AGENTS.md
echo
echo "== AGENTS.md references =="
rg -n -C 2 'waf-ids-ai-soc|feelanet-adfs|wardnet|keyverse' AGENTS.md || true
echo
echo "== Destination repository metadata =="
for sibling in wardnet keyverse; do
gh repo view "ContextualWisdomLab/$sibling" \
--json nameWithOwner,isArchived,isPrivate,url,updatedAt
done
echo
echo "== Exact-head check runs =="
gh api "repos/$repo/commits/$expected_head/check-runs?per_page=100" \
--jq '.check_runs[] | [.name, .status, .conclusion] | `@tsv`'
echo
echo "== Exact-head combined status =="
gh api "repos/$repo/commits/$expected_head/status" \
--jq '{state, statuses: [.statuses[] | {context, state}]}'
echo
echo "== Reviews and unresolved review threads =="
gh pr view "$pr" --repo "$repo" --json latestReviews
gh api graphql -F owner="ContextualWisdomLab" -F name="clearfolio" -F number="$pr" -f query='
query($owner: String!, $name: String!, $number: Int!) {
repository(owner: $owner, name: $name) {
pullRequest(number: $number) {
reviewThreads(first: 100) { nodes { isResolved } }
}
}
}' --jq '[.data.repository.pullRequest.reviewThreads.nodes[] | select(.isResolved == false)] | length'
echo
echo "== Effective rules for main at exact head =="
gh api "repos/$repo/rules/branches/main/rules?ref=$expected_head" \
--jq '.[] | {type, parameters, ruleset_source, ruleset_source_type}' || trueLength of output: 16935
I found no issue in the documentation change. Verified items:
I did not submit approval. GitHub reports You are interacting with an AI system. |
|
@opencode-agent @cwl-noema-review Independently review exact current head |
|
@opencode-agent @cwl-noema-review Please independently review exact current head |
|
Superseded and fully absorbed by authoritative parent #270. Commit |
|
Superseded by authoritative buyer-readiness parent #270, which carries the current protected-main security, privacy, dependency, evidence and acceptance contracts with fresh exact-head verification. Keep this predecessor closed; do not reuse its checks or approvals. |
Documentation objective
Update
AGENTS.mdto use the current names of two ContextualWisdomLab sibling repositories:waf-ids-ai-soc→wardnetfeelanet-adfs→keyverseNo code, dependency, workflow, release, or policy-gate behavior changes.
Exact-head evidence
Exact current head
7ffbef706265586a1a7c2456ed9725e62ef1ddc7is based directly on protectedmainatf3cc09a9838f0f88c81a2ceae22138fab80a2edb. The diff changes only the two repository names inAGENTS.md. Exact-head CI, Security Scan, SAST Semgrep, and CodeRabbit status completed successfully. There are no unresolved inline review threads.Merge gate
Do not merge until fresh exact-head independent review and an approving reviewer with repository write access are present, and every branch-protection and repository-policy gate remains satisfied.