@sellable/install 0.1.701 → 0.1.703
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/container/Dockerfile +4 -4
- package/container/README.md +1 -1
- package/lib/sellable-agent/fly-customer-image/Dockerfile +1 -1
- package/lib/sellable-agent/fly-customer-image/customer-runtime.mjs +56 -1
- package/lib/sellable-agent/hermes-memory-snapshot.mjs +85 -33
- package/lib/sellable-agent/host-bootstrap.mjs +1 -1
- package/lib/sellable-agent/host-worker.mjs +1 -1
- package/lib/sellable-agent/profile-materializer.mjs +1 -1
- package/lib/sellable-agent/provisioning-adapter.mjs +1 -1
- package/package.json +1 -1
package/container/Dockerfile
CHANGED
|
@@ -3,12 +3,12 @@ FROM ${HERMES_IMAGE}
|
|
|
3
3
|
|
|
4
4
|
USER root
|
|
5
5
|
|
|
6
|
-
ARG INSTALLER_PACKAGE=@sellable/install@0.1.
|
|
6
|
+
ARG INSTALLER_PACKAGE=@sellable/install@0.1.703
|
|
7
7
|
ARG MCP_PACKAGE=@sellable/mcp@0.1.905
|
|
8
8
|
ARG INSTALLER_INTEGRITY
|
|
9
9
|
ARG MCP_INTEGRITY=sha512-WBx3m+OWplwYpR3/Kk/fbc3xe33kdP/sarB6aiX426qmyYAL6KvnhIfmA4+pCNkvsfcx9IihC0quFrsaUimUhw==
|
|
10
10
|
|
|
11
|
-
RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.
|
|
11
|
+
RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.703" \
|
|
12
12
|
&& test "${MCP_PACKAGE}" = "@sellable/mcp@0.1.905" \
|
|
13
13
|
&& test -n "${INSTALLER_INTEGRITY}" \
|
|
14
14
|
&& test "$(npm view "${INSTALLER_PACKAGE}" dist.integrity)" = "${INSTALLER_INTEGRITY}" \
|
|
@@ -23,9 +23,9 @@ RUN test "${INSTALLER_PACKAGE}" = "@sellable/install@0.1.701" \
|
|
|
23
23
|
&& mkdir -p /opt/sellable-agent/install-root /opt/sellable-agent/mcp-root \
|
|
24
24
|
&& npm install --prefix /opt/sellable-agent/install-root --omit=dev --ignore-scripts --no-audit --no-fund "${INSTALLER_PACKAGE}" \
|
|
25
25
|
&& npm install --prefix /opt/sellable-agent/mcp-root --omit=dev --ignore-scripts --no-audit --no-fund "${MCP_PACKAGE}" \
|
|
26
|
-
&& node --input-type=module -e "import { readFileSync } from 'node:fs'; const install = JSON.parse(readFileSync('/opt/sellable-agent/install-root/node_modules/@sellable/install/package.json')); const mcp = JSON.parse(readFileSync('/opt/sellable-agent/mcp-root/node_modules/@sellable/mcp/package.json')); if (install.name !== '@sellable/install' || install.version !== '0.1.
|
|
26
|
+
&& node --input-type=module -e "import { readFileSync } from 'node:fs'; const install = JSON.parse(readFileSync('/opt/sellable-agent/install-root/node_modules/@sellable/install/package.json')); const mcp = JSON.parse(readFileSync('/opt/sellable-agent/mcp-root/node_modules/@sellable/mcp/package.json')); if (install.name !== '@sellable/install' || install.version !== '0.1.703' || mcp.name !== '@sellable/mcp' || mcp.version !== '0.1.905') throw new Error('package identity rejected');" \
|
|
27
27
|
&& node --input-type=module -e "import { buildExternalRuntimeClosure } from '/opt/sellable-agent/install-root/node_modules/@sellable/install/lib/sellable-agent/external-runtime-builder.mjs'; const built = buildExternalRuntimeClosure({ mcpPackageRoot: '/opt/sellable-agent/mcp-root/node_modules/@sellable/mcp', mcpNodeModulesRoot: '/opt/sellable-agent/mcp-root/node_modules', hermesSourceRoot: '/opt/hermes', ownerUid: 0, ownerGid: 0 }); if (!built.closureDigest) throw new Error('runtime closure rejected');" \
|
|
28
|
-
&& node --input-type=module -e "import { chmodSync, writeFileSync } from 'node:fs'; const release = { installerPackage: '@sellable/install@0.1.
|
|
28
|
+
&& node --input-type=module -e "import { chmodSync, writeFileSync } from 'node:fs'; const release = { installerPackage: '@sellable/install@0.1.703', installerIntegrity: process.argv[1], mcpPackage: '@sellable/mcp@0.1.905', mcpIntegrity: process.argv[2] }; writeFileSync('/opt/sellable-agent/release.json', JSON.stringify(release) + '\\n', { mode: 0o444 }); chmodSync('/opt/sellable-agent/release.json', 0o444);" "${INSTALLER_INTEGRITY}" "${MCP_INTEGRITY}" \
|
|
29
29
|
&& npm cache clean --force
|
|
30
30
|
|
|
31
31
|
COPY entrypoint.sh /usr/local/bin/sellable-agent-container-entrypoint
|
package/container/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
This image is a dedicated Agent worker/runtime boundary beside an existing Hermes dashboard. It never replaces or reconfigures the dashboard container.
|
|
4
4
|
|
|
5
5
|
Build from this directory after
|
|
6
|
-
`@sellable/install@0.1.
|
|
6
|
+
`@sellable/install@0.1.703` is
|
|
7
7
|
published:
|
|
8
8
|
|
|
9
9
|
```sh
|
|
@@ -8,7 +8,7 @@ ENV PLAYWRIGHT_BROWSERS_PATH=/opt/hermes/.playwright
|
|
|
8
8
|
|
|
9
9
|
ARG MCP_PACKAGE=@sellable/mcp@0.1.905
|
|
10
10
|
ARG MCP_INTEGRITY=sha512-WBx3m+OWplwYpR3/Kk/fbc3xe33kdP/sarB6aiX426qmyYAL6KvnhIfmA4+pCNkvsfcx9IihC0quFrsaUimUhw==
|
|
11
|
-
ARG INSTALLER_PACKAGE=@sellable/install@0.1.
|
|
11
|
+
ARG INSTALLER_PACKAGE=@sellable/install@0.1.703
|
|
12
12
|
ARG ADMIN_MCP_PACKAGE=@sellable/admin-mcp@0.1.186-wip.phase158.20260802034727
|
|
13
13
|
ARG ADMIN_MCP_INTEGRITY=sha512-qYNew5wd2IfgVcp1UYOG9QvpF/8Mx19YJ5HQtMKzvSfUf3evePjtaKsoXLf2C/GUJ5QlLlHJo84VWOI3V01+9A==
|
|
14
14
|
ARG TUS_JS_CLIENT_VERSION=4.3.1
|
|
@@ -105,7 +105,7 @@ const RUNTIME_GENERATION = Number(
|
|
|
105
105
|
const BOOT_SESSION_ID = randomUUID();
|
|
106
106
|
const HERMES_VERSION = process.env.SELLABLE_AGENT_HERMES_VERSION ?? "0.20.4";
|
|
107
107
|
const INSTALLER_PACKAGE =
|
|
108
|
-
process.env.SELLABLE_AGENT_INSTALLER_PACKAGE ?? "@sellable/install@0.1.
|
|
108
|
+
process.env.SELLABLE_AGENT_INSTALLER_PACKAGE ?? "@sellable/install@0.1.703";
|
|
109
109
|
const MCP_PACKAGE =
|
|
110
110
|
process.env.SELLABLE_AGENT_MCP_PACKAGE ?? "@sellable/mcp@0.1.905";
|
|
111
111
|
const DEFAULT_PROFILE_BUNDLE_ROOT =
|
|
@@ -977,6 +977,9 @@ function endpointCompletionBody({
|
|
|
977
977
|
attemptStatus,
|
|
978
978
|
status,
|
|
979
979
|
output = null,
|
|
980
|
+
productContractDigest = null,
|
|
981
|
+
productProjectedOutput = null,
|
|
982
|
+
productProjectedOutputDigest = null,
|
|
980
983
|
positiveCancellation = false,
|
|
981
984
|
hasEffectIntent = false,
|
|
982
985
|
now,
|
|
@@ -995,12 +998,52 @@ function endpointCompletionBody({
|
|
|
995
998
|
status,
|
|
996
999
|
canonicalOutput: output,
|
|
997
1000
|
canonicalOutputDigest,
|
|
1001
|
+
...(productContractDigest === null
|
|
1002
|
+
? {}
|
|
1003
|
+
: {
|
|
1004
|
+
productContractDigest,
|
|
1005
|
+
productProjectedOutput,
|
|
1006
|
+
productProjectedOutputDigest,
|
|
1007
|
+
}),
|
|
998
1008
|
positiveCancellation,
|
|
999
1009
|
hasEffectIntent,
|
|
1000
1010
|
completedAt: now().toISOString(),
|
|
1001
1011
|
};
|
|
1002
1012
|
}
|
|
1003
1013
|
|
|
1014
|
+
function endpointProductProjection(productExecution, output) {
|
|
1015
|
+
if (productExecution == null) return { ok: true, completion: {} };
|
|
1016
|
+
const message = output?.message;
|
|
1017
|
+
const candidate = message?.candidate;
|
|
1018
|
+
const subject = message?.subject;
|
|
1019
|
+
const hasSubject = typeof subject === "string";
|
|
1020
|
+
if (
|
|
1021
|
+
!productExecution ||
|
|
1022
|
+
typeof productExecution !== "object" ||
|
|
1023
|
+
Array.isArray(productExecution) ||
|
|
1024
|
+
!ENDPOINT_DIGEST.test(productExecution.contractDigest ?? "") ||
|
|
1025
|
+
!["OPENER", "REPLY", "FOLLOW_UP"].includes(productExecution.workKind) ||
|
|
1026
|
+
typeof productExecution.subjectRequired !== "boolean" ||
|
|
1027
|
+
typeof candidate !== "string" ||
|
|
1028
|
+
candidate.length < 1 ||
|
|
1029
|
+
hasSubject !== productExecution.subjectRequired
|
|
1030
|
+
) {
|
|
1031
|
+
return { ok: false };
|
|
1032
|
+
}
|
|
1033
|
+
const projectedOutput = productExecution.subjectRequired
|
|
1034
|
+
? { subject, body: candidate }
|
|
1035
|
+
: { body: candidate };
|
|
1036
|
+
return {
|
|
1037
|
+
ok: true,
|
|
1038
|
+
completion: {
|
|
1039
|
+
productContractDigest: productExecution.contractDigest,
|
|
1040
|
+
productProjectedOutput: projectedOutput,
|
|
1041
|
+
productProjectedOutputDigest:
|
|
1042
|
+
endpointCanonicalOutputDigest(projectedOutput),
|
|
1043
|
+
},
|
|
1044
|
+
};
|
|
1045
|
+
}
|
|
1046
|
+
|
|
1004
1047
|
function endpointPendingControl(value) {
|
|
1005
1048
|
if (value === null) return null;
|
|
1006
1049
|
const approvalKeys = [
|
|
@@ -1614,10 +1657,22 @@ export function createCustomerEndpointRelay(options = {}) {
|
|
|
1614
1657
|
// a second completion or expose the late output as canonical.
|
|
1615
1658
|
return { ok: true, code: "LATE_NOTICE_ONLY" };
|
|
1616
1659
|
}
|
|
1660
|
+
const productProjection = endpointProductProjection(
|
|
1661
|
+
claim.run.productExecution,
|
|
1662
|
+
terminalEvent.output
|
|
1663
|
+
);
|
|
1664
|
+
if (!productProjection.ok) {
|
|
1665
|
+
await complete(claim, identity, {
|
|
1666
|
+
attemptStatus: "FAILED",
|
|
1667
|
+
status: "OUTPUT_CONTRACT_FAILED",
|
|
1668
|
+
});
|
|
1669
|
+
return { ok: false, code: "OUTPUT_CONTRACT_FAILED" };
|
|
1670
|
+
}
|
|
1617
1671
|
await complete(claim, identity, {
|
|
1618
1672
|
attemptStatus: "SUCCEEDED",
|
|
1619
1673
|
status: "SUCCEEDED",
|
|
1620
1674
|
output: terminalEvent.output,
|
|
1675
|
+
...productProjection.completion,
|
|
1621
1676
|
});
|
|
1622
1677
|
return { ok: true, code: "SUCCEEDED" };
|
|
1623
1678
|
}
|
|
@@ -18,6 +18,7 @@ import {
|
|
|
18
18
|
rmSync,
|
|
19
19
|
writeFileSync,
|
|
20
20
|
} from "node:fs";
|
|
21
|
+
import { tmpdir } from "node:os";
|
|
21
22
|
import { basename, dirname, isAbsolute, join, resolve } from "node:path";
|
|
22
23
|
import { promisify } from "node:util";
|
|
23
24
|
import { parseDocument } from "yaml";
|
|
@@ -920,14 +921,17 @@ export async function compactHermesSnapshotStateDb({
|
|
|
920
921
|
targetPath,
|
|
921
922
|
retentionHours = HERMES_SNAPSHOT_CRON_SESSION_RETENTION_HOURS,
|
|
922
923
|
hermesPython = HERMES_PYTHON,
|
|
923
|
-
|
|
924
|
+
scratchDirectory = tmpdir(),
|
|
925
|
+
runChild = /** @type {typeof runBoundedHermesChild | undefined} */ (undefined),
|
|
924
926
|
}) {
|
|
925
927
|
if (
|
|
926
928
|
!isAbsolute(sourcePath) ||
|
|
927
929
|
!isAbsolute(targetPath) ||
|
|
930
|
+
!isAbsolute(scratchDirectory) ||
|
|
928
931
|
resolve(sourcePath) === resolve(targetPath) ||
|
|
929
932
|
!existsSync(sourcePath) ||
|
|
930
933
|
existsSync(targetPath) ||
|
|
934
|
+
!existsSync(scratchDirectory) ||
|
|
931
935
|
!Number.isSafeInteger(retentionHours) ||
|
|
932
936
|
retentionHours < 1 ||
|
|
933
937
|
retentionHours > 30 * 24
|
|
@@ -935,43 +939,91 @@ export async function compactHermesSnapshotStateDb({
|
|
|
935
939
|
throw new Error("hermes_snapshot_state_db_compaction_rejected");
|
|
936
940
|
}
|
|
937
941
|
regularFile(sourcePath);
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
args: [
|
|
942
|
-
"-c",
|
|
943
|
-
STATE_DB_COMPACTION_SCRIPT,
|
|
944
|
-
sourcePath,
|
|
945
|
-
targetPath,
|
|
946
|
-
String(retentionHours),
|
|
947
|
-
],
|
|
948
|
-
env: { ...process.env, NO_COLOR: "1" },
|
|
949
|
-
shell: false,
|
|
950
|
-
timeoutMs: STATE_DB_COMPACTION_TIMEOUT_MS,
|
|
951
|
-
maxOutputBytes: 64 * 1024,
|
|
952
|
-
});
|
|
953
|
-
if (childFailed(result) || !existsSync(targetPath)) {
|
|
954
|
-
throw new Error("hermes_snapshot_state_db_compaction_failed");
|
|
942
|
+
const scratchStat = lstatSync(scratchDirectory);
|
|
943
|
+
if (scratchStat.isSymbolicLink() || !scratchStat.isDirectory()) {
|
|
944
|
+
throw new Error("hermes_snapshot_state_db_compaction_rejected");
|
|
955
945
|
}
|
|
956
|
-
|
|
957
|
-
let
|
|
946
|
+
mkdirSync(dirname(targetPath), { recursive: true, mode: 0o700 });
|
|
947
|
+
let scratchRoot;
|
|
948
|
+
let finalTemporaryPath;
|
|
949
|
+
let targetCreated = false;
|
|
958
950
|
try {
|
|
959
|
-
|
|
951
|
+
// Keep SQLite's destination plus VACUUM journal on the Machine's
|
|
952
|
+
// ephemeral root filesystem. Building both beside the protected staging
|
|
953
|
+
// tree can briefly require multiple full state.db copies on the small
|
|
954
|
+
// persistent Fly volume and strand an otherwise healthy Upgrade at
|
|
955
|
+
// BACKING_UP with ENOSPC. Only the verified compact database crosses back
|
|
956
|
+
// onto the volume.
|
|
957
|
+
scratchRoot = mkdtempSync(
|
|
958
|
+
join(scratchDirectory, ".sellable-hermes-state-db-")
|
|
959
|
+
);
|
|
960
|
+
chmodSync(scratchRoot, 0o700);
|
|
961
|
+
const scratchTargetPath = join(scratchRoot, "state.db");
|
|
962
|
+
const result = await childRunner(runChild)({
|
|
963
|
+
command: hermesPython,
|
|
964
|
+
args: [
|
|
965
|
+
"-c",
|
|
966
|
+
STATE_DB_COMPACTION_SCRIPT,
|
|
967
|
+
sourcePath,
|
|
968
|
+
scratchTargetPath,
|
|
969
|
+
String(retentionHours),
|
|
970
|
+
],
|
|
971
|
+
env: { ...process.env, NO_COLOR: "1" },
|
|
972
|
+
shell: false,
|
|
973
|
+
timeoutMs: STATE_DB_COMPACTION_TIMEOUT_MS,
|
|
974
|
+
maxOutputBytes: 64 * 1024,
|
|
975
|
+
});
|
|
976
|
+
if (childFailed(result) || !existsSync(scratchTargetPath)) {
|
|
977
|
+
throw new Error("hermes_snapshot_state_db_compaction_failed");
|
|
978
|
+
}
|
|
979
|
+
const scratchTarget = regularFile(scratchTargetPath);
|
|
980
|
+
const summary = JSON.parse(String(result.stdout ?? ""));
|
|
981
|
+
if (
|
|
982
|
+
summary?.ok !== true ||
|
|
983
|
+
summary.retentionHours !== retentionHours ||
|
|
984
|
+
!Number.isSafeInteger(summary.prunedSessions) ||
|
|
985
|
+
summary.prunedSessions < 0 ||
|
|
986
|
+
!Number.isSafeInteger(summary.prunedMessages) ||
|
|
987
|
+
summary.prunedMessages < 0 ||
|
|
988
|
+
summary.archiveStateBytes !== scratchTarget.size
|
|
989
|
+
) {
|
|
990
|
+
throw new Error("hermes_snapshot_state_db_compaction_failed");
|
|
991
|
+
}
|
|
992
|
+
finalTemporaryPath = join(
|
|
993
|
+
dirname(targetPath),
|
|
994
|
+
`.${basename(targetPath)}.${randomUUID()}`
|
|
995
|
+
);
|
|
996
|
+
copyFileSync(
|
|
997
|
+
scratchTargetPath,
|
|
998
|
+
finalTemporaryPath,
|
|
999
|
+
constants.COPYFILE_EXCL
|
|
1000
|
+
);
|
|
1001
|
+
chmodSync(finalTemporaryPath, 0o600);
|
|
1002
|
+
const targetFd = openSync(finalTemporaryPath, constants.O_RDONLY);
|
|
1003
|
+
try {
|
|
1004
|
+
fsyncSync(targetFd);
|
|
1005
|
+
} finally {
|
|
1006
|
+
closeSync(targetFd);
|
|
1007
|
+
}
|
|
1008
|
+
// link(2) gives this staged publication no-replace semantics. If another
|
|
1009
|
+
// writer created targetPath after admission, fail without deleting or
|
|
1010
|
+
// overwriting the other writer's file.
|
|
1011
|
+
linkSync(finalTemporaryPath, targetPath);
|
|
1012
|
+
targetCreated = true;
|
|
1013
|
+
rmSync(finalTemporaryPath, { force: true });
|
|
1014
|
+
finalTemporaryPath = undefined;
|
|
1015
|
+
fsyncDirectory(dirname(targetPath));
|
|
1016
|
+
if (regularFile(targetPath).size !== scratchTarget.size) {
|
|
1017
|
+
throw new Error("hermes_snapshot_state_db_compaction_failed");
|
|
1018
|
+
}
|
|
1019
|
+
return summary;
|
|
960
1020
|
} catch {
|
|
1021
|
+
if (targetCreated) rmSync(targetPath, { force: true });
|
|
961
1022
|
throw new Error("hermes_snapshot_state_db_compaction_failed");
|
|
1023
|
+
} finally {
|
|
1024
|
+
if (finalTemporaryPath) rmSync(finalTemporaryPath, { force: true });
|
|
1025
|
+
if (scratchRoot) rmSync(scratchRoot, { recursive: true, force: true });
|
|
962
1026
|
}
|
|
963
|
-
if (
|
|
964
|
-
summary?.ok !== true ||
|
|
965
|
-
summary.retentionHours !== retentionHours ||
|
|
966
|
-
!Number.isSafeInteger(summary.prunedSessions) ||
|
|
967
|
-
summary.prunedSessions < 0 ||
|
|
968
|
-
!Number.isSafeInteger(summary.prunedMessages) ||
|
|
969
|
-
summary.prunedMessages < 0 ||
|
|
970
|
-
summary.archiveStateBytes !== target.size
|
|
971
|
-
) {
|
|
972
|
-
throw new Error("hermes_snapshot_state_db_compaction_failed");
|
|
973
|
-
}
|
|
974
|
-
return summary;
|
|
975
1027
|
}
|
|
976
1028
|
|
|
977
1029
|
function nativeSummaryAccepted(result, complete, incomplete) {
|
|
@@ -38,7 +38,7 @@ import { installAgentHostServices } from "./service-installer.mjs";
|
|
|
38
38
|
const PACKAGE_ROOT = resolve(dirname(fileURLToPath(import.meta.url)), "../..");
|
|
39
39
|
const VERSION = "sellable-agent-host-bootstrap/v1";
|
|
40
40
|
const RECEIPT_VERSION = "sellable-agent-host-registration/v1";
|
|
41
|
-
const INSTALLER_PACKAGE = "@sellable/install@0.1.
|
|
41
|
+
const INSTALLER_PACKAGE = "@sellable/install@0.1.703";
|
|
42
42
|
const MCP_PACKAGE = "@sellable/mcp@0.1.905";
|
|
43
43
|
const HERMES_VERSION = "0.18.0";
|
|
44
44
|
const SHA256 = /^[a-f0-9]{64}$/;
|
|
@@ -1547,7 +1547,7 @@ export function compileClaimToProfileDesired(activeClaim, config) {
|
|
|
1547
1547
|
pinned.hermesCli !== "hermes" ||
|
|
1548
1548
|
pinned.hermesVersion !== "0.18.0" ||
|
|
1549
1549
|
pinned.installerPackage !==
|
|
1550
|
-
"@sellable/install@0.1.
|
|
1550
|
+
"@sellable/install@0.1.703" ||
|
|
1551
1551
|
pinned.mcpPackage !== "@sellable/mcp@0.1.905" ||
|
|
1552
1552
|
!Array.isArray(policy.toolInclude) ||
|
|
1553
1553
|
policy.toolInclude.length === 0 ||
|
|
@@ -283,7 +283,7 @@ function validateDesired(desired) {
|
|
|
283
283
|
desired.hermesCli !== "hermes" ||
|
|
284
284
|
desired.hermesVersion !== "0.18.0" ||
|
|
285
285
|
desired.installerPackage !==
|
|
286
|
-
"@sellable/install@0.1.
|
|
286
|
+
"@sellable/install@0.1.703" ||
|
|
287
287
|
desired.mcpPackage !== "@sellable/mcp@0.1.905" ||
|
|
288
288
|
!Array.isArray(desired.toolInclude) ||
|
|
289
289
|
desired.toolInclude.length === 0 ||
|
|
@@ -26,7 +26,7 @@ import { deriveContainedProfileId } from "./profile-materializer.mjs";
|
|
|
26
26
|
|
|
27
27
|
export const PROVISIONING_ACTION = "PROVISION_HERMES_PROFILE";
|
|
28
28
|
export const PINNED_INSTALL_PACKAGE =
|
|
29
|
-
"@sellable/install@0.1.
|
|
29
|
+
"@sellable/install@0.1.703";
|
|
30
30
|
export const PINNED_MCP_PACKAGE = "@sellable/mcp@0.1.905";
|
|
31
31
|
const PINNED_INSTALL_VERSION = PINNED_INSTALL_PACKAGE.slice(
|
|
32
32
|
PINNED_INSTALL_PACKAGE.lastIndexOf("@") + 1
|