Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
This repository was archived by the owner on Aug 16, 2025. It is now read-only.

Custom reporting optional data#264

Merged
alexcoderabbitai merged 4 commits intomainfromcustom-reporting-optional-data
Apr 2, 2025
Merged
Changes fromall commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 30 additions & 9 deletionsdocs/guides/custom-reports.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -252,17 +252,38 @@ Within each group, sort by:
- Impact level
```

###Time-Based Analysis
###Optional Data Sources

Add temporal analysis toyour reports:
You can also include optional data sources inyourcustomreports. By default, CodeRabbit will not include the following data sources. In a custom report you will see the option to include these data sources by clicking the `Select Optional Data Sources` button. This adds special XML tags to your prompt that allow you to include this data in your report.

```text
Provide:
- Week-over-week comparison
- Trend analysis for the past month
- Velocity metrics
- Time to merge statistics
```
#### Bot Comments

Bot comments are comments made by bots and Coderabbit AI on a PR. To enable bot comments you must include the tag `<include_bot_comments>` in your prompt.

These are very similar in structure to regular user comments but with a few key differences:

- `<bot_comments>`: array of comment objects - Contains all the comments made on the PR.
- `<bot_comment>`: object - Each individual comment is wrapped in this tag and is an object with the following properties:
- `<bot_name>`: string - The username of the comment author.
- `<bot_comment_created_at>`: datetime - The date and time the comment was created.
- `<bot_comment_updated_at>`: datetime - The date and time the comment was last updated.
- `<bot_comment_body>`: markdown - The content of the comment.

#### Issues and Tickets

Issues and tickets brings in conversations, descriptions, and comments from Jira and Linear as part of your report if the ticket is linked in your PR description. To enable issues and tickets you must include the tag `<include_issues_and_tickets>` in your prompt.

- `<issues_and_tickets>`: array of issue objects - Contains all the linked issues and tickets.
- `<issue>`: object - Each individual issue is wrapped in this tag and is an object with the following properties:
- `<issue_title>`: string - The title or thread ID of the issue.
- `<issue_url>`: string - The URL to the issue.
- `<issue_id>`: string - The unique identifier of the issue.
- `<issue_author>`: string - The username of who created the issue.
- `<issue_created_at>`: datetime - The date and time the issue was created.
- `<issue_updated_at>`: datetime - The date and time the issue was last updated.
- `<issue_body>`: markdown - The content/description of the issue. This contains the following sections:
- `<issue_description>`: markdown - The description of the issue.
- `<issue_comments>`: array of comment objects - Contains all the comments made on the issue.

## Best Practices

Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp