agentlas 1.0.28 → 1.0.35
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/CHANGELOG.md +102 -0
- package/README.md +5 -2
- package/bin/agentlas.cjs +15 -0
- package/engine/agentlas-cloud-runtime.cjs +54 -4
- package/engine/agentlas-i18n.cjs +4 -4
- package/engine/agentlas-input.cjs +10 -3
- package/engine/agentlas-judgment.cjs +0 -0
- package/engine/agentlas-native-host.cjs +69 -4
- package/engine/agentlas-onboard.cjs +20 -0
- package/engine/agentlas-ui.cjs +2 -0
- package/engine/agentlas-workforce.cjs +69 -13
- package/engine/agentlas.cjs +71 -3
- package/engine/agents/builder.cjs +84 -0
- package/engine/agents/router.cjs +8 -2
- package/engine/automation/launchd.cjs +131 -0
- package/engine/bootstrap-schema.sql +6 -44
- package/engine/browser/cdp.cjs +188 -0
- package/engine/browser/vault.cjs +124 -0
- package/engine/cli-output.cjs +262 -0
- package/engine/cloud-assets/package.cjs +5 -1
- package/engine/commands/automation.cjs +37 -1
- package/engine/commands/billing.cjs +3 -0
- package/engine/commands/browser.cjs +166 -8
- package/engine/commands/build.cjs +101 -20
- package/engine/commands/connect.cjs +162 -9
- package/engine/commands/creds.cjs +65 -3
- package/engine/commands/doctor.cjs +66 -4
- package/engine/commands/document.cjs +79 -0
- package/engine/commands/graph.cjs +1190 -0
- package/engine/commands/help.cjs +87 -9
- package/engine/commands/hep-cloud.cjs +9 -23
- package/engine/commands/hep-hub.cjs +9 -22
- package/engine/commands/hep-local.cjs +9 -24
- package/engine/commands/hep-network.cjs +9 -35
- package/engine/commands/index.cjs +50 -25
- package/engine/commands/list.cjs +10 -1
- package/engine/commands/mcp.cjs +6 -2
- package/engine/commands/native.cjs +18 -2
- package/engine/commands/plugin.cjs +22 -0
- package/engine/commands/project.cjs +79 -16
- package/engine/commands/roles.cjs +210 -0
- package/engine/commands/telegram.cjs +23 -16
- package/engine/commands/workforce.cjs +63 -12
- package/engine/core/desktop-core-fetch.cjs +98 -0
- package/engine/core/desktop-core.cjs +170 -0
- package/engine/graph/ask-model.cjs +159 -0
- package/engine/graph/interview.cjs +960 -0
- package/engine/graph/layout.cjs +139 -0
- package/engine/graph/package.cjs +223 -0
- package/engine/graph/vocabulary.generated.cjs +30 -0
- package/engine/hephaestus/local-core.cjs +159 -0
- package/engine/hephaestus/runtime.cjs +14 -10
- package/engine/project/controller.cjs +8 -8
- package/engine/project/team.cjs +99 -0
- package/engine/runtime-refusal.cjs +71 -0
- package/engine/runtimes/auth-evidence.cjs +78 -0
- package/engine/runtimes/detect.cjs +3 -0
- package/engine/runtimes/resolve.cjs +1 -1
- package/engine/sessions/prompt.cjs +16 -0
- package/engine/sessions/session.cjs +24 -2
- package/engine/telegram/connect.cjs +202 -0
- package/engine/tools/access-notice.cjs +86 -0
- package/engine/ui/palette.cjs +7 -3
- package/engine/ui/repl.cjs +120 -3
- package/engine/vendor/desktop-core.manifest.json +7 -0
- package/engine/workforce/capture.cjs +51 -1
- package/engine/workforce/deps.cjs +13 -0
- package/engine/workforce/local-core-transport.cjs +298 -0
- package/package.json +4 -2
- package/engine/commands/legacy-network.cjs +0 -29
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/*
|
|
3
|
-
* legacy-network — 호환 전용 Hephaestus 네트워크 경로 (명시적 탈출구).
|
|
4
|
-
*
|
|
5
|
-
* v1 디스패처 매핑 그대로:
|
|
6
|
-
* `agentlas legacy-network "<request>"` → cmdHep(["hep-network", ...rest])
|
|
7
|
-
*
|
|
8
|
-
* 오너 결정 배경: 기본 `network`/`workforce`는 host-LLM Agent Workforce
|
|
9
|
-
* Ontology(fail-closed) 경로다. 구 Hephaestus hep-network 라우터는 이
|
|
10
|
-
* "legacy-" 접두 명령으로만, 사용자가 이름으로 정확히 지목했을 때만 연다.
|
|
11
|
-
* 절대 기본 경로의 폴백으로 쓰지 않는다.
|
|
12
|
-
*
|
|
13
|
-
* v1 가드 그대로: help 토큰 → usage 0, 무인자 → usage 실패 exit 1.
|
|
14
|
-
*/
|
|
15
|
-
const { create, usageFor, isHelpToken } = require("../hephaestus/runtime.cjs");
|
|
16
|
-
|
|
17
|
-
async function run(ctx, args) {
|
|
18
|
-
if (args.some(isHelpToken)) {
|
|
19
|
-
ctx.out(usageFor("legacy-network", ctx.lang));
|
|
20
|
-
return 0;
|
|
21
|
-
}
|
|
22
|
-
if (!args.length) {
|
|
23
|
-
ctx.err("✖ " + usageFor("legacy-network", ctx.lang));
|
|
24
|
-
return 1;
|
|
25
|
-
}
|
|
26
|
-
return create(ctx).cmdHep(["hep-network", ...args]);
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
module.exports = { run };
|