@agent-wall/cli 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/.turbo/turbo-build.log +18 -0
- package/.turbo/turbo-test.log +19 -0
- package/LICENSE +21 -0
- package/README.md +79 -0
- package/dist/dashboard/assets/index-BOAuOkd7.css +1 -0
- package/dist/dashboard/assets/index-_Zwjwdf_.js +50 -0
- package/dist/dashboard/assets/index-_Zwjwdf_.js.map +1 -0
- package/dist/dashboard/favicon.svg +5 -0
- package/dist/dashboard/index.html +14 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1074 -0
- package/dist/index.js.map +1 -0
- package/package.json +57 -0
- package/src/commands/audit.test.ts +175 -0
- package/src/commands/audit.ts +158 -0
- package/src/commands/doctor.test.ts +108 -0
- package/src/commands/doctor.ts +146 -0
- package/src/commands/init.test.ts +85 -0
- package/src/commands/init.ts +52 -0
- package/src/commands/scan.test.ts +279 -0
- package/src/commands/scan.ts +338 -0
- package/src/commands/test.test.ts +152 -0
- package/src/commands/test.ts +108 -0
- package/src/commands/validate.test.ts +104 -0
- package/src/commands/validate.ts +181 -0
- package/src/commands/wrap.ts +420 -0
- package/src/index.ts +151 -0
- package/tsconfig.json +8 -0
- package/tsup.config.ts +12 -0
- package/vitest.config.ts +8 -0
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
|
|
2
|
+
<path d="M32 4L8 16v16c0 14.4 10.2 27.8 24 32 13.8-4.2 24-17.6 24-32V16L32 4z" fill="#1a73e8" stroke="#0d47a1" stroke-width="2"/>
|
|
3
|
+
<path d="M32 12l-18 9v12c0 11 7.8 21.2 18 24.4C42.2 54.2 50 44 50 33V21L32 12z" fill="#0d1117"/>
|
|
4
|
+
<path d="M28 30l-4 4 8 8 12-12-4-4-8 8-4-4z" fill="#4caf50"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
|
+
<title>Agent Wall Dashboard</title>
|
|
8
|
+
<script type="module" crossorigin src="/assets/index-_Zwjwdf_.js"></script>
|
|
9
|
+
<link rel="stylesheet" crossorigin href="/assets/index-BOAuOkd7.css">
|
|
10
|
+
</head>
|
|
11
|
+
<body>
|
|
12
|
+
<div id="root"></div>
|
|
13
|
+
</body>
|
|
14
|
+
</html>
|
package/dist/index.d.ts
ADDED