agentcert 0.1.0 → 0.1.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.md +9 -0
- package/dist/cli.js +6 -0
- package/package.json +23 -2
package/README.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
Unified evidence, corpus, monitor, and lab CLI for AgentCert.
|
|
4
4
|
|
|
5
|
+
AgentCert is regression CI for browser agents. It runs Tripwire robustness
|
|
6
|
+
checks, converts the result into evidence bundles, writes HTML reports and
|
|
7
|
+
badges, and accumulates a local failure corpus.
|
|
8
|
+
|
|
5
9
|
## 5-minute local path
|
|
6
10
|
|
|
7
11
|
```bash
|
|
@@ -40,6 +44,11 @@ npx agentcert schema validate --schema classifier-eval --file examples/agentcert
|
|
|
40
44
|
CI users can run Tripwire and AgentCert together with
|
|
41
45
|
`Kakarottoooo/agentcert/actions/tripwire@v0`.
|
|
42
46
|
|
|
47
|
+
The public Real Agent Robustness Lab compares browser-use, Stagehand, and
|
|
48
|
+
Playwright-based agents over the same fault suite:
|
|
49
|
+
|
|
50
|
+
https://kakarottoooo.github.io/agentcert/public-demo/real-agent-robustness/
|
|
51
|
+
|
|
43
52
|
Corpus storage:
|
|
44
53
|
|
|
45
54
|
```bash
|
package/dist/cli.js
CHANGED
|
@@ -535,6 +535,11 @@ on:
|
|
|
535
535
|
jobs:
|
|
536
536
|
tripwire:
|
|
537
537
|
runs-on: ubuntu-latest
|
|
538
|
+
# Uncomment to publish a hosted evidence page + clickable README badge
|
|
539
|
+
# to the gh-pages branch (also uncomment publish-pages below, then enable
|
|
540
|
+
# GitHub Pages for the gh-pages branch in the repo settings):
|
|
541
|
+
# permissions:
|
|
542
|
+
# contents: write
|
|
538
543
|
steps:
|
|
539
544
|
- uses: actions/checkout@v4
|
|
540
545
|
- uses: actions/setup-node@v4
|
|
@@ -549,5 +554,6 @@ jobs:
|
|
|
549
554
|
subject: ${JSON.stringify(subject)}
|
|
550
555
|
agentcert-out: .agentcert/latest
|
|
551
556
|
fail-on-verdict: "true"
|
|
557
|
+
# publish-pages: "true"
|
|
552
558
|
`;
|
|
553
559
|
}
|
package/package.json
CHANGED
|
@@ -1,8 +1,29 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentcert",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "Regression CI, evidence reports, and failure corpus tooling for browser agents.",
|
|
5
5
|
"type": "module",
|
|
6
|
+
"license": "Apache-2.0",
|
|
7
|
+
"homepage": "https://github.com/Kakarottoooo/agentcert#readme",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/Kakarottoooo/agentcert.git",
|
|
11
|
+
"directory": "packages/agentcert-cli"
|
|
12
|
+
},
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/Kakarottoooo/agentcert/issues"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"agent",
|
|
18
|
+
"browser-agent",
|
|
19
|
+
"ci",
|
|
20
|
+
"playwright",
|
|
21
|
+
"agent-security",
|
|
22
|
+
"llm",
|
|
23
|
+
"mcp",
|
|
24
|
+
"tripwire",
|
|
25
|
+
"evidence"
|
|
26
|
+
],
|
|
6
27
|
"bin": {
|
|
7
28
|
"agentcert": "dist/cli.js"
|
|
8
29
|
},
|