@lazyingart/agintiflow 0.20.66 → 0.20.67
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/package.json +1 -1
- package/scripts/smoke-aaps-adapter.js +2 -4
- package/src/aaps-adapter.js +27 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lazyingart/agintiflow",
|
|
3
|
-
"version": "0.20.
|
|
3
|
+
"version": "0.20.67",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Low-cost, project-aware Web and CLI agents with DeepSeek/Venice/OpenAI routing, visible tool calls, durable sessions, scouts, AAPS, SCS, and guarded local execution.",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -24,6 +24,7 @@ async function exists(file) {
|
|
|
24
24
|
const init = await runAapsAction("init", ["Smoke AAPS Project"], { cwd: tempRoot, packageDir: repoRoot });
|
|
25
25
|
assert(init.ok, "AAPS init failed");
|
|
26
26
|
assert(await exists(path.join(tempRoot, "aaps.project.json")), "AAPS init did not write manifest");
|
|
27
|
+
assert(await exists(path.join(tempRoot, "agents", "agent_registry.json")), "AAPS init did not write starter agent registry");
|
|
27
28
|
assert(await exists(path.join(tempRoot, "workflows", "main.aaps")), "AAPS init did not write starter workflow");
|
|
28
29
|
|
|
29
30
|
const files = await runAapsAction("files", [], { cwd: tempRoot, packageDir: repoRoot });
|
|
@@ -43,10 +44,7 @@ if (discovery.found) {
|
|
|
43
44
|
|
|
44
45
|
const compile = await runAapsAction("compile", ["check"], { cwd: tempRoot, packageDir: repoRoot });
|
|
45
46
|
assert(compile.json?.phase?.parse === "ok", `AAPS compile check did not return a structured parse-ok report\n${formatAapsResult(compile)}`);
|
|
46
|
-
assert(
|
|
47
|
-
compile.json?.status === "missing_components" || compile.json?.ok === true,
|
|
48
|
-
`AAPS compile check returned an unexpected status\n${formatAapsResult(compile)}`
|
|
49
|
-
);
|
|
47
|
+
assert(compile.ok && compile.json?.ok === true, `AAPS starter should compile cleanly after init\n${formatAapsResult(compile)}`);
|
|
50
48
|
} else {
|
|
51
49
|
const validate = await runAapsAction("validate", [], { cwd: tempRoot, packageDir: repoRoot });
|
|
52
50
|
assert(validate.ok === false && validate.error, "AAPS missing path should return a structured error");
|
package/src/aaps-adapter.js
CHANGED
|
@@ -478,13 +478,21 @@ async function createAapsStarterProject({ cwd = process.cwd(), name = "" } = {})
|
|
|
478
478
|
const projectDir = path.resolve(cwd || process.cwd());
|
|
479
479
|
const projectName = String(name || path.basename(projectDir) || "AgInTiFlow AAPS Project").trim();
|
|
480
480
|
const workflowDir = path.join(projectDir, "workflows");
|
|
481
|
+
const agentsDir = path.join(projectDir, "agents");
|
|
481
482
|
const reportsDir = path.join(projectDir, "reports");
|
|
482
483
|
const runsDir = path.join(projectDir, "runs");
|
|
483
484
|
const artifactsDir = path.join(projectDir, "artifacts");
|
|
484
|
-
await Promise.all([
|
|
485
|
+
await Promise.all([
|
|
486
|
+
fs.mkdir(workflowDir, { recursive: true }),
|
|
487
|
+
fs.mkdir(agentsDir, { recursive: true }),
|
|
488
|
+
fs.mkdir(reportsDir, { recursive: true }),
|
|
489
|
+
fs.mkdir(runsDir, { recursive: true }),
|
|
490
|
+
fs.mkdir(artifactsDir, { recursive: true }),
|
|
491
|
+
]);
|
|
485
492
|
|
|
486
493
|
const manifestPath = path.join(projectDir, "aaps.project.json");
|
|
487
494
|
const workflowPath = path.join(workflowDir, "main.aaps");
|
|
495
|
+
const agentRegistryPath = path.join(agentsDir, "agent_registry.json");
|
|
488
496
|
const created = [];
|
|
489
497
|
if (!fsSync.existsSync(manifestPath)) {
|
|
490
498
|
const now = new Date().toISOString();
|
|
@@ -501,6 +509,7 @@ async function createAapsStarterProject({ cwd = process.cwd(), name = "" } = {})
|
|
|
501
509
|
updated: now,
|
|
502
510
|
paths: {
|
|
503
511
|
workflows: "workflows",
|
|
512
|
+
agents: "agents",
|
|
504
513
|
blocks: "blocks",
|
|
505
514
|
skills: "skills",
|
|
506
515
|
modules: "modules",
|
|
@@ -515,6 +524,7 @@ async function createAapsStarterProject({ cwd = process.cwd(), name = "" } = {})
|
|
|
515
524
|
runDatabase: "runs/aaps-runs.jsonl",
|
|
516
525
|
tools: ["node", "python3", "git", "aginti"],
|
|
517
526
|
models: ["deepseek-v4-flash", "deepseek-v4-pro"],
|
|
527
|
+
agents: ["planner"],
|
|
518
528
|
files: {
|
|
519
529
|
workflows: ["workflows/main.aaps"],
|
|
520
530
|
blocks: [],
|
|
@@ -530,6 +540,22 @@ async function createAapsStarterProject({ cwd = process.cwd(), name = "" } = {})
|
|
|
530
540
|
await fs.writeFile(manifestPath, `${JSON.stringify(manifest, null, 2)}\n`, "utf8");
|
|
531
541
|
created.push("aaps.project.json");
|
|
532
542
|
}
|
|
543
|
+
if (!fsSync.existsSync(agentRegistryPath)) {
|
|
544
|
+
const registry = {
|
|
545
|
+
agents: [
|
|
546
|
+
{
|
|
547
|
+
name: "planner",
|
|
548
|
+
purpose: "Plan large project work in small, verifiable phases for the starter AAPS workflow.",
|
|
549
|
+
invocation: "prompt",
|
|
550
|
+
supportedTasks: ["planning", "workflow_planning", "compile_prompt"],
|
|
551
|
+
safety: ["project-local edits only", "ask before risky shell commands", "no secrets in logs"],
|
|
552
|
+
fallback: "prepare prompt-only handoff",
|
|
553
|
+
},
|
|
554
|
+
],
|
|
555
|
+
};
|
|
556
|
+
await fs.writeFile(agentRegistryPath, `${JSON.stringify(registry, null, 2)}\n`, "utf8");
|
|
557
|
+
created.push("agents/agent_registry.json");
|
|
558
|
+
}
|
|
533
559
|
if (!fsSync.existsSync(workflowPath)) {
|
|
534
560
|
const source = `pipeline "${projectName} Starter" {
|
|
535
561
|
subtitle "A project-local AAPS workflow for AgInTiFlow"
|