@llm-dev-ops/agentics-cli 2.7.0 → 2.7.1
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/cli/index.js +30 -0
- package/dist/cli/index.js.map +1 -1
- package/dist/pipeline/auto-chain.d.ts +168 -0
- package/dist/pipeline/auto-chain.d.ts.map +1 -1
- package/dist/pipeline/auto-chain.js +1854 -880
- package/dist/pipeline/auto-chain.js.map +1 -1
- package/dist/pipeline/enterprise/artifact-renderers.d.ts +30 -0
- package/dist/pipeline/enterprise/artifact-renderers.d.ts.map +1 -1
- package/dist/pipeline/enterprise/artifact-renderers.js +129 -1
- package/dist/pipeline/enterprise/artifact-renderers.js.map +1 -1
- package/dist/pipeline/gate/phase-dependency-gate.d.ts +93 -0
- package/dist/pipeline/gate/phase-dependency-gate.d.ts.map +1 -0
- package/dist/pipeline/gate/phase-dependency-gate.js +349 -0
- package/dist/pipeline/gate/phase-dependency-gate.js.map +1 -0
- package/dist/pipeline/phase3-sparc/phase3-sparc-coordinator.d.ts.map +1 -1
- package/dist/pipeline/phase3-sparc/phase3-sparc-coordinator.js +280 -40
- package/dist/pipeline/phase3-sparc/phase3-sparc-coordinator.js.map +1 -1
- package/dist/pipeline/phase4-adrs/phase4-adrs-coordinator.d.ts.map +1 -1
- package/dist/pipeline/phase4-adrs/phase4-adrs-coordinator.js +363 -87
- package/dist/pipeline/phase4-adrs/phase4-adrs-coordinator.js.map +1 -1
- package/dist/pipeline/phases/prompt-generator.d.ts.map +1 -1
- package/dist/pipeline/phases/prompt-generator.js +95 -6
- package/dist/pipeline/phases/prompt-generator.js.map +1 -1
- package/dist/pipeline/ruflo-phase-executor.d.ts +124 -1
- package/dist/pipeline/ruflo-phase-executor.d.ts.map +1 -1
- package/dist/pipeline/ruflo-phase-executor.js +319 -4
- package/dist/pipeline/ruflo-phase-executor.js.map +1 -1
- package/package.json +1 -1
|
@@ -14,6 +14,8 @@
|
|
|
14
14
|
* Phase 6: ERP Surface Push (registration + project materialization)
|
|
15
15
|
*/
|
|
16
16
|
import { type ExecutionMode } from './execution-context.js';
|
|
17
|
+
import { type PrimaryPhaseExecutionResult } from './ruflo-phase-executor.js';
|
|
18
|
+
import { type PhaseId as GatePhaseId, type BlockedPhase } from './gate/phase-dependency-gate.js';
|
|
17
19
|
export interface AutoChainOptions {
|
|
18
20
|
readonly verbose?: boolean;
|
|
19
21
|
readonly outputDir?: string;
|
|
@@ -43,7 +45,43 @@ export interface AutoChainResult {
|
|
|
43
45
|
scenarioBranch?: string;
|
|
44
46
|
commitHash?: string;
|
|
45
47
|
githubUrl?: string;
|
|
48
|
+
/**
|
|
49
|
+
* ADR-PIPELINE-093 §Rule 3 — phases whose prerequisites were unreachable
|
|
50
|
+
* after Ruflo retry. Surfaces to `formatAutoChainForDisplay` as a final
|
|
51
|
+
* banner warning. Mirrors `manifest.json.blocked_phases` and
|
|
52
|
+
* `status.json.blocked_phases`; present (possibly `[]`) on every result
|
|
53
|
+
* so downstream consumers treat the shape as stable.
|
|
54
|
+
*/
|
|
55
|
+
blockedPhases?: Array<{
|
|
56
|
+
phase: string;
|
|
57
|
+
missing: ReadonlyArray<string>;
|
|
58
|
+
}>;
|
|
59
|
+
}
|
|
60
|
+
/** Canonical slot names in `.agentics/plans/`. */
|
|
61
|
+
export type PlanSlot = 'sparc' | 'adrs' | 'ddd' | 'tdd' | 'prompts' | 'implementation';
|
|
62
|
+
/** Per-slot promotion counts + MISSING detection. */
|
|
63
|
+
export interface PlanPromotionSummary {
|
|
64
|
+
readonly counts: Record<PlanSlot, number>;
|
|
65
|
+
readonly missing_slots: PlanSlot[];
|
|
66
|
+
readonly total_copied: number;
|
|
67
|
+
readonly total_skipped: number;
|
|
46
68
|
}
|
|
69
|
+
/**
|
|
70
|
+
* Shared table-driven promotion routine (ADR-PIPELINE-092, Rules 1–5).
|
|
71
|
+
*
|
|
72
|
+
* Walks `PLAN_SLOT_SOURCES` for every slot, picks the best source via
|
|
73
|
+
* `pickBestSourceForSlot`, promotes the source into the slot, then runs
|
|
74
|
+
* any additive sources on top. Emits the `[PLANS] promoted ...` stderr
|
|
75
|
+
* summary and one `[PLANS] MISSING <slot>` line per empty-and-unrecoverable
|
|
76
|
+
* slot. Returns the summary so callers (final safety-net call) can merge
|
|
77
|
+
* `planPromotion` into `manifest.json`.
|
|
78
|
+
*/
|
|
79
|
+
export declare function promotePlanningArtifacts(runDir: string, projectRoot: string): PlanPromotionSummary;
|
|
80
|
+
/**
|
|
81
|
+
* Merge the ADR-PIPELINE-092 `planPromotion` block into `runDir/manifest.json`.
|
|
82
|
+
* Read-modify-write pattern mirrors `writeExecutionBlockToManifest`.
|
|
83
|
+
*/
|
|
84
|
+
export declare function writePlanPromotionToManifest(runDir: string, summary: PlanPromotionSummary): void;
|
|
47
85
|
/**
|
|
48
86
|
* Copy whatever planning artifacts exist from ~/.agentics/runs/<traceId>/
|
|
49
87
|
* to .agentics/plans/ in the current working directory. Uses .agentics/plans/
|
|
@@ -234,7 +272,137 @@ export interface ScaffoldDuplicateFinding {
|
|
|
234
272
|
* Returns one finding per (file, export) pair.
|
|
235
273
|
*/
|
|
236
274
|
export declare function detectScaffoldDuplicates(projectRoot: string, owned?: readonly OwnedScaffoldModule[]): ScaffoldDuplicateFinding[];
|
|
275
|
+
export declare function copyPlanningArtifacts(runDir: string, targetRoot?: string): void;
|
|
237
276
|
export declare function executeAutoChain(traceId: string, options?: AutoChainOptions): Promise<AutoChainResult>;
|
|
277
|
+
/**
|
|
278
|
+
* Shape of a remote agent entry as recorded in the Phase 1 `manifest.json`.
|
|
279
|
+
* `status` is typically `"success" | "invoked"` for ok and anything else for
|
|
280
|
+
* errored (e.g., `"503"`, `"timeout"`, `"error"`). Mirrors the inline type in
|
|
281
|
+
* `printPhase1Summary`.
|
|
282
|
+
*/
|
|
283
|
+
export interface RemoteAgentInvocation {
|
|
284
|
+
readonly domain: string;
|
|
285
|
+
readonly agent: string;
|
|
286
|
+
readonly status: string;
|
|
287
|
+
}
|
|
288
|
+
/** Snapshot of the remote enrichment fleet taken from `manifest.agents_invoked`. */
|
|
289
|
+
export interface RemoteEnrichmentSnapshot {
|
|
290
|
+
readonly available: string[];
|
|
291
|
+
readonly errored: string[];
|
|
292
|
+
/** Raw entries from the manifest, kept for dossier context plumbing. */
|
|
293
|
+
readonly entries: RemoteAgentInvocation[];
|
|
294
|
+
}
|
|
295
|
+
/**
|
|
296
|
+
* Read `manifest.agents_invoked` from the run dir and partition into
|
|
297
|
+
* successful vs errored remote enrichment agents. ADR-PIPELINE-091 §5.
|
|
298
|
+
*
|
|
299
|
+
* Treats `status === "success"` and `status === "invoked"` as available; any
|
|
300
|
+
* other status (including HTTP error codes, `"timeout"`, `"error"`) is
|
|
301
|
+
* counted as errored. Missing / unreadable manifest => empty lists.
|
|
302
|
+
*/
|
|
303
|
+
export declare function readRemoteEnrichmentSnapshot(runDir: string): RemoteEnrichmentSnapshot;
|
|
304
|
+
/**
|
|
305
|
+
* Build the `execution` block that ADR-PIPELINE-091 §5 writes back into
|
|
306
|
+
* `runDir/manifest.json`. Pure function so it can be unit-tested without
|
|
307
|
+
* spinning up the actual pipeline.
|
|
308
|
+
*/
|
|
309
|
+
export declare function computeExecutionBlock(rufloResults: ReadonlyArray<PrimaryPhaseExecutionResult | null | undefined>, enrichment: RemoteEnrichmentSnapshot): {
|
|
310
|
+
engineering_tier: 'ruflo-local' | 'template';
|
|
311
|
+
tier_counts: {
|
|
312
|
+
'ruflo-local': number;
|
|
313
|
+
template: number;
|
|
314
|
+
};
|
|
315
|
+
enrichment: {
|
|
316
|
+
remote_agents_available: string[];
|
|
317
|
+
remote_agents_errored: string[];
|
|
318
|
+
enrichment_depth_pct: number | null;
|
|
319
|
+
};
|
|
320
|
+
};
|
|
321
|
+
/**
|
|
322
|
+
* Merge the ADR-091 `execution` block into `runDir/manifest.json` in-place.
|
|
323
|
+
* Reads the existing manifest, sets `execution`, writes it back with the
|
|
324
|
+
* same mode/encoding convention used elsewhere in this file. Non-fatal on
|
|
325
|
+
* I/O or JSON errors — the pipeline continues if manifest merge fails.
|
|
326
|
+
*/
|
|
327
|
+
export declare function writeExecutionBlockToManifest(runDir: string, block: ReturnType<typeof computeExecutionBlock>): void;
|
|
328
|
+
/**
|
|
329
|
+
* Per-phase gate outcomes accumulated across the auto-chain execution.
|
|
330
|
+
* Populated as each phase's gate runs, then flushed to `manifest.json`
|
|
331
|
+
* at pipeline completion so downstream consumers (MCP `agentics-status`
|
|
332
|
+
* tool, final banner) see a stable schema.
|
|
333
|
+
*/
|
|
334
|
+
interface GateAccumulator {
|
|
335
|
+
readonly blocked: BlockedPhase[];
|
|
336
|
+
/** per-phase list of input paths that the gate produced via Ruflo */
|
|
337
|
+
readonly producedByGate: Record<GatePhaseId, string[]>;
|
|
338
|
+
/** optional scaffold-language skip record (Rule 5) */
|
|
339
|
+
phase5bSkipped: {
|
|
340
|
+
reason: string;
|
|
341
|
+
detected: string;
|
|
342
|
+
template: string;
|
|
343
|
+
} | null;
|
|
344
|
+
}
|
|
345
|
+
/**
|
|
346
|
+
* ADR-PIPELINE-093 — merge `blocked_phases`, per-phase
|
|
347
|
+
* `phase{N}_inputs_produced_by_gate`, and `phase5b_skipped` into
|
|
348
|
+
* `runDir/manifest.json`. Read-modify-write pattern mirrors
|
|
349
|
+
* `writeExecutionBlockToManifest` / `writePlanPromotionToManifest`.
|
|
350
|
+
*
|
|
351
|
+
* `blocked_phases` is always present (empty array when no phase blocked).
|
|
352
|
+
* The per-phase `inputs_produced_by_gate` keys are always present so
|
|
353
|
+
* downstream readers can treat them as a stable schema.
|
|
354
|
+
*/
|
|
355
|
+
export declare function writeGateBlockToManifest(runDir: string, acc: GateAccumulator): void;
|
|
356
|
+
/**
|
|
357
|
+
* ADR-PIPELINE-093 §Rule 3 (surface b) — same gate-block payload, written
|
|
358
|
+
* into `runDir/status.json` so the CLI `status` command + MCP
|
|
359
|
+
* `agentics-status` tool carry `blocked_phases` and the per-phase
|
|
360
|
+
* `phase{N}_inputs_produced_by_gate` arrays alongside the ADR-088 keys.
|
|
361
|
+
*
|
|
362
|
+
* Read-modify-write pattern matches the CLI's local `updateStatus` helper
|
|
363
|
+
* (`src/cli/index.ts`:~2501). Best-effort: if `status.json` does not exist
|
|
364
|
+
* (e.g. running outside the MCP fast-return path), the file is created so
|
|
365
|
+
* the gate block is always observable regardless of entry point.
|
|
366
|
+
*
|
|
367
|
+
* Both `writeGateBlockToManifest` and this function should be called from
|
|
368
|
+
* the same accumulator snapshot so manifest.json and status.json stay in
|
|
369
|
+
* sync. The CLI-surfaced `status.json` is the source of truth for the MCP
|
|
370
|
+
* `agentics-status` tool (which shells out to `agentics status`).
|
|
371
|
+
*/
|
|
372
|
+
export declare function writeGateBlockToStatusJson(runDir: string, acc: GateAccumulator): void;
|
|
373
|
+
type ScaffoldLanguage = 'typescript' | 'python' | 'go' | 'rust' | 'unknown';
|
|
374
|
+
/**
|
|
375
|
+
* Detect the target project language from Phase 1 manifest.json
|
|
376
|
+
* (`project.language`) first, then falls back to common project root
|
|
377
|
+
* marker files. Returns `'unknown'` when no signal is available — the
|
|
378
|
+
* caller decides whether to skip or proceed in that case.
|
|
379
|
+
*/
|
|
380
|
+
/**
|
|
381
|
+
* ADR-PIPELINE-093 §Rule 5 — single arbiter for which scaffold template set
|
|
382
|
+
* `copyPlanningArtifacts` should emit. Called ONCE per invocation so the TS
|
|
383
|
+
* block and the Python block gate on the same decision.
|
|
384
|
+
*
|
|
385
|
+
* - `typescript` → emit TS, skip Python, no manifest record.
|
|
386
|
+
* - `python` → skip TS, emit Python, no manifest record.
|
|
387
|
+
* - `go`|`rust`|`unknown` → skip both, record `phase5b_skipped` with the
|
|
388
|
+
* detected language and `template: 'typescript'`
|
|
389
|
+
* (kept for Scenario-5 compatibility — the
|
|
390
|
+
* skip block's shape is the ADR-093 schema).
|
|
391
|
+
*
|
|
392
|
+
* The detected-language + template-name pair in `skipped` matches what the
|
|
393
|
+
* pre-093-fix gate wrote to `manifest.json`, so downstream status.json /
|
|
394
|
+
* MCP consumers don't see a shape change on the mismatch path.
|
|
395
|
+
*/
|
|
396
|
+
export declare function decideScaffoldEmission(detected: ScaffoldLanguage): {
|
|
397
|
+
emitTs: boolean;
|
|
398
|
+
emitPy: boolean;
|
|
399
|
+
skipped: null | {
|
|
400
|
+
reason: 'language-mismatch';
|
|
401
|
+
detected: string;
|
|
402
|
+
template: string;
|
|
403
|
+
};
|
|
404
|
+
};
|
|
405
|
+
export declare function detectProjectLanguage(projectRoot: string, phase1Manifest?: Record<string, unknown>): ScaffoldLanguage;
|
|
238
406
|
/**
|
|
239
407
|
* Format the auto-chain result for stdout display.
|
|
240
408
|
* This is the consolidated pipeline summary that surfaces Phase 2-6 details
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"auto-chain.d.ts","sourceRoot":"","sources":["../../src/pipeline/auto-chain.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;
|
|
1
|
+
{"version":3,"file":"auto-chain.d.ts","sourceRoot":"","sources":["../../src/pipeline/auto-chain.ts"],"names":[],"mappings":"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"}
|