agentlas 1.0.58 → 1.0.59
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.
|
@@ -656,7 +656,7 @@ async function runGraph(ctx, needle, flags) {
|
|
|
656
656
|
// 시작 값이 필요한 그래프는 값 없이 요청하지 않는다. 값 없이 보내면 빈 채로 실행돼,
|
|
657
657
|
// 사용자가 요청한 적 없는 내용이 만들어진다.
|
|
658
658
|
const requirement = graphInputRequirement(graph, en);
|
|
659
|
-
if (requirement && !flags.input) {
|
|
659
|
+
if (requirement && !flags.inputProvided && !flags.input) {
|
|
660
660
|
ctx.err(en
|
|
661
661
|
? `"${row.name}" starts from a value you provide — ${requirement.label}.`
|
|
662
662
|
: `"${row.name}"은(는) 시작할 때 값을 받습니다 — ${requirement.label}.`);
|
|
@@ -676,7 +676,7 @@ async function runGraph(ctx, needle, flags) {
|
|
|
676
676
|
createdBy: row.created_by || "terminal",
|
|
677
677
|
graph,
|
|
678
678
|
};
|
|
679
|
-
const initialVars = requirement && flags.input ? { [requirement.varName]: flags.input } : {};
|
|
679
|
+
const initialVars = requirement && (flags.inputProvided || flags.input) ? { [requirement.varName]: flags.input } : {};
|
|
680
680
|
|
|
681
681
|
/*
|
|
682
682
|
* ★데몬 우선 (Phase 3). 데몬이 떠 있으면 이 터미널은 코어를 **로드하지 않는다** —
|
|
@@ -1299,8 +1299,10 @@ async function run(ctx, args = []) {
|
|
|
1299
1299
|
const arg = args[i];
|
|
1300
1300
|
if (arg === "-y" || arg === "--yes") { flags.yes = true; continue; }
|
|
1301
1301
|
if (arg === "--start-over") { flags["start-over"] = true; continue; }
|
|
1302
|
-
|
|
1303
|
-
|
|
1302
|
+
// ★"안 줬다"와 "빈 값을 줬다"는 다르다. 그래프가 "비워 두면 최신 값을 씁니다"라고
|
|
1303
|
+
// 안내해도, 빈 문자열을 못 줘서 그 선택지를 고를 수 없었다(실측 2026-08-20).
|
|
1304
|
+
if (arg === "--input" || arg === "-i") { flags.input = String(args[i + 1] ?? "").trim(); flags.inputProvided = true; i += 1; continue; }
|
|
1305
|
+
if (arg.startsWith("--input=")) { flags.input = arg.slice("--input=".length).trim(); flags.inputProvided = true; continue; }
|
|
1304
1306
|
// ★--name 도 값을 하나 받는 플래그다. 걷어내지 않으면 그 값이 파일 경로에 붙어
|
|
1305
1307
|
// "그런 파일 없음"으로 죽는다 — `graph help`가 문법으로 광고하는 옵션인데
|
|
1306
1308
|
// 실제로는 한 번도 동작한 적이 없었다(실사용 실측 2026-08-06).
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "
|
|
3
|
-
"url": "https://github.com/agentlas-ai/agentlas-terminal/releases/download/desktop-core-
|
|
4
|
-
"sha256": "
|
|
5
|
-
"sizeBytes":
|
|
6
|
-
"writtenAt": "2026-08-
|
|
2
|
+
"version": "11",
|
|
3
|
+
"url": "https://github.com/agentlas-ai/agentlas-terminal/releases/download/desktop-core-v11/desktop-core.tar.gz",
|
|
4
|
+
"sha256": "c68cddd2cd4ee6978903a7a1bea39fbdce218c1dcbaa74165231ea99bbd1999e",
|
|
5
|
+
"sizeBytes": 12557470,
|
|
6
|
+
"writtenAt": "2026-08-19T22:35:51.167Z"
|
|
7
7
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentlas",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.59",
|
|
4
4
|
"description": "Agentlas project terminal — run project controllers and task-scoped agent teams from the terminal. Standalone: no desktop app process required.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"agentlas": "bin/agentlas.cjs"
|