rigorrun 0.1.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.
- package/LICENSE +21 -0
- package/README.md +87 -0
- package/bin/rigorrun.mjs +47 -0
- package/dist/rigorrun.mjs +16217 -0
- package/package.json +46 -0
- package/ui/assets/DemoPage-B1s79hcz.js +295 -0
- package/ui/assets/Proof-Doh3bIfF.js +1 -0
- package/ui/assets/index-CR8r1ZFu.css +2 -0
- package/ui/assets/index-DAiDcuMt.js +14 -0
- package/ui/index.html +22 -0
package/ui/index.html
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
6
|
+
<meta name="color-scheme" content="dark" />
|
|
7
|
+
<title>RigorRun — Acceptance testing for tool-using AI agents</title>
|
|
8
|
+
<meta
|
|
9
|
+
name="description"
|
|
10
|
+
content="Connect your system, show RigorRun how one job is done, connect your agent. RigorRun proves whether the agent can do the job safely by reading the system it changed."
|
|
11
|
+
/>
|
|
12
|
+
<link
|
|
13
|
+
rel="icon"
|
|
14
|
+
href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><rect width='32' height='32' rx='7' fill='%230b0d10' stroke='%23e7eaee' stroke-width='2'/><text x='16' y='21' font-family='ui-monospace,monospace' font-size='13' font-weight='700' fill='%23e7eaee' text-anchor='middle'>RR</text></svg>"
|
|
15
|
+
/>
|
|
16
|
+
<script type="module" crossorigin src="/assets/index-DAiDcuMt.js"></script>
|
|
17
|
+
<link rel="stylesheet" crossorigin href="/assets/index-CR8r1ZFu.css">
|
|
18
|
+
</head>
|
|
19
|
+
<body>
|
|
20
|
+
<div id="root"></div>
|
|
21
|
+
</body>
|
|
22
|
+
</html>
|