@cwim/kanban 1.1.8 → 1.1.9

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 +0 -27
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -67,33 +67,6 @@ Use the cwim-kanban MCP to track all work in this project.
67
67
  4. **Finishing**: Move to `done` and append a summary note
68
68
  5. **Blocked**: Move to `blocked` with a note explaining why
69
69
 
70
- ### Example
71
- ```
72
- // Check if we have existing context
73
- task_recall({ context: "refactoring auth middleware" })
74
-
75
- // Create or update task
76
- task_create({
77
- title: "Refactor auth middleware",
78
- description: "Extract JWT validation into separate module",
79
- status: "in-progress",
80
- tags: ["refactor", "auth"]
81
- })
82
-
83
- // Append progress notes
84
- task_append_note({
85
- id: "tf-abc123",
86
- note: "Discovered edge case with refresh tokens"
87
- })
88
-
89
- // Mark complete
90
- task_move({ id: "tf-abc123", status: "done" })
91
- task_append_note({
92
- id: "tf-abc123",
93
- note: "Completed: Extracted JWT validation, all tests passing"
94
- })
95
- ```
96
-
97
70
  ### Rules
98
71
  - Always check for existing tasks before creating new ones
99
72
  - Use tags consistently (e.g., "bug", "feature", "refactor", "docs")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cwim/kanban",
3
- "version": "1.1.8",
3
+ "version": "1.1.9",
4
4
  "description": "Minimal Kanban task tracking with MCP integration for Claude Code",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",