sequant 1.15.0 → 1.15.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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "sequant",
3
3
  "description": "Structured workflow system for Claude Code - GitHub issue resolution with spec, exec, test, and QA phases",
4
- "version": "1.15.0",
4
+ "version": "1.15.1",
5
5
  "author": {
6
6
  "name": "admarble",
7
7
  "email": "github@admarble.com"
@@ -1172,6 +1172,12 @@ export async function runCommand(issues, options) {
1172
1172
  noSmartTests: mergedOptions.noSmartTests ?? false,
1173
1173
  mcp: mcpEnabled,
1174
1174
  };
1175
+ // Propagate verbose mode to UI config so spinners use text-only mode.
1176
+ // This prevents animated spinner control characters from colliding with
1177
+ // verbose console.log() calls from StateManager/MetricsWriter (#282).
1178
+ if (config.verbose) {
1179
+ ui.configure({ verbose: true });
1180
+ }
1175
1181
  // Initialize log writer if JSON logging enabled
1176
1182
  // Default: enabled via settings (logJson: true), can be disabled with --no-log
1177
1183
  let logWriter = null;
@@ -93,9 +93,6 @@ export class MetricsWriter {
93
93
  fs.renameSync(tempPath, this.metricsPath);
94
94
  // Update cache
95
95
  this.cachedMetrics = metrics;
96
- if (this.verbose) {
97
- console.log(`📊 Metrics saved: ${this.metricsPath}`);
98
- }
99
96
  }
100
97
  catch (error) {
101
98
  // Clean up temp file on error
@@ -95,9 +95,6 @@ export class StateManager {
95
95
  fs.renameSync(tempPath, this.statePath);
96
96
  // Update cache
97
97
  this.cachedState = state;
98
- if (this.verbose) {
99
- console.log(`📊 State saved: ${this.statePath}`);
100
- }
101
98
  }
102
99
  catch (error) {
103
100
  // Clean up temp file on error
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sequant",
3
- "version": "1.15.0",
3
+ "version": "1.15.1",
4
4
  "description": "Quantize your development workflow - Sequential AI phases with quality gates",
5
5
  "type": "module",
6
6
  "bin": {