@braid-cloud/cli 0.1.13 → 0.1.15
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 +293 -313
- package/dist/index.js +5190 -1550
- package/dist/index.js.map +1 -1
- package/dist/manage-ui/assets/index-BX8fP_pz.css +2 -0
- package/dist/manage-ui/assets/index-BrO1UpTp.js +53 -0
- package/dist/manage-ui/index.html +37 -0
- package/package.json +20 -8
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html class="h-full" lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
+
<title>braid manage</title>
|
|
7
|
+
<link rel="preconnect" href="https://api.fontshare.com" crossorigin>
|
|
8
|
+
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
9
|
+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
10
|
+
<link
|
|
11
|
+
href="https://api.fontshare.com/v2/css?f[]=satoshi@400,500,600&display=swap"
|
|
12
|
+
rel="stylesheet"
|
|
13
|
+
>
|
|
14
|
+
<link
|
|
15
|
+
href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&display=swap"
|
|
16
|
+
rel="stylesheet"
|
|
17
|
+
>
|
|
18
|
+
<script>
|
|
19
|
+
"use strict";
|
|
20
|
+
(() => {
|
|
21
|
+
const theme = localStorage.getItem("braid_manage_theme") || "system";
|
|
22
|
+
let resolved = theme;
|
|
23
|
+
if (theme === "system") {
|
|
24
|
+
resolved = window.matchMedia("(prefers-color-scheme: dark)").matches
|
|
25
|
+
? "dark"
|
|
26
|
+
: "light";
|
|
27
|
+
}
|
|
28
|
+
document.documentElement.setAttribute("data-theme", resolved);
|
|
29
|
+
})();
|
|
30
|
+
</script>
|
|
31
|
+
<script type="module" crossorigin src="/assets/index-BrO1UpTp.js"></script>
|
|
32
|
+
<link rel="stylesheet" crossorigin href="/assets/index-BX8fP_pz.css">
|
|
33
|
+
</head>
|
|
34
|
+
<body class="h-full antialiased">
|
|
35
|
+
<div id="root" class="h-full"></div>
|
|
36
|
+
</body>
|
|
37
|
+
</html>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@braid-cloud/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.15",
|
|
4
4
|
"description": "Install braid prompts as agent skills to your local development environment",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -22,27 +22,39 @@
|
|
|
22
22
|
"scripts": {
|
|
23
23
|
"dev": "tsup --watch",
|
|
24
24
|
"dev:run": "tsx src/index.ts",
|
|
25
|
-
"build": "tsup",
|
|
25
|
+
"build": "tsup && vite build --config vite.manage.config.ts",
|
|
26
26
|
"lint": "biome check src",
|
|
27
27
|
"lint:fix": "biome check --write src",
|
|
28
28
|
"typecheck": "if command -v tsgo >/dev/null 2>&1; then tsgo --noEmit || tsc --noEmit --incremental --tsBuildInfoFile .turbo/typecheck.tsbuildinfo; else tsc --noEmit --incremental --tsBuildInfoFile .turbo/typecheck.tsbuildinfo; fi",
|
|
29
|
-
"test": "
|
|
30
|
-
"test:unit": "vitest run --exclude=src/**/*.integration.test.ts",
|
|
29
|
+
"test": "bun run test:unit && bun run test:integration",
|
|
30
|
+
"test:unit": "vitest run --config vitest.config.ts --exclude=src/**/*.integration.test.ts && vitest run --config vitest.manage-ui.config.ts",
|
|
31
31
|
"test:integration": "vitest run integration.test.ts --passWithNoTests",
|
|
32
32
|
"test:e2e": "vitest run e2e.test.ts --passWithNoTests",
|
|
33
33
|
"prepublishOnly": "npm run build"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@
|
|
36
|
+
"@braid/ui": "workspace:*",
|
|
37
|
+
"@clack/prompts": "^1.1.0",
|
|
37
38
|
"commander": "^14.0.3",
|
|
38
|
-
"effect": "^
|
|
39
|
+
"effect": "^4.0.0-beta.9",
|
|
40
|
+
"react": "^19.2.4",
|
|
41
|
+
"react-dom": "^19.2.4"
|
|
39
42
|
},
|
|
40
43
|
"devDependencies": {
|
|
41
44
|
"@braid/config": "workspace:*",
|
|
42
|
-
"@
|
|
45
|
+
"@tailwindcss/vite": "^4.2.2",
|
|
46
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
47
|
+
"@testing-library/react": "^16.3.2",
|
|
48
|
+
"@types/node": "^25.5.0",
|
|
49
|
+
"@types/react": "^19.2.14",
|
|
50
|
+
"@types/react-dom": "^19.2.3",
|
|
51
|
+
"@vitejs/plugin-react": "^6.0.1",
|
|
52
|
+
"babel-plugin-react-compiler": "^1.0.0",
|
|
53
|
+
"tailwindcss": "^4.2.2",
|
|
43
54
|
"tsup": "^8.5.1",
|
|
44
55
|
"tsx": "^4.21.0",
|
|
45
|
-
"typescript": "^
|
|
56
|
+
"typescript": "^6.0.2",
|
|
57
|
+
"vite": "^8.0.3"
|
|
46
58
|
},
|
|
47
59
|
"keywords": [
|
|
48
60
|
"skills",
|