sequant 2.6.0 → 2.6.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 (54) hide show
  1. package/.claude-plugin/marketplace.json +1 -1
  2. package/.claude-plugin/plugin.json +1 -1
  3. package/README.md +5 -0
  4. package/dist/bin/cli.js +27 -4
  5. package/dist/marketplace/external_plugins/sequant/.claude-plugin/plugin.json +1 -1
  6. package/dist/marketplace/external_plugins/sequant/skills/assess/SKILL.md +3 -0
  7. package/dist/marketplace/external_plugins/sequant/skills/clean/SKILL.md +3 -0
  8. package/dist/marketplace/external_plugins/sequant/skills/docs/SKILL.md +3 -0
  9. package/dist/marketplace/external_plugins/sequant/skills/exec/SKILL.md +3 -0
  10. package/dist/marketplace/external_plugins/sequant/skills/fullsolve/SKILL.md +3 -0
  11. package/dist/marketplace/external_plugins/sequant/skills/improve/SKILL.md +4 -1
  12. package/dist/marketplace/external_plugins/sequant/skills/loop/SKILL.md +3 -0
  13. package/dist/marketplace/external_plugins/sequant/skills/merger/SKILL.md +3 -0
  14. package/dist/marketplace/external_plugins/sequant/skills/qa/SKILL.md +3 -0
  15. package/dist/marketplace/external_plugins/sequant/skills/reflect/SKILL.md +3 -0
  16. package/dist/marketplace/external_plugins/sequant/skills/security-review/SKILL.md +3 -0
  17. package/dist/marketplace/external_plugins/sequant/skills/setup/SKILL.md +3 -0
  18. package/dist/marketplace/external_plugins/sequant/skills/solve/SKILL.md +3 -0
  19. package/dist/marketplace/external_plugins/sequant/skills/spec/SKILL.md +3 -0
  20. package/dist/marketplace/external_plugins/sequant/skills/test/SKILL.md +3 -0
  21. package/dist/marketplace/external_plugins/sequant/skills/testgen/SKILL.md +3 -0
  22. package/dist/marketplace/external_plugins/sequant/skills/verify/SKILL.md +3 -0
  23. package/dist/src/commands/ready.js +1 -1
  24. package/dist/src/commands/run.js +1 -1
  25. package/dist/src/commands/sync.d.ts +43 -5
  26. package/dist/src/commands/sync.js +188 -17
  27. package/dist/src/commands/update.d.ts +1 -0
  28. package/dist/src/commands/update.js +73 -68
  29. package/dist/src/lib/templates.d.ts +50 -0
  30. package/dist/src/lib/templates.js +134 -15
  31. package/dist/src/ui/tui/App.js +24 -2
  32. package/dist/src/ui/tui/IssueBox.js +4 -4
  33. package/dist/src/ui/tui/load.d.ts +25 -0
  34. package/dist/src/ui/tui/load.js +41 -0
  35. package/dist/src/ui/tui/theme.d.ts +21 -3
  36. package/dist/src/ui/tui/theme.js +22 -4
  37. package/package.json +1 -1
  38. package/templates/skills/assess/SKILL.md +3 -0
  39. package/templates/skills/clean/SKILL.md +3 -0
  40. package/templates/skills/docs/SKILL.md +3 -0
  41. package/templates/skills/exec/SKILL.md +3 -0
  42. package/templates/skills/fullsolve/SKILL.md +3 -0
  43. package/templates/skills/improve/SKILL.md +4 -1
  44. package/templates/skills/loop/SKILL.md +3 -0
  45. package/templates/skills/merger/SKILL.md +3 -0
  46. package/templates/skills/qa/SKILL.md +3 -0
  47. package/templates/skills/reflect/SKILL.md +3 -0
  48. package/templates/skills/security-review/SKILL.md +3 -0
  49. package/templates/skills/setup/SKILL.md +3 -0
  50. package/templates/skills/solve/SKILL.md +3 -0
  51. package/templates/skills/spec/SKILL.md +3 -0
  52. package/templates/skills/test/SKILL.md +3 -0
  53. package/templates/skills/testgen/SKILL.md +3 -0
  54. package/templates/skills/verify/SKILL.md +3 -0
@@ -5,13 +5,31 @@
5
5
  * status (failed / passed) overrides the rotation color where applicable.
6
6
  * Respects `NO_COLOR` automatically via `ink`/`chalk`.
7
7
  */
8
+ /**
9
+ * Sequant brand accents, sourced from sequant-landing `src/styles/tokens.css`:
10
+ * - `BRAND_ORANGE` is the primary brand color (`--color-primary` dark mode).
11
+ * - `BRAND_GREEN` is the accent/success green (`--color-accent`).
12
+ *
13
+ * Used to brand the two color signals that matter most at a glance — the
14
+ * live/active phase and success — while issue-distinction (border rotation),
15
+ * failure (red), and dividers (gray) stay on robust named ANSI colors.
16
+ *
17
+ * Ink/chalk auto-downsamples hex to the nearest ANSI color on terminals
18
+ * without truecolor, and `NO_COLOR` still strips all color, so these degrade
19
+ * gracefully without a manual capability check.
20
+ */
21
+ export const BRAND_ORANGE = "#FF8012";
22
+ export const BRAND_GREEN = "#10b981";
8
23
  /** Border-color palette rotated by issue start order. */
9
24
  export const BORDER_ROTATION = ["cyan", "magenta", "blue", "yellow"];
10
25
  /** Gray used for horizontal dividers inside each box. */
11
26
  export const DIVIDER_COLOR = "gray";
12
- /** Green used for the rolled-up `✔ N done` summary line (#699, parity with the
27
+ /** Brand orange for the live/active phase spinner the one element the eye
28
+ * tracks. Border rotation still distinguishes concurrent issues. */
29
+ export const ACTIVE_PHASE_COLOR = BRAND_ORANGE;
30
+ /** Brand green for the rolled-up `✔ N done` summary line (#699, parity with the
13
31
  * plain renderer's #624 rollup). */
14
- export const ROLLUP_COLOR = "green";
32
+ export const ROLLUP_COLOR = BRAND_GREEN;
15
33
  /**
16
34
  * Pick the border color for an issue.
17
35
  * Failed / passed states win over rotation; otherwise rotate by slot.
@@ -20,7 +38,7 @@ export function borderColorForIssue(status, slot) {
20
38
  if (status === "failed")
21
39
  return "red";
22
40
  if (status === "passed")
23
- return "green";
41
+ return BRAND_GREEN;
24
42
  const idx = ((slot % BORDER_ROTATION.length) + BORDER_ROTATION.length) %
25
43
  BORDER_ROTATION.length;
26
44
  return BORDER_ROTATION[idx];
@@ -48,7 +66,7 @@ export const SPINNER_FRAMES = [
48
66
  /** Color for a phase glyph based on its status. Active phase uses border color. */
49
67
  export function phaseStatusColor(status) {
50
68
  if (status === "done")
51
- return "green";
69
+ return BRAND_GREEN;
52
70
  if (status === "failed")
53
71
  return "red";
54
72
  return "gray";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sequant",
3
- "version": "2.6.0",
3
+ "version": "2.6.2",
4
4
  "description": "AI coding agent orchestrator — resolve GitHub issues end-to-end with isolated git worktrees, quality gates, and an MCP server. Works with Claude Code or Aider.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -13,6 +13,9 @@ allowed-tools:
13
13
  - Bash(gh *)
14
14
  ---
15
15
 
16
+ <!-- sequant:local-override -->
17
+ > **Local overrides (read this first).** Before following any instruction below, check whether `.claude/.local/skills/assess/overrides.md` exists. If it does, read it and treat its contents as authoritative: its instructions take precedence over anything in this skill they conflict with. This is the supported way to tailor `/assess` without forking it — `overrides.md` lives under `.claude/.local/`, which `sequant update` and `sync` never overwrite.
18
+
16
19
  # Unified Issue Assessment & Triage
17
20
 
18
21
  You are the "Assessment Agent" for the current repository.
@@ -27,6 +27,9 @@ allowed-tools:
27
27
  - Grep
28
28
  ---
29
29
 
30
+ <!-- sequant:local-override -->
31
+ > **Local overrides (read this first).** Before following any instruction below, check whether `.claude/.local/skills/clean/overrides.md` exists. If it does, read it and treat its contents as authoritative: its instructions take precedence over anything in this skill they conflict with. This is the supported way to tailor `/clean` without forking it — `overrides.md` lives under `.claude/.local/`, which `sequant update` and `sync` never overwrite.
32
+
30
33
  # Repository Cleanup Command
31
34
 
32
35
  Comprehensive, safe repository cleanup that archives stale files, removes artifacts, and commits changes.
@@ -18,6 +18,9 @@ allowed-tools:
18
18
  - Bash(gh pr diff:*)
19
19
  ---
20
20
 
21
+ <!-- sequant:local-override -->
22
+ > **Local overrides (read this first).** Before following any instruction below, check whether `.claude/.local/skills/docs/overrides.md` exists. If it does, read it and treat its contents as authoritative: its instructions take precedence over anything in this skill they conflict with. This is the supported way to tailor `/docs` without forking it — `overrides.md` lives under `.claude/.local/`, which `sequant update` and `sync` never overwrite.
23
+
21
24
  # Documentation Generator
22
25
 
23
26
  You are the Phase 4 "Documentation Agent" for the current repository.
@@ -43,6 +43,9 @@ allowed-tools:
43
43
  - TodoWrite
44
44
  ---
45
45
 
46
+ <!-- sequant:local-override -->
47
+ > **Local overrides (read this first).** Before following any instruction below, check whether `.claude/.local/skills/exec/overrides.md` exists. If it does, read it and treat its contents as authoritative: its instructions take precedence over anything in this skill they conflict with. This is the supported way to tailor `/exec` without forking it — `overrides.md` lives under `.claude/.local/`, which `sequant update` and `sync` never overwrite.
48
+
46
49
  # Implementation Command
47
50
 
48
51
  You are the Phase 2 "Implementation Agent" for the current repository.
@@ -39,6 +39,9 @@ allowed-tools:
39
39
  - Bash(./scripts/list-worktrees.sh:*)
40
40
  ---
41
41
 
42
+ <!-- sequant:local-override -->
43
+ > **Local overrides (read this first).** Before following any instruction below, check whether `.claude/.local/skills/fullsolve/overrides.md` exists. If it does, read it and treat its contents as authoritative: its instructions take precedence over anything in this skill they conflict with. This is the supported way to tailor `/fullsolve` without forking it — `overrides.md` lives under `.claude/.local/`, which `sequant update` and `sync` never overwrite.
44
+
42
45
  # Full Solve Command
43
46
 
44
47
  You are the "Full Solve Agent" for the current repository.
@@ -16,6 +16,9 @@ allowed-tools:
16
16
  - AskUserQuestion
17
17
  ---
18
18
 
19
+ <!-- sequant:local-override -->
20
+ > **Local overrides (read this first).** Before following any instruction below, check whether `.claude/.local/skills/improve/overrides.md` exists. If it does, read it and treat its contents as authoritative: its instructions take precedence over anything in this skill they conflict with. This is the supported way to tailor `/improve` without forking it — `overrides.md` lives under `.claude/.local/`, which `sequant update` and `sync` never overwrite.
21
+
19
22
  # Improve Command
20
23
 
21
24
  You are the "Improvement Agent" for the current repository.
@@ -665,4 +668,4 @@ Error: Path `src/nonexistent/` not found.
665
668
  - [ ] **Recommendations** - Tips for running quick wins vs larger refactors
666
669
 
667
670
  **DO NOT proceed to issue creation without user selection.**
668
- **DO NOT respond until all items are verified.**
671
+ **DO NOT respond until all items are verified.**
@@ -25,6 +25,9 @@ allowed-tools:
25
25
  - Bash(git status:*)
26
26
  ---
27
27
 
28
+ <!-- sequant:local-override -->
29
+ > **Local overrides (read this first).** Before following any instruction below, check whether `.claude/.local/skills/loop/overrides.md` exists. If it does, read it and treat its contents as authoritative: its instructions take precedence over anything in this skill they conflict with. This is the supported way to tailor `/loop` without forking it — `overrides.md` lives under `.claude/.local/`, which `sequant update` and `sync` never overwrite.
30
+
28
31
  # Quality Loop Command
29
32
 
30
33
  You are the "Quality Loop Agent" for the current repository.
@@ -16,6 +16,9 @@ allowed-tools:
16
16
  - Glob
17
17
  ---
18
18
 
19
+ <!-- sequant:local-override -->
20
+ > **Local overrides (read this first).** Before following any instruction below, check whether `.claude/.local/skills/merger/overrides.md` exists. If it does, read it and treat its contents as authoritative: its instructions take precedence over anything in this skill they conflict with. This is the supported way to tailor `/merger` without forking it — `overrides.md` lives under `.claude/.local/`, which `sequant update` and `sync` never overwrite.
21
+
19
22
  # Merger Skill
20
23
 
21
24
  You are the "Merger Agent" for handling post-QA integration of completed worktrees.
@@ -24,6 +24,9 @@ allowed-tools:
24
24
  - AgentOutputTool
25
25
  ---
26
26
 
27
+ <!-- sequant:local-override -->
28
+ > **Local overrides (read this first).** Before following any instruction below, check whether `.claude/.local/skills/qa/overrides.md` exists. If it does, read it and treat its contents as authoritative: its instructions take precedence over anything in this skill they conflict with. This is the supported way to tailor `/qa` without forking it — `overrides.md` lives under `.claude/.local/`, which `sequant update` and `sync` never overwrite.
29
+
27
30
  # QA & Code Review
28
31
 
29
32
  You are the Phase 3 "QA & Code Review Agent" for the current repository.
@@ -12,6 +12,9 @@ allowed-tools:
12
12
  - Grep
13
13
  ---
14
14
 
15
+ <!-- sequant:local-override -->
16
+ > **Local overrides (read this first).** Before following any instruction below, check whether `.claude/.local/skills/reflect/overrides.md` exists. If it does, read it and treat its contents as authoritative: its instructions take precedence over anything in this skill they conflict with. This is the supported way to tailor `/reflect` without forking it — `overrides.md` lives under `.claude/.local/`, which `sequant update` and `sync` never overwrite.
17
+
15
18
  # Reflection Agent
16
19
 
17
20
  You are the "Reflection Agent" for the current repository.
@@ -17,6 +17,9 @@ allowed-tools:
17
17
  - Bash(gh issue comment:*)
18
18
  ---
19
19
 
20
+ <!-- sequant:local-override -->
21
+ > **Local overrides (read this first).** Before following any instruction below, check whether `.claude/.local/skills/security-review/overrides.md` exists. If it does, read it and treat its contents as authoritative: its instructions take precedence over anything in this skill they conflict with. This is the supported way to tailor `/security-review` without forking it — `overrides.md` lives under `.claude/.local/`, which `sequant update` and `sync` never overwrite.
22
+
20
23
  # Security Review Command
21
24
 
22
25
  You are the Security Review Agent for the current repository.
@@ -30,6 +30,9 @@ allowed-tools:
30
30
  - Bash(curl:*)
31
31
  ---
32
32
 
33
+ <!-- sequant:local-override -->
34
+ > **Local overrides (read this first).** Before following any instruction below, check whether `.claude/.local/skills/setup/overrides.md` exists. If it does, read it and treat its contents as authoritative: its instructions take precedence over anything in this skill they conflict with. This is the supported way to tailor `/setup` without forking it — `overrides.md` lives under `.claude/.local/`, which `sequant update` and `sync` never overwrite.
35
+
33
36
  # Sequant Setup
34
37
 
35
38
  Initialize Sequant workflow system in your current project.
@@ -13,6 +13,9 @@ allowed-tools:
13
13
  - Bash(gh *)
14
14
  ---
15
15
 
16
+ <!-- sequant:local-override -->
17
+ > **Local overrides (read this first).** Before following any instruction below, check whether `.claude/.local/skills/solve/overrides.md` exists. If it does, read it and treat its contents as authoritative: its instructions take precedence over anything in this skill they conflict with. This is the supported way to tailor `/solve` without forking it — `overrides.md` lives under `.claude/.local/`, which `sequant update` and `sync` never overwrite.
18
+
16
19
  # /solve — Deprecated Alias for /assess
17
20
 
18
21
  **This command has been merged into `/assess`.** Use `/assess` instead.
@@ -17,6 +17,9 @@ allowed-tools:
17
17
  - AgentOutputTool
18
18
  ---
19
19
 
20
+ <!-- sequant:local-override -->
21
+ > **Local overrides (read this first).** Before following any instruction below, check whether `.claude/.local/skills/spec/overrides.md` exists. If it does, read it and treat its contents as authoritative: its instructions take precedence over anything in this skill they conflict with. This is the supported way to tailor `/spec` without forking it — `overrides.md` lives under `.claude/.local/`, which `sequant update` and `sync` never overwrite.
22
+
20
23
  # Planning Agent
21
24
 
22
25
  Phase 1 "Planning Agent." Understands the issue and AC, reviews or synthesizes a plan, identifies gaps and risks, and drafts a GitHub issue comment.
@@ -19,6 +19,9 @@ allowed-tools:
19
19
  - Bash(npx tsx:*)
20
20
  ---
21
21
 
22
+ <!-- sequant:local-override -->
23
+ > **Local overrides (read this first).** Before following any instruction below, check whether `.claude/.local/skills/test/overrides.md` exists. If it does, read it and treat its contents as authoritative: its instructions take precedence over anything in this skill they conflict with. This is the supported way to tailor `/test` without forking it — `overrides.md` lives under `.claude/.local/`, which `sequant update` and `sync` never overwrite.
24
+
22
25
  # Browser Testing Command
23
26
 
24
27
  You are the "Testing Agent" for the current repository.
@@ -20,6 +20,9 @@ allowed-tools:
20
20
  - Agent(sequant-testgen)
21
21
  ---
22
22
 
23
+ <!-- sequant:local-override -->
24
+ > **Local overrides (read this first).** Before following any instruction below, check whether `.claude/.local/skills/testgen/overrides.md` exists. If it does, read it and treat its contents as authoritative: its instructions take precedence over anything in this skill they conflict with. This is the supported way to tailor `/testgen` without forking it — `overrides.md` lives under `.claude/.local/`, which `sequant update` and `sync` never overwrite.
25
+
23
26
  # Test Generation Command
24
27
 
25
28
  You are the "Test Generation Agent" for the current repository.
@@ -15,6 +15,9 @@ allowed-tools:
15
15
  - Bash(gh issue comment:*)
16
16
  ---
17
17
 
18
+ <!-- sequant:local-override -->
19
+ > **Local overrides (read this first).** Before following any instruction below, check whether `.claude/.local/skills/verify/overrides.md` exists. If it does, read it and treat its contents as authoritative: its instructions take precedence over anything in this skill they conflict with. This is the supported way to tailor `/verify` without forking it — `overrides.md` lives under `.claude/.local/`, which `sequant update` and `sync` never overwrite.
20
+
18
21
  # Execution Verification
19
22
 
20
23
  You are the "Execution Verification Agent" for the current repository.