repoarena 1.0.0

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.
Files changed (4) hide show
  1. package/LICENSE +87 -0
  2. package/README.md +22 -0
  3. package/dist/index.cjs +25621 -0
  4. package/package.json +67 -0
package/LICENSE ADDED
@@ -0,0 +1,87 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction, and
10
+ distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by the
13
+ copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all other
16
+ entities that control, are controlled by, or are under common control with
17
+ that entity. For the purposes of this definition, "control" means (i) the
18
+ power, direct or indirect, to cause the direction or management of such
19
+ entity, whether by contract or otherwise, or (ii) ownership of fifty percent
20
+ (50%) or more of the outstanding shares, or (iii) beneficial ownership of such
21
+ entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity exercising
24
+ permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation source, and
28
+ configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical transformation or
31
+ translation of a Source form, including but not limited to compiled object
32
+ code, generated documentation, and conversions to other media types.
33
+
34
+ "Work" shall mean the work of authorship, whether in Source or Object form,
35
+ made available under the License, as indicated by a copyright notice that is
36
+ included in or attached to the work (an example is provided in the Appendix
37
+ below).
38
+
39
+ "Derivative Works" shall mean any work, whether in Source or Object form,
40
+ that is based on (or derived from) the Work and for which the editorial
41
+ revisions, annotations, elaborations, or other modifications represent, as a
42
+ whole, an original work of authorship. For the purposes of this License,
43
+ Derivative Works shall not include works that remain separable from, or merely
44
+ link (or bind by name) to the interfaces of, the Work and Derivative Works
45
+ thereof.
46
+
47
+ 2. Grant of Copyright License. Subject to the terms and conditions of this
48
+ License, each Contributor hereby grants to You a perpetual, worldwide,
49
+ non-exclusive, no-charge, royalty-free, irrevocable copyright license to
50
+ reproduce, prepare Derivative Works of, publicly display, publicly perform,
51
+ sublicense, and distribute the Work and such Derivative Works in Source or
52
+ Object form.
53
+
54
+ 3. Grant of Patent License. Subject to the terms and conditions of this
55
+ License, each Contributor hereby grants to You a perpetual, worldwide,
56
+ non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this
57
+ section) patent license to make, have made, use, offer to sell, sell, import,
58
+ and otherwise transfer the Work.
59
+
60
+ 4. Redistribution. You may reproduce and distribute copies of the Work or
61
+ Derivative Works thereof in any medium, with or without modifications, and in
62
+ Source or Object form, provided that You give any other recipients of the Work
63
+ or Derivative Works a copy of this License; cause any modified files to carry
64
+ prominent notices; retain all copyright, patent, trademark, and attribution
65
+ notices; and include a readable copy of the attribution notices contained
66
+ within such NOTICE file.
67
+
68
+ 5. Submission of Contributions. Unless You explicitly state otherwise, any
69
+ Contribution intentionally submitted for inclusion in the Work by You to the
70
+ Licensor shall be under the terms and conditions of this License.
71
+
72
+ 6. Trademarks. This License does not grant permission to use the trade names,
73
+ trademarks, service marks, or product names of the Licensor, except as required
74
+ for reasonable and customary use in describing the origin of the Work.
75
+
76
+ 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in
77
+ writing, Licensor provides the Work on an "AS IS" BASIS, WITHOUT WARRANTIES OR
78
+ CONDITIONS OF ANY KIND, either express or implied.
79
+
80
+ 8. Limitation of Liability. In no event and under no legal theory, whether in
81
+ tort (including negligence), contract, or otherwise, unless required by
82
+ applicable law, shall any Contributor be liable for damages arising as a result
83
+ of this License or out of the use or inability to use the Work.
84
+
85
+ 9. Accepting Warranty or Additional Liability. While redistributing the Work
86
+ or Derivative Works thereof, You may choose to offer support, warranty,
87
+ indemnity, or other liability obligations, but only on Your own behalf.
package/README.md ADDED
@@ -0,0 +1,22 @@
1
+ # RepoArena CLI
2
+
3
+ RepoArena is CI for AI coding agents. It benchmarks Codex, Claude Code, Gemini
4
+ CLI, and OpenCode against real bugs from your repository. Install with Node.js
5
+ 24:
6
+
7
+ ```sh
8
+ npm install --global repoarena
9
+ repoarena --version
10
+ cd your-repository
11
+ repoarena init --yes
12
+ repoarena doctor
13
+ repoarena agents detect
14
+ repoarena tasks discover
15
+ ```
16
+
17
+ Local use needs no RepoArena account. RepoArena uses each agent CLI's existing
18
+ authentication, so model costs remain BYOK and are paid directly to that
19
+ provider. Run `repoarena --help` for task generation, benchmarks, terminal/JSON/
20
+ HTML/JUnit reports, optimization, and the loopback-only local UI.
21
+
22
+ Project documentation: <https://github.com/Shaurya-Rathore/repoarena#readme>