nayan-ai 1.0.0-beta.3 → 1.0.0-beta.4
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.md +3 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# Nayan AI 🤖
|
|
2
2
|
|
|
3
|
-
A CLI tool that uses [Codex CLI](https://github.com/openai/codex) to review GitHub Pull Requests for bugs, security vulnerabilities, performance issues, error handling, edge cases, and code quality.
|
|
3
|
+
A CLI tool that uses [Codex CLI](https://github.com/openai/codex) or [Claude Code CLI](https://code.claude.com) to review GitHub Pull Requests for bugs, security vulnerabilities, performance issues, error handling, edge cases, and code quality.
|
|
4
4
|
|
|
5
5
|
## Features
|
|
6
6
|
|
|
7
|
-
- **🤖 Agentic Review**: Uses Codex CLI's intelligent coding
|
|
7
|
+
- **🤖 Agentic Review**: Uses Codex CLI or Claude Code CLI's intelligent coding agents for deep code analysis
|
|
8
8
|
- **🐛 Bug Detection**: Finds logic errors, null pointer issues, race conditions, and edge cases
|
|
9
9
|
- **🔐 Security Analysis**: Detects SQL injection, XSS, hardcoded secrets, and auth issues
|
|
10
10
|
- **⚡ Performance Checks**: Identifies memory leaks, N+1 queries, and unnecessary computations
|
|
@@ -50,6 +50,7 @@ nayan-ai https://github.com/owner/repo/pull/123 --token ghp_xxx
|
|
|
50
50
|
| Option | Description |
|
|
51
51
|
|--------|--------------------------------------------------------|
|
|
52
52
|
| `-t, --token` | GitHub personal access token to access code (required) |
|
|
53
|
+
| `-l, --llm` | LLM provider: `codex` (default) or `claude` |
|
|
53
54
|
| `-d, --dry` | Analyze without posting comments to Github |
|
|
54
55
|
| `-i, --inline` | Post inline comments on files instead of summary |
|
|
55
56
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nayan-ai",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
4
|
-
"description": "AI
|
|
3
|
+
"version": "1.0.0-beta.4",
|
|
4
|
+
"description": "AI powered code reviewer using Codex & Claude Code agents",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"nayan-ai": "dist/cli.js"
|