agentflow-core 0.6.0 → 0.6.2

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/index.d.cts CHANGED
@@ -542,7 +542,13 @@ interface OsProcess {
542
542
  pid: number;
543
543
  cpu: string;
544
544
  mem: string;
545
+ /** Elapsed time since process started (e.g. "2:31:05", "03:14"). */
546
+ elapsed: string;
547
+ /** Process start time (e.g. "Mar18", "17:37"). */
548
+ started: string;
545
549
  command: string;
550
+ /** Full command line from /proc (Linux only). */
551
+ cmdline: string;
546
552
  }
547
553
  interface ProcessAuditResult {
548
554
  pidFile: PidFileResult | null;
package/dist/index.d.ts CHANGED
@@ -542,7 +542,13 @@ interface OsProcess {
542
542
  pid: number;
543
543
  cpu: string;
544
544
  mem: string;
545
+ /** Elapsed time since process started (e.g. "2:31:05", "03:14"). */
546
+ elapsed: string;
547
+ /** Process start time (e.g. "Mar18", "17:37"). */
548
+ started: string;
545
549
  command: string;
550
+ /** Full command line from /proc (Linux only). */
551
+ cmdline: string;
546
552
  }
547
553
  interface ProcessAuditResult {
548
554
  pidFile: PidFileResult | null;
package/dist/index.js CHANGED
@@ -23,7 +23,7 @@ import {
23
23
  stitchTrace,
24
24
  toAsciiTree,
25
25
  toTimeline
26
- } from "./chunk-VF4FSBXR.js";
26
+ } from "./chunk-BXZC5ZMJ.js";
27
27
  import {
28
28
  graphToJson,
29
29
  loadGraph
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentflow-core",
3
- "version": "0.6.0",
3
+ "version": "0.6.2",
4
4
  "description": "Monitor any AI agent system. Auto-detects failures, sends alerts, audits OS processes. Zero config, zero dependencies.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",