svamp-cli 0.1.87 → 0.1.89
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/dist/agentCommands-DWSVkBSG.mjs +263 -0
- package/dist/api-BRbsyqJ4.mjs +147 -0
- package/dist/cli.mjs +1535 -0
- package/dist/commands-BYbuedOK.mjs +469 -0
- package/dist/commands-DJoYOM_1.mjs +531 -0
- package/dist/commands-DT4zKcI_.mjs +593 -0
- package/dist/commands-pv7rhgVn.mjs +1899 -0
- package/dist/index.mjs +20 -0
- package/dist/package-DP0KvJ1N.mjs +62 -0
- package/dist/run-71Ox10lO.mjs +8338 -0
- package/dist/run-BU9OQRQs.mjs +1103 -0
- package/dist/staticServer-CWcmMF5V.mjs +477 -0
- package/dist/tunnel-BDKdemh0.mjs +383 -0
- package/package.json +1 -1
package/dist/index.mjs
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export { c as connectToHypha, d as daemonStatus, g as getHyphaServerUrl, r as registerMachineService, a as registerSessionService, s as startDaemon, b as stopDaemon } from './run-71Ox10lO.mjs';
|
|
2
|
+
import 'os';
|
|
3
|
+
import 'fs/promises';
|
|
4
|
+
import 'fs';
|
|
5
|
+
import 'path';
|
|
6
|
+
import 'url';
|
|
7
|
+
import 'child_process';
|
|
8
|
+
import 'crypto';
|
|
9
|
+
import 'node:fs';
|
|
10
|
+
import 'node:crypto';
|
|
11
|
+
import 'node:path';
|
|
12
|
+
import 'node:child_process';
|
|
13
|
+
import '@agentclientprotocol/sdk';
|
|
14
|
+
import 'node:os';
|
|
15
|
+
import '@modelcontextprotocol/sdk/client/index.js';
|
|
16
|
+
import '@modelcontextprotocol/sdk/client/stdio.js';
|
|
17
|
+
import '@modelcontextprotocol/sdk/types.js';
|
|
18
|
+
import 'zod';
|
|
19
|
+
import 'node:fs/promises';
|
|
20
|
+
import 'node:util';
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
var name = "svamp-cli";
|
|
2
|
+
var version = "0.1.89";
|
|
3
|
+
var description = "Svamp CLI — AI workspace daemon on Hypha Cloud";
|
|
4
|
+
var author = "Amun AI AB";
|
|
5
|
+
var license = "SEE LICENSE IN LICENSE";
|
|
6
|
+
var type = "module";
|
|
7
|
+
var bin = {
|
|
8
|
+
svamp: "./bin/svamp.mjs"
|
|
9
|
+
};
|
|
10
|
+
var files = [
|
|
11
|
+
"dist",
|
|
12
|
+
"bin"
|
|
13
|
+
];
|
|
14
|
+
var main = "./dist/index.mjs";
|
|
15
|
+
var exports$1 = {
|
|
16
|
+
".": "./dist/index.mjs",
|
|
17
|
+
"./cli": "./dist/cli.mjs"
|
|
18
|
+
};
|
|
19
|
+
var scripts = {
|
|
20
|
+
build: "rm -rf dist && tsc --noEmit && pkgroll",
|
|
21
|
+
typecheck: "tsc --noEmit",
|
|
22
|
+
test: "npx tsx test/test-authorize.mjs && npx tsx test/test-session-helpers.mjs && npx tsx test/test-cli-routing.mjs && npx tsx test/test-security-context.mjs && npx tsx test/test-ralph-loop.mjs && npx tsx test/test-message-helpers.mjs && npx tsx test/test-agent-config.mjs && npx tsx test/test-wrap-command.mjs && npx tsx test/test-credential-staging.mjs && npx tsx test/test-output-formatters.mjs && npx tsx test/test-agent-types.mjs && npx tsx test/test-transport.mjs && npx tsx test/test-session-update-handlers.mjs && npx tsx test/test-session-scanner.mjs && npx tsx test/test-hypha-client.mjs && npx tsx test/test-hook-settings.mjs && npx tsx test/test-session-service-logic.mjs && npx tsx test/test-daemon-persistence.mjs && npx tsx test/test-detect-isolation.mjs && npx tsx test/test-machine-service-logic.mjs && npx tsx test/test-interactive-helpers.mjs && npx tsx test/test-codex-backend.mjs && npx tsx test/test-acp-backend.mjs && npx tsx test/test-acp-bridge.mjs && npx tsx test/test-hook-server.mjs && npx tsx test/test-session-commands.mjs && npx tsx test/test-interactive-console.mjs && npx tsx test/test-session-messages.mjs && npx tsx test/test-skills.mjs && npx tsx test/test-agent-grouping.mjs && npx tsx test/test-ralph-loop-integration.mjs && npx tsx test/test-ralph-loop-modes.mjs && npx tsx test/test-machine-list-directory.mjs && npx tsx test/test-service-commands.mjs && npx tsx test/test-supervisor.mjs && npx tsx test/test-clear-detection.mjs && npx tsx test/test-session-consolidation.mjs && npx tsx test/test-inbox.mjs && npx tsx test/test-session-rpc-dispatch.mjs",
|
|
23
|
+
"test:hypha": "node --no-warnings test/test-hypha-service.mjs",
|
|
24
|
+
dev: "tsx src/cli.ts",
|
|
25
|
+
"dev:daemon": "tsx src/cli.ts daemon start-sync",
|
|
26
|
+
"test:e2e": "node --no-warnings test/e2e-session-tests.mjs"
|
|
27
|
+
};
|
|
28
|
+
var dependencies = {
|
|
29
|
+
"@agentclientprotocol/sdk": "^0.14.1",
|
|
30
|
+
"@modelcontextprotocol/sdk": "^1.25.3",
|
|
31
|
+
"hypha-rpc": "0.21.36",
|
|
32
|
+
"node-pty": "1.2.0-beta.11",
|
|
33
|
+
ws: "^8.18.0",
|
|
34
|
+
yaml: "^2.8.2",
|
|
35
|
+
zod: "^3.24.4"
|
|
36
|
+
};
|
|
37
|
+
var devDependencies = {
|
|
38
|
+
"@types/node": ">=20",
|
|
39
|
+
"@types/ws": "^8.5.14",
|
|
40
|
+
pkgroll: "^2.14.2",
|
|
41
|
+
tsx: "^4.20.6",
|
|
42
|
+
typescript: "5.9.3"
|
|
43
|
+
};
|
|
44
|
+
var packageManager = "yarn@1.22.22";
|
|
45
|
+
var _package = {
|
|
46
|
+
name: name,
|
|
47
|
+
version: version,
|
|
48
|
+
description: description,
|
|
49
|
+
author: author,
|
|
50
|
+
license: license,
|
|
51
|
+
type: type,
|
|
52
|
+
bin: bin,
|
|
53
|
+
files: files,
|
|
54
|
+
main: main,
|
|
55
|
+
exports: exports$1,
|
|
56
|
+
scripts: scripts,
|
|
57
|
+
dependencies: dependencies,
|
|
58
|
+
devDependencies: devDependencies,
|
|
59
|
+
packageManager: packageManager
|
|
60
|
+
};
|
|
61
|
+
|
|
62
|
+
export { author, bin, _package as default, dependencies, description, devDependencies, exports$1 as exports, files, license, main, name, packageManager, scripts, type, version };
|