-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 8.04 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 8.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@ninglo/remotelab",
"version": "0.3.1",
"description": "AI workbench for super-individuals: orchestrate agents and distribute agentic-native apps",
"type": "module",
"license": "MIT",
"author": "Ninglo",
"homepage": "https://github.com/Ninglo/remotelab#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Ninglo/remotelab.git"
},
"bugs": {
"url": "https://github.com/Ninglo/remotelab/issues"
},
"keywords": [
"claude",
"claude-code",
"copilot",
"codex",
"cline",
"ai",
"coding-assistant",
"multi-tool",
"remote",
"macos"
],
"engines": {
"node": ">=18.0.0"
},
"os": [
"darwin",
"linux"
],
"bin": {
"remotelab": "cli.js"
},
"directories": {
"doc": "docs",
"test": "tests"
},
"files": [
"cli.js",
"chat-server.mjs",
"generate-token.mjs",
"setup.sh",
"start.sh",
"stop.sh",
"automation/",
"lib/",
"chat/",
"templates/",
"static/",
"LICENSE",
"README.md",
"docs/"
],
"scripts": {
"start": "node chat-server.mjs",
"chat": "node chat-server.mjs",
"readme:showcase": "python3 scripts/generate-readme-showcase.py",
"diag:tunnel": "node scripts/tunnel-latency-diagnose.mjs",
"github:ci:repair": "node scripts/github-ci-auto-repair.mjs",
"github:ci:repair:instance": "./scripts/github-ci-auto-repair-instance.sh install",
"feishu:check": "node scripts/feishu-check.mjs",
"feishu:ops": "node scripts/feishu-ops.mjs",
"feishu:connect": "node scripts/feishu-connector.mjs",
"feishu:connect:instance": "./scripts/feishu-connector-instance.sh start",
"wechat:connect": "node scripts/wechat-connector.mjs",
"wechat:connect:instance": "./scripts/wechat-connector-instance.sh start",
"voice:connect": "node scripts/voice-connector.mjs",
"voice:connect:instance": "./scripts/voice-connector-instance.sh start",
"voice:utterance:loop": "~/.tmp/asr-venv/bin/python scripts/voice-utterance-loop.py",
"voice:wake:loop": "~/.tmp/asr-venv/bin/python scripts/voice-wake-loop.py",
"voice:capture:silence": "~/.tmp/asr-venv/bin/python scripts/voice-capture-until-silence.py",
"voice:record:once": "~/.tmp/asr-venv/bin/python scripts/voice-record-once.py",
"voice:transcribe": "~/.tmp/asr-venv/bin/python scripts/voice-transcribe-mlx.py",
"observer:run": "node scripts/proactive-observer.mjs",
"observer:instance": "./scripts/proactive-observer-instance.sh start",
"transcript:measure": "node scripts/measure-transcript-overhead.mjs",
"lint:filesize": "node scripts/report-oversized-files.mjs",
"test": "npm run test:smoke",
"test:restart-gate": "node scripts/run-with-clean-instance-env.mjs npm run test:restart-gate:raw",
"test:restart-gate:raw": "node tests/test-chat-static-assets.mjs && node tests/test-chat-split-frontend-smoke.mjs && node tests/test-build-info-versioning.mjs && node tests/test-static-asset-routing.mjs && node tests/test-parent-english-courseware-page.mjs && node tests/test-chat-loader-versioned-assets.mjs && node tests/test-chat-build-update-indicator.mjs && node tests/test-source-runtime-only.mjs && node tests/test-cli-release-removed.mjs && node tests/test-cli-legacy-command-removed.mjs",
"test:smoke": "node scripts/run-with-clean-instance-env.mjs npm run test:smoke:raw",
"test:smoke:raw": "node tests/test-chat-session-state-model.mjs && node tests/test-chat-session-store.mjs && node tests/test-chat-composer-store.mjs && node tests/test-chat-static-assets.mjs && node tests/test-session-naming.mjs && node tests/test-session-connector-naming.mjs && node tests/test-cloudflared-config.mjs && node tests/test-tunnel-diagnostics.mjs && node tests/test-history-index-contract.mjs && node tests/test-session-route-utils.mjs && node tests/test-apps-builtins.mjs && node tests/test-session-app-scope.mjs && node tests/test-session-external-trigger-refresh.mjs && node tests/test-session-follow-up-queue.mjs && node tests/test-session-label-prompt-context.mjs && node tests/test-auto-compaction.mjs && node tests/test-agent-mailbox.mjs && node tests/test-agent-mail-worker.mjs && node tests/test-embedded-mail-worker.mjs && node tests/test-agent-mail-reply.mjs && node tests/test-agent-mail-command.mjs && node tests/test-agent-mail-cloudflare-routing.mjs && node tests/test-mailbox-runtime-registry.mjs && node tests/test-feishu-connector.mjs && node tests/test-wechat-connector.mjs && node tests/test-feishu-ops.mjs && node tests/test-voice-connector.mjs && node tests/test-remote-capability-monitor.mjs && node tests/test-github-ci-auto-repair.mjs && node tests/test-github-ci-auto-repair-runner.mjs && node tests/test-generate-token-preserves-password.mjs && node tests/test-chat-instance-sync.mjs && node tests/test-guest-instance-command.mjs && node tests/test-normalize-owner-instance.mjs && node tests/test-source-runtime-only.mjs && node tests/test-cli-release-removed.mjs && node tests/test-oversized-files-report.mjs && npm run test:merge-safety",
"test:merge-safety": "node scripts/run-with-clean-instance-env.mjs npm run test:merge-safety:raw",
"test:merge-safety:raw": "node tests/test-runtime-selection.mjs && node tests/test-chat-tool-default-preference.mjs && node tests/test-tool-visibility.mjs && node tests/test-install-micro-agent.mjs && node tests/test-chat-server-default-micro-agent-bootstrap.mjs && node tests/test-models-micro-agent-per-model-reasoning.mjs && node tests/test-claude-build-args.mjs && node tests/test-process-runner-runtime-family.mjs && node tests/test-session-pinning.mjs && node tests/test-http-session-patch-runtime-preferences.mjs && node tests/test-http-session-summary-refs.mjs && node tests/test-chat-tooling-layout.mjs && node tests/test-chat-voice-doubao-relay.mjs && node tests/test-chat-upload-button.mjs && node tests/test-chat-share-snapshot-message.mjs && node tests/test-chat-compose-draft.mjs && node tests/test-chat-sidebar-attachments.mjs && node tests/test-chat-frontend-state-boundary.mjs && node tests/test-chat-swipe-gestures.mjs && node tests/test-session-http-sidebar-refresh.mjs && node tests/test-session-http-foreground-refresh.mjs && node tests/test-session-http-ref-hydration.mjs && node tests/test-session-http-share-snapshot-scroll.mjs && node tests/test-chat-ws-reconnect-scroll-suppression.mjs && node tests/test-chat-event-block-append.mjs && node tests/test-chat-event-block-dispatch.mjs && node tests/test-chat-reply-self-check-collapse.mjs && node tests/test-chat-transcript-placeholder-free.mjs && node tests/test-chat-loader-versioned-assets.mjs && node tests/test-chat-build-update-indicator.mjs && node tests/test-chat-split-frontend-smoke.mjs && node tests/test-chat-launch-intent.mjs && node tests/test-source-runtime-only.mjs && node tests/test-source-runtime-prompts.mjs && node tests/test-custom-tool-prompt-shaping.mjs && npm run test:shared-tools && node tests/test-runtime-policy.mjs && node tests/test-system-prompt.mjs && node tests/test-chat-nontechnical-copy.mjs && node tests/test-chat-thinking-block-display-preference.mjs && node tests/test-structured-runtime-auth-failure.mjs && node tests/test-user-shell-env.mjs && node tests/test-usage-summary-command.mjs",
"test:shared-tools": "node scripts/run-with-clean-instance-env.mjs npm run test:shared-tools:raw",
"test:shared-tools:raw": "node tests/test-shared-tools-directory.mjs && node tests/test-shared-tool-env-overrides.mjs",
"test:integration": "node scripts/run-with-clean-instance-env.mjs npm run test:integration:raw",
"test:integration:raw": "node tests/test-http-session-templates.mjs && node tests/test-http-session-media-upload.mjs && node tests/test-http-file-assets.mjs && node tests/test-http-result-file-assets.mjs && node tests/test-http-voice-cleanup.mjs",
"test:live:agenda-agent": "node tests/test-agenda-agent-live-smoke.mjs",
"stop": "./stop.sh",
"setup": "./setup.sh",
"generate-token": "node generate-token.mjs",
"prepublishOnly": "chmod +x cli.js setup.sh start.sh stop.sh"
},
"dependencies": {
"@larksuiteoapi/node-sdk": "^1.59.0",
"web-push": "^3.6.7",
"ws": "^8.19.0"
}
}