flightbox 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 +78 -0
- package/dist/atf.js +23 -0
- package/dist/browser.js +21 -0
- package/dist/cli.js +102 -0
- package/dist/collector.js +31 -0
- package/dist/commands/install.js +50 -0
- package/dist/commands/list.js +14 -0
- package/dist/commands/show.js +32 -0
- package/dist/commands/stats.js +12 -0
- package/dist/commands/ui.js +35 -0
- package/dist/format.js +10 -0
- package/dist/ingest/hooks.js +80 -0
- package/dist/ingest/ingest.js +84 -0
- package/dist/ingest/transcripts.js +58 -0
- package/dist/paths.js +26 -0
- package/dist/server/server.js +94 -0
- package/dist/server/static.js +35 -0
- package/dist/server/store-api.js +52 -0
- package/dist/store.js +159 -0
- package/dist/version.js +1 -0
- package/dist/web/assets/index-CoqqG1p0.css +1 -0
- package/dist/web/assets/index-DwxTC9or.js +49 -0
- package/dist/web/index.html +20 -0
- package/package.json +64 -0
|
@@ -0,0 +1,20 @@
|
|
|
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.0" />
|
|
6
|
+
<meta name="theme-color" content="#07090b" />
|
|
7
|
+
<title>flightbox — flight data recorder</title>
|
|
8
|
+
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
9
|
+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
10
|
+
<link
|
|
11
|
+
href="https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap"
|
|
12
|
+
rel="stylesheet"
|
|
13
|
+
/>
|
|
14
|
+
<script type="module" crossorigin src="./assets/index-DwxTC9or.js"></script>
|
|
15
|
+
<link rel="stylesheet" crossorigin href="./assets/index-CoqqG1p0.css">
|
|
16
|
+
</head>
|
|
17
|
+
<body>
|
|
18
|
+
<div id="root"></div>
|
|
19
|
+
</body>
|
|
20
|
+
</html>
|
package/package.json
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "flightbox",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Local-first flight recorder for coding agent sessions — records what Claude Code actually did into an auditable timeline",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"author": "Victor LG (https://github.com/VictorLG98)",
|
|
8
|
+
"homepage": "https://github.com/VictorLG98/flightbox#readme",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/VictorLG98/flightbox.git"
|
|
12
|
+
},
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/VictorLG98/flightbox/issues"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"claude-code",
|
|
18
|
+
"coding-agent",
|
|
19
|
+
"ai-agents",
|
|
20
|
+
"observability",
|
|
21
|
+
"session-recorder",
|
|
22
|
+
"flight-recorder",
|
|
23
|
+
"telemetry",
|
|
24
|
+
"local-first",
|
|
25
|
+
"cli",
|
|
26
|
+
"developer-tools"
|
|
27
|
+
],
|
|
28
|
+
"bin": {
|
|
29
|
+
"flightbox": "dist/cli.js"
|
|
30
|
+
},
|
|
31
|
+
"files": [
|
|
32
|
+
"dist"
|
|
33
|
+
],
|
|
34
|
+
"engines": {
|
|
35
|
+
"node": ">=20"
|
|
36
|
+
},
|
|
37
|
+
"scripts": {
|
|
38
|
+
"build": "tsc && vite build web",
|
|
39
|
+
"build:web": "vite build web",
|
|
40
|
+
"typecheck:web": "tsc -p web/tsconfig.json",
|
|
41
|
+
"prepack": "tsc && vite build web",
|
|
42
|
+
"test": "vitest run",
|
|
43
|
+
"dev": "vitest"
|
|
44
|
+
},
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"better-sqlite3": "^12.11.1"
|
|
47
|
+
},
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
50
|
+
"@testing-library/react": "^16.3.2",
|
|
51
|
+
"@testing-library/user-event": "^14.6.1",
|
|
52
|
+
"@types/better-sqlite3": "^7.6.13",
|
|
53
|
+
"@types/node": "^26.1.0",
|
|
54
|
+
"@types/react": "^19.2.17",
|
|
55
|
+
"@types/react-dom": "^19.2.3",
|
|
56
|
+
"@vitejs/plugin-react": "^4.7.0",
|
|
57
|
+
"jsdom": "^25.0.1",
|
|
58
|
+
"react": "^19.2.7",
|
|
59
|
+
"react-dom": "^19.2.7",
|
|
60
|
+
"typescript": "^6.0.3",
|
|
61
|
+
"vite": "^6.4.3",
|
|
62
|
+
"vitest": "^4.1.9"
|
|
63
|
+
}
|
|
64
|
+
}
|