@amaster.ai/employee-runtime-connector 0.1.1-beta.87 → 0.1.1-beta.89
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.
|
@@ -7295,13 +7295,15 @@ function companyInitializationAuthoritySection(context) {
|
|
|
7295
7295
|
}) : [];
|
|
7296
7296
|
const artifactState = asRecord(authority.organizationPlanArtifactState);
|
|
7297
7297
|
const artifactStateKind = readString(artifactState.kind);
|
|
7298
|
+
const mode = readString(authority.mode) ?? "standard";
|
|
7299
|
+
const agentCountLine = mode === "solo" ? `- Agent bounds: ${minAgentCount}..${maxAgentCount}; locked target ${targetAgentCount}` : `- Agent count: minimum ${minAgentCount}; locked target ${targetAgentCount}; no fixed initialization maximum`;
|
|
7298
7300
|
const content = [
|
|
7299
7301
|
"This is the current Server-owned Company initialization authority. It overrides continuation summaries, comments, model plans, and prior-run next-action prose.",
|
|
7300
7302
|
`- Initialization id: ${JSON.stringify(initializationId)}`,
|
|
7301
7303
|
`- Input revision: ${revision}`,
|
|
7302
7304
|
`- Organization version: ${organizationVersion}`,
|
|
7303
|
-
`- Team mode: ${JSON.stringify(
|
|
7304
|
-
|
|
7305
|
+
`- Team mode: ${JSON.stringify(mode)}`,
|
|
7306
|
+
agentCountLine,
|
|
7305
7307
|
`- Organization Plan artifact state: ${artifactStateKind ?? "unknown"}`,
|
|
7306
7308
|
`- Server-authoritative remainingReadyPostconditions: ${JSON.stringify(remainingReadyPostconditions)}`,
|
|
7307
7309
|
"- Ready postconditions freshness: fresh",
|
|
@@ -11833,7 +11835,7 @@ var source_acquisition_compatibility_default = {
|
|
|
11833
11835
|
};
|
|
11834
11836
|
|
|
11835
11837
|
// src/amaster-runtime-daemon.mjs
|
|
11836
|
-
var CONNECTOR_VERSION = "0.1.1-beta.
|
|
11838
|
+
var CONNECTOR_VERSION = "0.1.1-beta.89";
|
|
11837
11839
|
var CONNECTOR_CONTRACT_VERSION = "2026-06-04.v1";
|
|
11838
11840
|
var SOURCE_ACQUISITION_CAPABILITY = source_acquisition_compatibility_default.profileVersion;
|
|
11839
11841
|
var daemonRequire = createRequire(import.meta.url);
|
package/dist/amaster-runtime.mjs
CHANGED
|
@@ -6,7 +6,7 @@ import { basename, dirname, join, resolve } from "node:path";
|
|
|
6
6
|
import { homedir, hostname } from "node:os";
|
|
7
7
|
import { fileURLToPath } from "node:url";
|
|
8
8
|
|
|
9
|
-
const CONNECTOR_VERSION = "0.1.1-beta.
|
|
9
|
+
const CONNECTOR_VERSION = "0.1.1-beta.89";
|
|
10
10
|
|
|
11
11
|
const CAPABILITIES = [
|
|
12
12
|
"remote_registration",
|