@hasna/machines 0.0.12 → 0.0.14
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 +1 -2
- package/README.md +0 -15
- package/dist/agent/index.js +84 -9579
- package/dist/cli/index.js +258 -10335
- package/dist/db.d.ts +6 -2
- package/dist/db.d.ts.map +1 -1
- package/dist/index.js +1505 -11001
- package/dist/mcp/index.js +225 -9826
- package/dist/mcp/server.d.ts +0 -1
- package/dist/mcp/server.d.ts.map +1 -1
- package/package.json +1 -2
- package/dist/commands/heal-daemon.d.ts +0 -36
- package/dist/commands/heal-daemon.d.ts.map +0 -1
- package/dist/commands/heal.d.ts +0 -122
- package/dist/commands/heal.d.ts.map +0 -1
- package/dist/mcp/http.d.ts +0 -12
- package/dist/mcp/http.d.ts.map +0 -1
package/LICENSE
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
|
|
2
1
|
Apache License
|
|
3
2
|
Version 2.0, January 2004
|
|
4
3
|
http://www.apache.org/licenses/
|
|
@@ -176,7 +175,7 @@
|
|
|
176
175
|
|
|
177
176
|
END OF TERMS AND CONDITIONS
|
|
178
177
|
|
|
179
|
-
Copyright 2026
|
|
178
|
+
Copyright 2026 hasna
|
|
180
179
|
|
|
181
180
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
182
181
|
you may not use this file except in compliance with the License.
|
package/README.md
CHANGED
|
@@ -8,21 +8,6 @@ Machine fleet management for developers — provision, sync, inspect, and operat
|
|
|
8
8
|
- `machines-mcp`: MCP server exposing fleet tools to AI agents
|
|
9
9
|
- `machines-agent`: lightweight local daemon for heartbeats and runtime reporting
|
|
10
10
|
|
|
11
|
-
## HTTP mode
|
|
12
|
-
|
|
13
|
-
Long-lived Streamable HTTP transport for shared agent connections (stdio remains the default):
|
|
14
|
-
|
|
15
|
-
```bash
|
|
16
|
-
machines-mcp --http
|
|
17
|
-
# or: MCP_HTTP=1 machines-mcp
|
|
18
|
-
# default port: 8821 (override with --port or MCP_HTTP_PORT)
|
|
19
|
-
```
|
|
20
|
-
|
|
21
|
-
Endpoints on `127.0.0.1` only:
|
|
22
|
-
|
|
23
|
-
- `GET /health` → `{"status":"ok","name":"machines"}`
|
|
24
|
-
- `POST /mcp` → MCP Streamable HTTP
|
|
25
|
-
|
|
26
11
|
## Manifest
|
|
27
12
|
|
|
28
13
|
`machines.json` is the desired fleet declaration.
|