@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.
Files changed (2) hide show
  1. package/dist/index.js +8 -2
  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 resolveInstruction(cfg, section, opts.personalWorkspaceId);
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 resolveWorkspaceConventions(cfg, conventionsSection);
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sechroom/cli",
3
- "version": "2026.7.1",
3
+ "version": "2026.7.2",
4
4
  "description": "Sechroom CLI — a thin, generated client over the Sechroom HTTP API. An agent/human surface alongside MCP.",
5
5
  "type": "module",
6
6
  "license": "UNLICENSED",