sentinelayer-cli 0.6.2 → 0.8.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/README.md +1009 -996
- package/bin/create-sentinelayer.js +5 -5
- package/bin/sentinelayer-cli.js +4 -4
- package/bin/sl.js +5 -5
- package/package.json +64 -63
- package/src/agents/ai-governance/index.js +12 -0
- package/src/agents/ai-governance/tools/base.js +171 -0
- package/src/agents/ai-governance/tools/eval-regression.js +47 -0
- package/src/agents/ai-governance/tools/hitl-audit.js +81 -0
- package/src/agents/ai-governance/tools/index.js +52 -0
- package/src/agents/ai-governance/tools/prompt-drift.js +42 -0
- package/src/agents/ai-governance/tools/provenance-check.js +69 -0
- package/src/agents/backend/index.js +12 -0
- package/src/agents/backend/tools/base.js +189 -0
- package/src/agents/backend/tools/circuit-breaker-check.js +123 -0
- package/src/agents/backend/tools/idempotency-audit.js +105 -0
- package/src/agents/backend/tools/index.js +87 -0
- package/src/agents/backend/tools/retry-audit.js +132 -0
- package/src/agents/backend/tools/timeout-audit.js +144 -0
- package/src/agents/code-quality/index.js +12 -0
- package/src/agents/code-quality/tools/base.js +159 -0
- package/src/agents/code-quality/tools/complexity-measure.js +197 -0
- package/src/agents/code-quality/tools/coupling-analysis.js +81 -0
- package/src/agents/code-quality/tools/cycle-detect.js +49 -0
- package/src/agents/code-quality/tools/dep-graph.js +196 -0
- package/src/agents/code-quality/tools/index.js +89 -0
- package/src/agents/data-layer/index.js +12 -0
- package/src/agents/data-layer/tools/base.js +181 -0
- package/src/agents/data-layer/tools/index-audit.js +165 -0
- package/src/agents/data-layer/tools/index.js +83 -0
- package/src/agents/data-layer/tools/migration-scan.js +135 -0
- package/src/agents/data-layer/tools/query-explain.js +120 -0
- package/src/agents/data-layer/tools/tenancy-scan.js +166 -0
- package/src/agents/documentation/index.js +12 -0
- package/src/agents/documentation/tools/api-diff.js +91 -0
- package/src/agents/documentation/tools/base.js +151 -0
- package/src/agents/documentation/tools/dead-link-check.js +58 -0
- package/src/agents/documentation/tools/docstring-coverage.js +78 -0
- package/src/agents/documentation/tools/index.js +52 -0
- package/src/agents/documentation/tools/readme-freshness.js +61 -0
- package/src/agents/envelope/fix-cycle.js +45 -0
- package/src/agents/envelope/index.js +31 -0
- package/src/agents/envelope/loop.js +150 -0
- package/src/agents/envelope/pulse.js +18 -0
- package/src/agents/envelope/stream.js +40 -0
- package/src/agents/infrastructure/index.js +12 -0
- package/src/agents/infrastructure/tools/base.js +171 -0
- package/src/agents/infrastructure/tools/checkov-run.js +32 -0
- package/src/agents/infrastructure/tools/drift-detect.js +59 -0
- package/src/agents/infrastructure/tools/iam-least-priv-check.js +78 -0
- package/src/agents/infrastructure/tools/index.js +52 -0
- package/src/agents/infrastructure/tools/tflint-run.js +31 -0
- package/src/agents/jules/config/definition.js +160 -160
- package/src/agents/jules/config/system-prompt.js +182 -182
- package/src/agents/jules/error-intake.js +51 -51
- package/src/agents/jules/fix-cycle.js +17 -17
- package/src/agents/jules/loop.js +460 -450
- package/src/agents/jules/pulse.js +10 -10
- package/src/agents/jules/stream.js +187 -186
- package/src/agents/jules/swarm/file-scanner.js +74 -74
- package/src/agents/jules/swarm/index.js +11 -11
- package/src/agents/jules/swarm/orchestrator.js +362 -362
- package/src/agents/jules/swarm/pattern-hunter.js +123 -123
- package/src/agents/jules/swarm/sub-agent.js +315 -309
- package/src/agents/jules/tools/aidenid-email.js +189 -189
- package/src/agents/jules/tools/auth-audit.js +1708 -1691
- package/src/agents/jules/tools/dispatch.js +340 -335
- package/src/agents/jules/tools/file-edit.js +2 -2
- package/src/agents/jules/tools/file-read.js +2 -2
- package/src/agents/jules/tools/frontend-analyze.js +570 -570
- package/src/agents/jules/tools/glob.js +2 -2
- package/src/agents/jules/tools/grep.js +2 -2
- package/src/agents/jules/tools/index.js +29 -29
- package/src/agents/jules/tools/path-guards.js +2 -2
- package/src/agents/jules/tools/runtime-audit.js +507 -507
- package/src/agents/jules/tools/shell.js +2 -2
- package/src/agents/jules/tools/url-policy.js +100 -100
- package/src/agents/mode.js +113 -0
- package/src/agents/observability/index.js +12 -0
- package/src/agents/observability/tools/alert-audit.js +39 -0
- package/src/agents/observability/tools/base.js +181 -0
- package/src/agents/observability/tools/dashboard-gap.js +42 -0
- package/src/agents/observability/tools/index.js +54 -0
- package/src/agents/observability/tools/log-schema-check.js +74 -0
- package/src/agents/observability/tools/span-coverage.js +74 -0
- package/src/agents/persona-visuals.js +102 -61
- package/src/agents/release/index.js +12 -0
- package/src/agents/release/tools/base.js +181 -0
- package/src/agents/release/tools/changelog-diff.js +86 -0
- package/src/agents/release/tools/feature-flag-audit.js +126 -0
- package/src/agents/release/tools/index.js +61 -0
- package/src/agents/release/tools/rollback-verify.js +129 -0
- package/src/agents/release/tools/semver-check.js +109 -0
- package/src/agents/reliability/index.js +12 -0
- package/src/agents/reliability/tools/backpressure-check.js +129 -0
- package/src/agents/reliability/tools/base.js +181 -0
- package/src/agents/reliability/tools/chaos-probe.js +109 -0
- package/src/agents/reliability/tools/graceful-degradation-check.js +114 -0
- package/src/agents/reliability/tools/health-check-audit.js +111 -0
- package/src/agents/reliability/tools/index.js +87 -0
- package/src/agents/run-persona.js +109 -0
- package/src/agents/security/index.js +12 -0
- package/src/agents/security/tools/authz-audit.js +134 -0
- package/src/agents/security/tools/base.js +190 -0
- package/src/agents/security/tools/crypto-review.js +175 -0
- package/src/agents/security/tools/index.js +97 -0
- package/src/agents/security/tools/sast-scan.js +175 -0
- package/src/agents/security/tools/secrets-scan.js +216 -0
- package/src/agents/shared-tools/dispatch-core.js +320 -315
- package/src/agents/shared-tools/file-edit.js +180 -180
- package/src/agents/shared-tools/file-read.js +100 -100
- package/src/agents/shared-tools/glob.js +168 -168
- package/src/agents/shared-tools/grep.js +228 -228
- package/src/agents/shared-tools/index.js +46 -46
- package/src/agents/shared-tools/path-guards.js +161 -161
- package/src/agents/shared-tools/shell.js +383 -383
- package/src/agents/supply-chain/index.js +12 -0
- package/src/agents/supply-chain/tools/attestation-check.js +42 -0
- package/src/agents/supply-chain/tools/base.js +151 -0
- package/src/agents/supply-chain/tools/index.js +52 -0
- package/src/agents/supply-chain/tools/lockfile-integrity.js +73 -0
- package/src/agents/supply-chain/tools/package-verify.js +56 -0
- package/src/agents/supply-chain/tools/sbom-diff.js +34 -0
- package/src/agents/testing/index.js +12 -0
- package/src/agents/testing/tools/base.js +202 -0
- package/src/agents/testing/tools/coverage-gap.js +144 -0
- package/src/agents/testing/tools/flake-detect.js +125 -0
- package/src/agents/testing/tools/index.js +85 -0
- package/src/agents/testing/tools/mutation-test.js +143 -0
- package/src/agents/testing/tools/snapshot-diff.js +103 -0
- package/src/ai/aidenid.js +1021 -1009
- package/src/ai/client.js +553 -553
- package/src/ai/domain-target-store.js +268 -268
- package/src/ai/identity-store.js +270 -270
- package/src/ai/proxy.js +137 -137
- package/src/ai/site-store.js +145 -145
- package/src/audit/agents/architecture.js +180 -180
- package/src/audit/agents/compliance.js +179 -179
- package/src/audit/agents/documentation.js +165 -165
- package/src/audit/agents/performance.js +145 -145
- package/src/audit/agents/security.js +215 -215
- package/src/audit/agents/testing.js +172 -172
- package/src/audit/orchestrator.js +557 -557
- package/src/audit/package.js +204 -204
- package/src/audit/registry.js +284 -284
- package/src/audit/replay.js +103 -103
- package/src/auth/gate.js +428 -371
- package/src/auth/http.js +681 -611
- package/src/auth/service.js +1106 -1106
- package/src/auth/session-store.js +813 -813
- package/src/cli.js +257 -252
- package/src/commands/ai/identity-lifecycle.js +1338 -1338
- package/src/commands/ai/provision-governance.js +1272 -1272
- package/src/commands/ai/shared.js +147 -147
- package/src/commands/ai.js +11 -11
- package/src/commands/apply.js +12 -12
- package/src/commands/audit.js +1171 -1166
- package/src/commands/auth.js +419 -419
- package/src/commands/chat.js +184 -191
- package/src/commands/config.js +184 -184
- package/src/commands/cost.js +311 -311
- package/src/commands/daemon/core.js +850 -850
- package/src/commands/daemon/extended.js +1048 -1048
- package/src/commands/daemon/shared.js +213 -213
- package/src/commands/daemon.js +11 -11
- package/src/commands/guide.js +174 -174
- package/src/commands/ingest.js +58 -58
- package/src/commands/init.js +55 -55
- package/src/commands/legacy-args.js +20 -10
- package/src/commands/mcp.js +461 -461
- package/src/commands/omargate.js +63 -29
- package/src/commands/persona.js +65 -20
- package/src/commands/plugin.js +260 -260
- package/src/commands/policy.js +132 -132
- package/src/commands/prompt.js +238 -238
- package/src/commands/review.js +704 -704
- package/src/commands/scan.js +865 -872
- package/src/commands/session.js +1238 -0
- package/src/commands/spec.js +771 -716
- package/src/commands/swarm.js +651 -651
- package/src/commands/telemetry.js +202 -202
- package/src/commands/watch.js +511 -511
- package/src/config/agent-dictionary.js +182 -182
- package/src/config/io.js +56 -56
- package/src/config/paths.js +18 -18
- package/src/config/schema.js +55 -55
- package/src/config/service.js +184 -184
- package/src/coord/events-log.js +141 -0
- package/src/coord/handshake.js +719 -0
- package/src/coord/index.js +35 -0
- package/src/coord/paths.js +84 -0
- package/src/coord/priority.js +62 -0
- package/src/coord/tarjan.js +157 -0
- package/src/cost/budget.js +235 -235
- package/src/cost/history.js +188 -188
- package/src/cost/tokenizer.js +160 -0
- package/src/cost/tracker.js +232 -171
- package/src/daemon/artifact-lineage.js +896 -534
- package/src/daemon/assignment-ledger.js +1083 -770
- package/src/daemon/ast-drift.js +496 -0
- package/src/daemon/ast-parser-layer.js +258 -258
- package/src/daemon/budget-governor.js +633 -633
- package/src/daemon/callgraph-overlay.js +646 -646
- package/src/daemon/error-worker.js +1209 -626
- package/src/daemon/fix-cycle.js +384 -377
- package/src/daemon/hybrid-mapper.js +929 -929
- package/src/daemon/ingest-refresh.js +79 -11
- package/src/daemon/jira-lifecycle.js +767 -632
- package/src/daemon/operator-control.js +657 -657
- package/src/daemon/pulse.js +327 -327
- package/src/daemon/reliability-lane.js +471 -471
- package/src/daemon/scope-engine.js +1068 -0
- package/src/daemon/watchdog.js +971 -971
- package/src/events/schema.js +190 -0
- package/src/guide/generator.js +316 -316
- package/src/ingest/engine.js +933 -918
- package/src/ingest/ownership.js +380 -0
- package/src/interactive/index.js +97 -97
- package/src/legacy-cli.js +3228 -2994
- package/src/mcp/registry.js +695 -695
- package/src/memory/blackboard.js +301 -301
- package/src/memory/retrieval.js +581 -581
- package/src/orchestrator/kai-chen.js +126 -0
- package/src/plugin/manifest.js +553 -553
- package/src/policy/packs.js +144 -144
- package/src/prompt/generator.js +136 -118
- package/src/review/ai-review.js +672 -679
- package/src/review/compliance-pack.js +389 -0
- package/src/review/investor-dd-config.js +54 -0
- package/src/review/investor-dd-file-loop.js +303 -0
- package/src/review/investor-dd-file-router.js +406 -0
- package/src/review/investor-dd-html-report.js +233 -0
- package/src/review/investor-dd-notification.js +120 -0
- package/src/review/investor-dd-orchestrator.js +405 -0
- package/src/review/investor-dd-persona-runner.js +275 -0
- package/src/review/live-validator.js +253 -0
- package/src/review/local-review.js +1351 -1305
- package/src/review/omargate-interactive.js +68 -68
- package/src/review/omargate-orchestrator.js +492 -300
- package/src/review/persona-prompts.js +484 -296
- package/src/review/reconciliation-rules.js +329 -0
- package/src/review/replay.js +235 -235
- package/src/review/report.js +664 -664
- package/src/review/reproducibility-chain.js +136 -0
- package/src/review/scan-modes.js +147 -42
- package/src/review/spec-binding.js +487 -487
- package/src/scaffold/generator.js +67 -67
- package/src/scaffold/templates.js +150 -150
- package/src/scan/generator.js +418 -418
- package/src/scan/gh-secrets.js +107 -107
- package/src/session/agent-registry.js +359 -0
- package/src/session/analytics.js +479 -0
- package/src/session/daemon.js +1396 -0
- package/src/session/file-locks.js +666 -0
- package/src/session/paths.js +37 -0
- package/src/session/recap.js +567 -0
- package/src/session/redact.js +82 -0
- package/src/session/runtime-bridge.js +762 -0
- package/src/session/scoring.js +406 -0
- package/src/session/setup-guides.js +304 -0
- package/src/session/store.js +704 -0
- package/src/session/stream.js +333 -0
- package/src/session/sync.js +753 -0
- package/src/session/tasks.js +1054 -0
- package/src/session/templates.js +188 -0
- package/src/spec/generator.js +619 -519
- package/src/spec/regenerate.js +237 -237
- package/src/spec/templates.js +91 -91
- package/src/swarm/dashboard.js +247 -247
- package/src/swarm/factory.js +363 -363
- package/src/swarm/pentest.js +934 -934
- package/src/swarm/registry.js +419 -419
- package/src/swarm/report.js +158 -158
- package/src/swarm/runtime.js +569 -576
- package/src/swarm/scenario-dsl.js +272 -272
- package/src/telemetry/ledger.js +302 -302
- package/src/telemetry/session-tracker.js +234 -234
- package/src/telemetry/sync.js +203 -203
- package/src/ui/command-hints.js +13 -13
- package/src/ui/markdown.js +220 -220
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
// Barrel export for the .sentinel cross-persona handshake (#A9, spec §5.6).
|
|
2
|
+
// Callers should import from "src/coord" rather than reaching into individual
|
|
3
|
+
// modules so we can reshape internals without rippling through the codebase.
|
|
4
|
+
|
|
5
|
+
export {
|
|
6
|
+
DEFAULT_TTL_S,
|
|
7
|
+
LOCK_SCHEMA_VERSION,
|
|
8
|
+
MAX_TTL_S,
|
|
9
|
+
MIN_TTL_S,
|
|
10
|
+
PERSONA_PRIORITY,
|
|
11
|
+
checkLock,
|
|
12
|
+
detectDeadlock,
|
|
13
|
+
hashLockKey,
|
|
14
|
+
listActiveLocks,
|
|
15
|
+
listWaiters,
|
|
16
|
+
normalizeLockPath,
|
|
17
|
+
outranks,
|
|
18
|
+
priorityIndex,
|
|
19
|
+
releaseLock,
|
|
20
|
+
requestLock,
|
|
21
|
+
} from "./handshake.js";
|
|
22
|
+
|
|
23
|
+
export { appendEvent, readEvents, KNOWN_EVENT_TYPES } from "./events-log.js";
|
|
24
|
+
|
|
25
|
+
export { findCycles, tarjanSCC } from "./tarjan.js";
|
|
26
|
+
|
|
27
|
+
export { lowestPriorityAgent } from "./priority.js";
|
|
28
|
+
|
|
29
|
+
export {
|
|
30
|
+
lockFileFor,
|
|
31
|
+
resolveEventsPath,
|
|
32
|
+
resolveLocksDir,
|
|
33
|
+
resolveSentinelDir,
|
|
34
|
+
resolveWaitsPath,
|
|
35
|
+
} from "./paths.js";
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
// Filesystem layout for the cross-persona LOCK/ACK/RELEASE handshake (#A9).
|
|
2
|
+
//
|
|
3
|
+
// All state lives under `.sentinel/` at the target repo root. This is
|
|
4
|
+
// intentionally *not* `.sentinelayer/sessions/<id>/` (which scopes file locks
|
|
5
|
+
// to a single Senti session) because the handshake is a cross-session
|
|
6
|
+
// coordination primitive: when Omar Gate 2.0 verifies a PR, it reads the
|
|
7
|
+
// same lock files the personas wrote without needing to know their session id.
|
|
8
|
+
|
|
9
|
+
import crypto from "node:crypto";
|
|
10
|
+
import path from "node:path";
|
|
11
|
+
import process from "node:process";
|
|
12
|
+
|
|
13
|
+
const SENTINEL_ROOT = ".sentinel";
|
|
14
|
+
const LOCKS_SUBDIR = "locks";
|
|
15
|
+
const EVENTS_FILE = "events.jsonl";
|
|
16
|
+
const WAITS_FILE = "waits.json";
|
|
17
|
+
const MUTEX_LOCK = ".lock-mutex.lock";
|
|
18
|
+
const EVENTS_LOCK = ".events.lock";
|
|
19
|
+
const WAITS_LOCK = ".waits.lock";
|
|
20
|
+
|
|
21
|
+
export function resolveSentinelDir({ targetPath = process.cwd() } = {}) {
|
|
22
|
+
return path.join(path.resolve(String(targetPath || ".")), SENTINEL_ROOT);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
export function resolveLocksDir({ targetPath = process.cwd() } = {}) {
|
|
26
|
+
return path.join(resolveSentinelDir({ targetPath }), LOCKS_SUBDIR);
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
export function resolveEventsPath({ targetPath = process.cwd() } = {}) {
|
|
30
|
+
return path.join(resolveSentinelDir({ targetPath }), EVENTS_FILE);
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
export function resolveWaitsPath({ targetPath = process.cwd() } = {}) {
|
|
34
|
+
return path.join(resolveSentinelDir({ targetPath }), WAITS_FILE);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export function resolveMutexLockPath({ targetPath = process.cwd() } = {}) {
|
|
38
|
+
return path.join(resolveSentinelDir({ targetPath }), MUTEX_LOCK);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
export function resolveEventsLockPath({ targetPath = process.cwd() } = {}) {
|
|
42
|
+
return path.join(resolveSentinelDir({ targetPath }), EVENTS_LOCK);
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
export function resolveWaitsLockPath({ targetPath = process.cwd() } = {}) {
|
|
46
|
+
return path.join(resolveSentinelDir({ targetPath }), WAITS_LOCK);
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
// Normalize the caller's intended file path into a stable, repo-relative,
|
|
50
|
+
// posix-style string. Absolute paths are relativized against targetPath so
|
|
51
|
+
// the same file produces the same hash across macOS/Linux/Windows workers.
|
|
52
|
+
export function normalizeLockPath(filePath, { targetPath = process.cwd() } = {}) {
|
|
53
|
+
const raw = String(filePath || "").trim();
|
|
54
|
+
if (!raw) {
|
|
55
|
+
throw new Error("path is required.");
|
|
56
|
+
}
|
|
57
|
+
const resolvedTarget = path.resolve(String(targetPath || "."));
|
|
58
|
+
let normalized;
|
|
59
|
+
if (path.isAbsolute(raw)) {
|
|
60
|
+
normalized = path.relative(resolvedTarget, path.resolve(raw));
|
|
61
|
+
} else {
|
|
62
|
+
normalized = raw;
|
|
63
|
+
}
|
|
64
|
+
normalized = normalized.replace(/\\/g, "/").replace(/^\.\/+/, "");
|
|
65
|
+
if (!normalized || normalized === "." || normalized.startsWith("../")) {
|
|
66
|
+
throw new Error("path must be inside the target directory.");
|
|
67
|
+
}
|
|
68
|
+
return normalized;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
export function hashLockKey(normalizedPath) {
|
|
72
|
+
const value = String(normalizedPath || "").trim();
|
|
73
|
+
if (!value) {
|
|
74
|
+
throw new Error("normalizedPath is required.");
|
|
75
|
+
}
|
|
76
|
+
return crypto.createHash("sha256").update(value).digest("hex").slice(0, 16);
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
export function lockFileFor(normalizedPath, { targetPath = process.cwd() } = {}) {
|
|
80
|
+
return path.join(
|
|
81
|
+
resolveLocksDir({ targetPath }),
|
|
82
|
+
`${hashLockKey(normalizedPath)}.lock.json`
|
|
83
|
+
);
|
|
84
|
+
}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
// Persona priority ladder used by the LOCK/ACK/RELEASE handshake (#A9, spec §5.6).
|
|
2
|
+
//
|
|
3
|
+
// Lower index = higher priority. Architects hold the pen on shape decisions;
|
|
4
|
+
// database / auth come next because they gate everything downstream; UI / docs
|
|
5
|
+
// are at the tail because they are the easiest to redo if preempted.
|
|
6
|
+
//
|
|
7
|
+
// The ladder is closed: an unknown agent id sorts *below* every known persona
|
|
8
|
+
// (priorityIndex returns PERSONA_PRIORITY.length) so stray callers cannot
|
|
9
|
+
// accidentally preempt a real persona.
|
|
10
|
+
|
|
11
|
+
export const PERSONA_PRIORITY = Object.freeze([
|
|
12
|
+
"architect",
|
|
13
|
+
"database",
|
|
14
|
+
"auth",
|
|
15
|
+
"backend",
|
|
16
|
+
"frontend",
|
|
17
|
+
"ui",
|
|
18
|
+
"payments",
|
|
19
|
+
"email",
|
|
20
|
+
"integrations",
|
|
21
|
+
"security",
|
|
22
|
+
"test",
|
|
23
|
+
"devops",
|
|
24
|
+
"docs",
|
|
25
|
+
]);
|
|
26
|
+
|
|
27
|
+
function normalizeAgent(agent) {
|
|
28
|
+
return String(agent || "").trim().toLowerCase();
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
export function priorityIndex(agent) {
|
|
32
|
+
const normalized = normalizeAgent(agent);
|
|
33
|
+
if (!normalized) {
|
|
34
|
+
return PERSONA_PRIORITY.length;
|
|
35
|
+
}
|
|
36
|
+
const idx = PERSONA_PRIORITY.indexOf(normalized);
|
|
37
|
+
return idx === -1 ? PERSONA_PRIORITY.length : idx;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
// Returns true if `candidate` strictly outranks `incumbent` — i.e. candidate
|
|
41
|
+
// may preempt incumbent's lock. Equal priorities never preempt (incumbent wins
|
|
42
|
+
// ties to keep the system idempotent under retries).
|
|
43
|
+
export function outranks(candidate, incumbent) {
|
|
44
|
+
return priorityIndex(candidate) < priorityIndex(incumbent);
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
// Given an iterable of agent ids, return the one with the lowest priority —
|
|
48
|
+
// the deadlock-break "victim". Ties resolve by sort order so the choice is
|
|
49
|
+
// deterministic across hosts.
|
|
50
|
+
export function lowestPriorityAgent(agents) {
|
|
51
|
+
const list = Array.from(agents || []).map(normalizeAgent).filter(Boolean);
|
|
52
|
+
if (list.length === 0) {
|
|
53
|
+
return null;
|
|
54
|
+
}
|
|
55
|
+
return list.slice().sort((left, right) => {
|
|
56
|
+
const diff = priorityIndex(right) - priorityIndex(left);
|
|
57
|
+
if (diff !== 0) {
|
|
58
|
+
return diff;
|
|
59
|
+
}
|
|
60
|
+
return left < right ? -1 : left > right ? 1 : 0;
|
|
61
|
+
})[0];
|
|
62
|
+
}
|
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
// Iterative Tarjan strongly-connected components (#A9, spec §5.6).
|
|
2
|
+
//
|
|
3
|
+
// We use an explicit work stack instead of recursion because the wait graph
|
|
4
|
+
// can, in theory, chain across all 13 personas and Node's default stack size
|
|
5
|
+
// is fine but iterative keeps us honest for future growth (scaffold-before-
|
|
6
|
+
// code may run many transient locks in flight).
|
|
7
|
+
//
|
|
8
|
+
// Input: adjacency as { node: [neighbors...] } — missing keys are treated
|
|
9
|
+
// as leaves. Nodes referenced only as neighbors are picked up.
|
|
10
|
+
// Output: list of SCCs, each an array of node ids. Size-1 SCCs without a
|
|
11
|
+
// self-loop are still returned so callers can filter.
|
|
12
|
+
|
|
13
|
+
export function tarjanSCC(graph) {
|
|
14
|
+
const adjacency = normalizeGraph(graph);
|
|
15
|
+
const nodes = Array.from(adjacency.keys());
|
|
16
|
+
|
|
17
|
+
const index = new Map();
|
|
18
|
+
const lowlink = new Map();
|
|
19
|
+
const onStack = new Set();
|
|
20
|
+
const sccStack = [];
|
|
21
|
+
const result = [];
|
|
22
|
+
|
|
23
|
+
let counter = 0;
|
|
24
|
+
|
|
25
|
+
for (const root of nodes) {
|
|
26
|
+
if (index.has(root)) {
|
|
27
|
+
continue;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
// Iterative DFS. Each frame tracks the node plus the index of the next
|
|
31
|
+
// neighbor to visit so we can resume after recursive descent.
|
|
32
|
+
const workStack = [{ node: root, neighborIdx: 0 }];
|
|
33
|
+
index.set(root, counter);
|
|
34
|
+
lowlink.set(root, counter);
|
|
35
|
+
counter += 1;
|
|
36
|
+
sccStack.push(root);
|
|
37
|
+
onStack.add(root);
|
|
38
|
+
|
|
39
|
+
while (workStack.length > 0) {
|
|
40
|
+
const frame = workStack[workStack.length - 1];
|
|
41
|
+
const neighbors = adjacency.get(frame.node) || [];
|
|
42
|
+
|
|
43
|
+
if (frame.neighborIdx < neighbors.length) {
|
|
44
|
+
const next = neighbors[frame.neighborIdx];
|
|
45
|
+
frame.neighborIdx += 1;
|
|
46
|
+
|
|
47
|
+
if (!index.has(next)) {
|
|
48
|
+
index.set(next, counter);
|
|
49
|
+
lowlink.set(next, counter);
|
|
50
|
+
counter += 1;
|
|
51
|
+
sccStack.push(next);
|
|
52
|
+
onStack.add(next);
|
|
53
|
+
workStack.push({ node: next, neighborIdx: 0 });
|
|
54
|
+
} else if (onStack.has(next)) {
|
|
55
|
+
lowlink.set(
|
|
56
|
+
frame.node,
|
|
57
|
+
Math.min(lowlink.get(frame.node), index.get(next))
|
|
58
|
+
);
|
|
59
|
+
}
|
|
60
|
+
continue;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
// Exhausted neighbors — close the frame. If we're an SCC root, pop the
|
|
64
|
+
// component off the stack.
|
|
65
|
+
if (lowlink.get(frame.node) === index.get(frame.node)) {
|
|
66
|
+
const component = [];
|
|
67
|
+
while (sccStack.length > 0) {
|
|
68
|
+
const popped = sccStack.pop();
|
|
69
|
+
onStack.delete(popped);
|
|
70
|
+
component.push(popped);
|
|
71
|
+
if (popped === frame.node) {
|
|
72
|
+
break;
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
result.push(component);
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
workStack.pop();
|
|
79
|
+
if (workStack.length > 0) {
|
|
80
|
+
const parent = workStack[workStack.length - 1];
|
|
81
|
+
lowlink.set(
|
|
82
|
+
parent.node,
|
|
83
|
+
Math.min(lowlink.get(parent.node), lowlink.get(frame.node))
|
|
84
|
+
);
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
return result;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
// Convenience: return only SCCs that represent actual cycles (size > 1, or
|
|
93
|
+
// self-loops of size 1). Useful for the deadlock-detection branch which
|
|
94
|
+
// should ignore every isolated node.
|
|
95
|
+
export function findCycles(graph) {
|
|
96
|
+
const sccs = tarjanSCC(graph);
|
|
97
|
+
const source =
|
|
98
|
+
graph && typeof graph === "object" && !Array.isArray(graph) ? graph : {};
|
|
99
|
+
const cycles = [];
|
|
100
|
+
for (const component of sccs) {
|
|
101
|
+
if (component.length > 1) {
|
|
102
|
+
cycles.push(component);
|
|
103
|
+
continue;
|
|
104
|
+
}
|
|
105
|
+
const [only] = component;
|
|
106
|
+
const rawNeighbors = Array.isArray(source[only]) ? source[only] : [];
|
|
107
|
+
const normalizedNeighbors = rawNeighbors.map((value) =>
|
|
108
|
+
String(value || "").trim()
|
|
109
|
+
);
|
|
110
|
+
if (normalizedNeighbors.includes(only)) {
|
|
111
|
+
cycles.push(component);
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
return cycles;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
function normalizeGraph(graph) {
|
|
118
|
+
const adjacency = new Map();
|
|
119
|
+
const source =
|
|
120
|
+
graph && typeof graph === "object" && !Array.isArray(graph) ? graph : {};
|
|
121
|
+
|
|
122
|
+
for (const [rawKey, rawValue] of Object.entries(source)) {
|
|
123
|
+
const node = String(rawKey || "").trim();
|
|
124
|
+
if (!node) {
|
|
125
|
+
continue;
|
|
126
|
+
}
|
|
127
|
+
const list = Array.isArray(rawValue) ? rawValue : [];
|
|
128
|
+
const normalized = [];
|
|
129
|
+
for (const candidate of list) {
|
|
130
|
+
const neighbor = String(candidate || "").trim();
|
|
131
|
+
if (!neighbor) {
|
|
132
|
+
continue;
|
|
133
|
+
}
|
|
134
|
+
if (!normalized.includes(neighbor)) {
|
|
135
|
+
normalized.push(neighbor);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
const existing = adjacency.get(node) || [];
|
|
139
|
+
for (const neighbor of normalized) {
|
|
140
|
+
if (!existing.includes(neighbor)) {
|
|
141
|
+
existing.push(neighbor);
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
adjacency.set(node, existing);
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
// Any node referenced as a neighbor but not as a key is a leaf — add it so
|
|
148
|
+
// the DFS visits it.
|
|
149
|
+
for (const neighbors of [...adjacency.values()]) {
|
|
150
|
+
for (const neighbor of neighbors) {
|
|
151
|
+
if (!adjacency.has(neighbor)) {
|
|
152
|
+
adjacency.set(neighbor, []);
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
return adjacency;
|
|
157
|
+
}
|