@tonyclaw/agent-inspector-backend-win32-x64-msvc 3.0.47

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 ADDED
@@ -0,0 +1,5 @@
1
+ # Agent Inspector Rust backend for Windows x64
2
+
3
+ This platform package is loaded only by the matching `@tonyclaw/agent-inspector` CLI. The CLI
4
+ verifies the exact package version, target manifest, SHA-256 digest, and executable identity before
5
+ starting it. The binary is intentionally not exposed as a standalone npm `bin` command.
Binary file
@@ -0,0 +1,23 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "packageName": "@tonyclaw/agent-inspector-backend-win32-x64-msvc",
4
+ "packageVersion": "3.0.47",
5
+ "target": "x86_64-pc-windows-msvc",
6
+ "binary": "bin/agent-inspector-backend.exe",
7
+ "sha256": "4d160e6b3cefd94f0af46d3e4c945ba7ba880e1e217e26d1eec92c01849fbe12",
8
+ "identity": {
9
+ "schemaVersion": 1,
10
+ "name": "agent-inspector-backend",
11
+ "packageVersion": "3.0.47",
12
+ "target": "x86_64-pc-windows-msvc",
13
+ "binary": "bin/agent-inspector-backend.exe",
14
+ "cliProtocol": "agent-inspector-cli-backend-v1",
15
+ "productionReady": true,
16
+ "capabilities": {
17
+ "nodeProtectedIngress": true,
18
+ "basePath": true,
19
+ "namedInstances": true,
20
+ "gracefulShutdown": true
21
+ }
22
+ }
23
+ }
package/package.json ADDED
@@ -0,0 +1,33 @@
1
+ {
2
+ "name": "@tonyclaw/agent-inspector-backend-win32-x64-msvc",
3
+ "version": "3.0.47",
4
+ "description": "Windows x64 Rust backend binary for @tonyclaw/agent-inspector.",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://gitcode.com/TonyClaw/agent-inspector.git"
9
+ },
10
+ "os": [
11
+ "win32"
12
+ ],
13
+ "cpu": [
14
+ "x64"
15
+ ],
16
+ "files": [
17
+ "bin/agent-inspector-backend.exe",
18
+ "binary-manifest.json",
19
+ "README.md"
20
+ ],
21
+ "publishConfig": {
22
+ "access": "public",
23
+ "registry": "https://registry.npmjs.org/"
24
+ },
25
+ "agentInspectorRustBackend": {
26
+ "schemaVersion": 1,
27
+ "target": "x86_64-pc-windows-msvc",
28
+ "binary": "bin/agent-inspector-backend.exe",
29
+ "manifest": "binary-manifest.json",
30
+ "identityFlag": "--agent-inspector-package-identity",
31
+ "cliProtocol": "agent-inspector-cli-backend-v1"
32
+ }
33
+ }