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/{chunk-VF4FSBXR.js → chunk-BXZC5ZMJ.js} +357 -268
- package/dist/cli.cjs +361 -270
- package/dist/cli.js +1 -1
- package/dist/index.cjs +359 -270
- package/dist/index.d.cts +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
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
package/package.json
CHANGED