@sechroom/cli 2026.7.1 → 2026.7.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/index.js +8 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3194,7 +3194,10 @@ async function applyClient(cfg, setup, target, opts) {
|
|
|
3194
3194
|
if (!section) {
|
|
3195
3195
|
actions.push({ kind: "instruction", path: target.instruction.path, status: "skipped", note: `no instruction-file section on surface '${target.instruction.surfaceKey}'` });
|
|
3196
3196
|
} else {
|
|
3197
|
-
const resolved = await
|
|
3197
|
+
const resolved = await withSpinner(
|
|
3198
|
+
`Resolving ${target.label} agent instructions`,
|
|
3199
|
+
() => resolveInstruction(cfg, section, opts.personalWorkspaceId)
|
|
3200
|
+
);
|
|
3198
3201
|
if (!resolved) {
|
|
3199
3202
|
actions.push({ kind: "instruction", path: target.instruction.path, status: "skipped", note: "no role template found in this tenant \u2014 install the SEM Starter bundle, then re-run `sechroom setup agent-files`" });
|
|
3200
3203
|
} else {
|
|
@@ -3209,7 +3212,10 @@ async function applyClient(cfg, setup, target, opts) {
|
|
|
3209
3212
|
}
|
|
3210
3213
|
const conventionsSection = findSection(surface, SectionType.WorkspaceConventions);
|
|
3211
3214
|
if (conventionsSection) {
|
|
3212
|
-
const conventions = await
|
|
3215
|
+
const conventions = await withSpinner(
|
|
3216
|
+
`Composing ${target.label} workspace conventions`,
|
|
3217
|
+
() => resolveWorkspaceConventions(cfg, conventionsSection)
|
|
3218
|
+
);
|
|
3213
3219
|
if (conventions) {
|
|
3214
3220
|
const action = applyBlock(
|
|
3215
3221
|
target.instruction.path,
|
package/package.json
CHANGED