sequant 1.20.0 → 1.20.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.20.0",
4
+ "version": "1.20.1",
5
5
  "author": {
6
6
  "name": "sequant-io",
7
7
  "email": "hello@sequant.io"
package/dist/bin/cli.js CHANGED
@@ -137,7 +137,7 @@ program
137
137
  .option("--no-smart-tests", "Disable smart test detection")
138
138
  .option("--testgen", "Run testgen phase after spec")
139
139
  .option("--quiet", "Suppress version warnings and non-essential output")
140
- .option("--chain", "Chain issues: each branches from previous (requires --sequential)")
140
+ .option("--chain", "Chain issues: each branches from previous (implies --sequential)")
141
141
  .option("--qa-gate", "Wait for QA pass before starting next issue in chain (requires --chain)")
142
142
  .option("--base <branch>", "Base branch for worktree creation (default: main or settings.run.defaultBase)")
143
143
  .option("--no-mcp", "Disable MCP server injection in headless mode")
@@ -110,16 +110,14 @@ export async function runCommand(issues, options) {
110
110
  console.log(chalk.gray("\nUsage: npx sequant run <issues...> [options]"));
111
111
  console.log(chalk.gray("Example: npx sequant run 1 2 3 --sequential"));
112
112
  console.log(chalk.gray('Batch example: npx sequant run --batch "1 2" --batch "3"'));
113
- console.log(chalk.gray("Chain example: npx sequant run 1 2 3 --sequential --chain"));
113
+ console.log(chalk.gray("Chain example: npx sequant run 1 2 3 --chain"));
114
114
  return;
115
115
  }
116
116
  // Validate chain mode requirements
117
117
  if (mergedOptions.chain) {
118
+ // Chain mode is inherently sequential — imply --sequential automatically
118
119
  if (!mergedOptions.sequential) {
119
- console.log(chalk.red("❌ --chain requires --sequential flag"));
120
- console.log(chalk.gray(" Chain mode executes issues sequentially, each branching from the previous."));
121
- console.log(chalk.gray(" Usage: npx sequant run 1 2 3 --sequential --chain"));
122
- return;
120
+ mergedOptions.sequential = true;
123
121
  }
124
122
  if (batches) {
125
123
  console.log(chalk.red("❌ --chain cannot be used with --batch"));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sequant",
3
- "version": "1.20.0",
3
+ "version": "1.20.1",
4
4
  "description": "Quantize your development workflow - Sequential AI phases with quality gates",
5
5
  "type": "module",
6
6
  "bin": {