Audit website claims against current runtime support - #1846
Audit website claims against current runtime support#1846simple-agent-manager[bot] wants to merge 2 commits into
Conversation
Auto-committed by SAM on agent completion.
|
|
@coderabbitai please help me understand: why didn't you automatically review this pr? |
|
Tip For best results, initiate chat on the files or code changes. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
set -euo pipefail
repo="raphaeltm/simple-agent-manager"
pr_number="1846"
echo '=== PR metadata ==='
gh pr view "$pr_number" --repo "$repo" \
--json number,state,isDraft,createdAt,updatedAt,author,baseRefName,headRefName,labels,reviewRequests,statusCheckRollup \
--jq '{number,state,isDraft,createdAt,updatedAt,author:.author.login,baseRefName,headRefName,labels:[.labels[].name],reviewRequests:[.reviewRequests[].login],checks:[.statusCheckRollup[]? | {name:.name,conclusion:.conclusion,status:.status}]}'
echo '=== Recent PR timeline events ==='
gh api "repos/$repo/issues/$pr_number/timeline" \
-H 'Accept: application/vnd.github+json' \
--paginate \
--jq '.[] | select(.event == "labeled" or .event == "unlabeled" or .event == "ready_for_review" or .event == "converted_to_draft" or .event == "review_requested" or .event == "head_ref_force_pushed" or .event == "committed" or .event == "closed" or .event == "reopened") | {event,created_at,actor:(.actor.login // null),label:(.label.name // null),commit_id:(.commit_id // null)}'Length of output: 3679 ⚙️ CodeRabbit configuration inspected Length of output: 5450 🏁 Script executed: #!/bin/bash
set -euo pipefail
repo="raphaeltm/simple-agent-manager"
pr_number="1846"
head_sha=$(gh pr view "$pr_number" --repo "$repo" --json headRefOid --jq '.headRefOid')
echo '=== Pull request state and author ==='
gh api "repos/$repo/pulls/$pr_number" \
--jq '{number,created_at,updated_at,draft,user:{login:.user.login,type:.user.type},author_association}'
echo '=== Pull request reviews ==='
gh api "repos/$repo/pulls/$pr_number/reviews" --paginate \
--jq '.[] | {submitted_at,state,user:(.user.login // null),body}'
echo '=== Pull request issue comments with CodeRabbit mentions ==='
gh api "repos/$repo/issues/$pr_number/comments" --paginate \
--jq '.[] | select((.user.login | ascii_downcase | contains("coderabbit")) or (.body | ascii_downcase | contains("coderabbit"))) | {created_at,user:.user.login,body}'
echo '=== Check runs from CodeRabbit ==='
gh api "repos/$repo/commits/$head_sha/check-runs" \
-H 'Accept: application/vnd.github+json' --paginate \
--jq '.check_runs[] | select((.app.slug // "" | ascii_downcase | contains("coderabbit")) or (.name | ascii_downcase | contains("coderabbit"))) | {name,status,conclusion,started_at,completed_at,app:(.app.slug // null),details_url}'
echo '=== Pull request timeline: state-changing events ==='
gh api "repos/$repo/issues/$pr_number/timeline" \
-H 'Accept: application/vnd.github+json' --paginate \
--jq '.[] | select(.event == "opened" or .event == "ready_for_review" or .event == "converted_to_draft" or .event == "synchronize" or .event == "review_requested" or .event == "committed") | {event,created_at,actor:(.actor.login // null),commit_id:(.commit_id // null),commit_url:(.commit_url // null)}'Length of output: 2563
The relevant difference is the PR author. GitHub reports GitHub shows no CodeRabbit check run, review, or comment on I cannot distinguish, from the available GitHub data alone, between the bot-author safeguard and an internal event-delivery or processing failure. The bot author is the likely cause. You can request a review explicitly with You are interacting with an AI system. |
@coderabbitai is there any way for me to explicitly ask that PRs from that bot get reviewed? I do all my work through that bot. |
|
Tip For best results, initiate chat on the files or code changes. 🧩 Analysis chain⚙️ CodeRabbit configuration inspected Length of output: 5450
That explicitly requests a review. You can have The current configuration has no setting to allow-list bot authors. Therefore, there is no repository YAML change that I can recommend to restore automatic review for every PR from that bot. For a permanent automatic solution, contact CodeRabbit support and request a bot-author exception for: For now, use You are interacting with an AI system. |



Summary
@raphaeltm weekly website claims audit for
apps/www/. I checked the landing page components, docs overview/concepts pages, roadmap page, and the implementation sources that define agents, cloud providers, runtimes, orchestration, deployments, notifications, and collaboration.packages/shared/src/agents.ts,packages/shared/src/agent-install-manifest.json, harness capabilitiesapps/api/src/schemas/credentials.ts,apps/api/src/schemas/workspaces.ts, provider-related API/UI referencesapps/api/src/db/schema.ts,apps/web/src/components/agent-profiles/ProfileFormDialog.tsx, docs concepts runtime sectioncf-containerprofiles and hosted/platform compute paths.apps/api/src/db/schema.ts, deployment services/routes/UI, project membership schema/UI, CLI package, trigger schemasapps/www/src/content/docs/docs/overview.mdx,concepts.mdx,reference/roadmap.mdVerification
pnpm --filter @simple-agent-manager/www buildNotes
.codex/config.tomlmodification was not committed.