@cwim/kanban 1.1.15 → 1.1.16

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/README.md +1 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -70,6 +70,7 @@ Use the cwim-kanban MCP to track all work in this project.
70
70
  ### Rules
71
71
  - Always check for existing tasks before creating new ones
72
72
  - **One task per unit of work** - If a request involves multiple distinct steps (e.g., "fix auth and update docs"), create separate tasks for each step instead of one combined task
73
+ - **Always verify the active session before creating tasks** - Call `session_list` first, confirm the active session matches the current project, and call `session_switch` if it doesn't
73
74
  - Use tags consistently (e.g., "bug", "feature", "refactor", "docs")
74
75
  - Append notes liberally - they build context for future sessions
75
76
  - Move tasks to "blocked" immediately when stuck, with explanation
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cwim/kanban",
3
- "version": "1.1.15",
3
+ "version": "1.1.16",
4
4
  "description": "Minimal Kanban task tracking with MCP integration for Claude Code",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",