flow-cc 0.8.1 → 0.8.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/CHANGELOG.md CHANGED
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.8.2] - 2026-02-14
9
+
10
+ ### Fixed
11
+ - `/flow:done` now moves Linear **project** to Completed when all milestones are done (previously only moved issues to In Review)
12
+ - `/flow:triage` now always creates a Linear project for project-sized items when MCP is available (was "optionally", causing skips)
13
+
8
14
  ## [0.8.1] - 2026-02-14
9
15
 
10
16
  ### Changed
package/VERSION CHANGED
@@ -1 +1 @@
1
- 0.8.1
1
+ 0.8.2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flow-cc",
3
- "version": "0.8.1",
3
+ "version": "0.8.2",
4
4
  "description": "Structured workflow system for Claude Code — spec interviews, agent-team execution, session handoffs, compounding knowledge",
5
5
  "author": "Troy Hoffman",
6
6
  "license": "MIT",
@@ -152,6 +152,10 @@ Runs when 5.25 created a PR (or one already exists for this branch).
152
152
  - Move all "In Progress" issues to "In Review" via `mcp__linear__update_issue`
153
153
  - Print: "Linear: [N] issues → In Review (PR open)"
154
154
  - If no PR: issues stay In Progress (normal mid-project session end)
155
+ - **If project complete** (all milestones done):
156
+ - Find project via `mcp__linear__list_projects`, match by name from PRD `**Linear Project:**` field
157
+ - Move project to Completed: `mcp__linear__update_project` with `state: "Completed"`
158
+ - Print: "Linear: project → Completed"
155
159
  - Post progress comment on any branch-linked Linear issue
156
160
 
157
161
  ### 6. Route Next Action
@@ -184,7 +188,7 @@ Session complete.
184
188
  - Committed: [SHA | nothing to commit]
185
189
  - PR: [created #N | skipped (milestones remain)]
186
190
  - Review: [N comments addressed | pending | skipped]
187
- - Linear: [N issues → In Review | skipped]
191
+ - Linear: [N issues → In Review, project → Completed | N issues → In Review | skipped]
188
192
 
189
193
  Next: [routing from Step 6]
190
194
  ```
@@ -76,7 +76,8 @@ For approved items:
76
76
  - If no active project exists (all "Complete" or none):
77
77
  - Set first new project status to "Pending — needs `/flow:spec`"
78
78
  - Update STATE.md to point to new project as current
79
- - Optionally create a Linear project (if MCP available)
79
+ - If Linear MCP available: create project via `mcp__linear__create_project` (team: "Monument Square", state: "planned"). Print: "Linear: project '[name]' created"
80
+ - If MCP unavailable: print project details for manual creation
80
81
 
81
82
  **Lessons:**
82
83
  - Append to `tasks/lessons.md` as one-liners: `- **[topic]** The rule`