ira-review 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.github.md +7 -7
- package/README.md +1 -1
- package/README.npm.md +1 -1
- package/dist/cli.js +1 -1
- package/package.json +1 -1
package/README.github.md
CHANGED
|
@@ -9,14 +9,12 @@ IRA (Intelligent Review Assistant) reviews your pull requests using AI. It posts
|
|
|
9
9
|
|
|
10
10
|
> 🆕 **Now available as a [VS Code Extension](#vs-code-extension)** - get AI code reviews right inside your editor using GitHub Copilot.
|
|
11
11
|
|
|
12
|
-
## What's New in v1.0.
|
|
12
|
+
## What's New in v1.0.1
|
|
13
13
|
|
|
14
|
-
-
|
|
15
|
-
- **
|
|
16
|
-
- **
|
|
17
|
-
- **
|
|
18
|
-
- **Bug fix** — Security issues are now correctly detected and classified (stale prefix was preventing detection)
|
|
19
|
-
- **License** — switched to proprietary license
|
|
14
|
+
- **Generate Tests** — generate test cases from JIRA acceptance criteria in the VS Code extension (Cmd+Shift+P → IRA: Generate Tests)
|
|
15
|
+
- **Review Current File** — review the currently open file without needing a PR (Cmd+Shift+P → IRA: Review Current File)
|
|
16
|
+
- **CLI version fix** — CLI now correctly reports 1.0.1 (was showing 0.7.0)
|
|
17
|
+
- **Feature table** — updated to reflect all available features
|
|
20
18
|
|
|
21
19
|
## What can IRA do?
|
|
22
20
|
|
|
@@ -410,6 +408,8 @@ code --install-extension ira-review.ira-review-vscode
|
|
|
410
408
|
### Features
|
|
411
409
|
|
|
412
410
|
- **Zero config** - uses your existing GitHub Copilot subscription (or bring OpenAI, Anthropic, Ollama)
|
|
411
|
+
- **Review Current File** - review the currently open file without a PR
|
|
412
|
+
- **Generate Tests** - generate test cases from JIRA acceptance criteria
|
|
413
413
|
- **Diagnostics** - issues show up as squiggly lines with severity levels
|
|
414
414
|
- **CodeLens** - inline annotations on affected lines
|
|
415
415
|
- **TreeView** - sidebar panel with all issues grouped by file
|
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@ IRA reviews your pull requests using AI and posts inline comments with explanati
|
|
|
4
4
|
|
|
5
5
|
**Works with any language.** Supports GitHub, GitHub Enterprise, Bitbucket Cloud, and Bitbucket Server/Data Center.
|
|
6
6
|
|
|
7
|
-
> 🆕 **Also available as a [VS Code Extension](https://marketplace.visualstudio.com/items?itemName=ira-review.ira-review-vscode)** — AI reviews right inside your editor.
|
|
7
|
+
> 🆕 **Also available as a [VS Code Extension](https://marketplace.visualstudio.com/items?itemName=ira-review.ira-review-vscode)** — AI reviews right inside your editor. Now with **Review Current File** (no PR needed) and **Test Generation** from JIRA acceptance criteria.
|
|
8
8
|
|
|
9
9
|
## Quick Start
|
|
10
10
|
|
package/README.npm.md
CHANGED
|
@@ -4,7 +4,7 @@ IRA reviews your pull requests using AI and posts inline comments with explanati
|
|
|
4
4
|
|
|
5
5
|
**Works with any language.** Supports GitHub, GitHub Enterprise, Bitbucket Cloud, and Bitbucket Server/Data Center.
|
|
6
6
|
|
|
7
|
-
> 🆕 **Also available as a [VS Code Extension](https://marketplace.visualstudio.com/items?itemName=ira-review.ira-review-vscode)** — AI reviews right inside your editor.
|
|
7
|
+
> 🆕 **Also available as a [VS Code Extension](https://marketplace.visualstudio.com/items?itemName=ira-review.ira-review-vscode)** — AI reviews right inside your editor. Now with **Review Current File** (no PR needed) and **Test Generation** from JIRA acceptance criteria.
|
|
8
8
|
|
|
9
9
|
## Quick Start
|
|
10
10
|
|
package/dist/cli.js
CHANGED
|
@@ -2077,7 +2077,7 @@ var LICENSE_BANNER = `
|
|
|
2077
2077
|
\u{1F4D6} https://github.com/patilmayur5572/ira-review
|
|
2078
2078
|
`;
|
|
2079
2079
|
var program = new Command();
|
|
2080
|
-
program.name("ira-review").description("AI-powered PR review tool with SonarQube + GitHub/Bitbucket integration").version("0.
|
|
2080
|
+
program.name("ira-review").description("AI-powered PR review tool with SonarQube + GitHub/Bitbucket integration").version("1.0.1").hook("preAction", () => {
|
|
2081
2081
|
console.log(LICENSE_BANNER);
|
|
2082
2082
|
});
|
|
2083
2083
|
program.command("review").description("Run AI-powered review on a pull request").option("--sonar-url <url>", "SonarQube/SonarCloud base URL (or IRA_SONAR_URL)").option("--sonar-token <token>", "SonarQube API token (or IRA_SONAR_TOKEN)").option("--project-key <key>", "Sonar project key (or IRA_PROJECT_KEY)").option("--pr <id>", "Pull request ID (or IRA_PR)").option("--scm-provider <provider>", "SCM provider: bitbucket or github (or IRA_SCM_PROVIDER)").option("--bitbucket-token <token>", "Bitbucket API token (or IRA_BITBUCKET_TOKEN)").option("--repo <repo>", "Bitbucket workspace/repo-slug (or IRA_REPO)").option("--bitbucket-url <url>", "Bitbucket base URL (or IRA_BITBUCKET_URL)").option("--github-token <token>", "GitHub API token (or IRA_GITHUB_TOKEN)").option("--github-repo <repo>", "GitHub owner/repo (or IRA_GITHUB_REPO)").option("--github-url <url>", "GitHub Enterprise URL (or IRA_GITHUB_URL)").option("--ai-provider <provider>", "AI provider").option("--ai-model <model>", "AI model to use").option("--dry-run", "Print comments to stdout instead of posting to SCM").option("--min-severity <level>", "Minimum severity to review (BLOCKER|CRITICAL|MAJOR|MINOR|INFO)").option("--jira-url <url>", "JIRA base URL (or IRA_JIRA_URL)").option("--jira-email <email>", "JIRA email (or IRA_JIRA_EMAIL)").option("--jira-token <token>", "JIRA API token (or IRA_JIRA_TOKEN)").option("--jira-ticket <key>", "JIRA ticket key (e.g. PROJ-123)").option("--jira-ac-field <field>", "Custom field ID for acceptance criteria").option("--slack-webhook <url>", "Slack webhook URL for notifications").option("--teams-webhook <url>", "Teams webhook URL for notifications").option("--notify-min-risk <level>", "Only notify when risk is at or above this level: low, medium, high, critical").option("--notify-on-ac-fail", "Send notification when JIRA acceptance criteria validation fails").option("--ai-base-url <url>", "AI provider base URL (Azure endpoint, Ollama URL)").option("--ai-api-key <key>", "AI API key (or IRA_AI_API_KEY / OPENAI_API_KEY)").option("--ai-api-version <version>", "Azure OpenAI API version").option("--ai-deployment <name>", "Azure OpenAI deployment name").option("--ai-model-critical <model>", "Stronger AI model for BLOCKER/CRITICAL issues").option("--generate-tests", "Generate test cases from JIRA acceptance criteria").option("--test-framework <framework>", "Test framework: jest, vitest, mocha, playwright, cypress, gherkin, pytest, junit (default: jest)").option("--config <path>", "Path to config file (default: auto-detect .irarc.json / ira.config.json)").option("--no-config-file", "Disable auto-loading config file from repo").action(async (opts) => {
|