mirror of
https://github.com/Jeuners/ECC.git
synced 2026-09-09 15:02:30 +02:00
feat: orchestration harness, selective install, observer improvements
This commit is contained in:
parent
424f3b3729
commit
4e028bd2d2
76 changed files with 11050 additions and 340 deletions
|
|
@ -4,7 +4,7 @@
|
|||
const fs = require('fs');
|
||||
const path = require('path');
|
||||
|
||||
const { collectSessionSnapshot } = require('./lib/orchestration-session');
|
||||
const { inspectSessionTarget } = require('./lib/session-adapters/registry');
|
||||
|
||||
function usage() {
|
||||
console.log([
|
||||
|
|
@ -35,7 +35,10 @@ function main() {
|
|||
process.exit(1);
|
||||
}
|
||||
|
||||
const snapshot = collectSessionSnapshot(target, process.cwd());
|
||||
const snapshot = inspectSessionTarget(target, {
|
||||
cwd: process.cwd(),
|
||||
adapterId: 'dmux-tmux'
|
||||
});
|
||||
const json = JSON.stringify(snapshot, null, 2);
|
||||
|
||||
if (writePath) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue