@trim21/personal-pi-extensions 0.0.189 → 0.0.190

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/package.json +1 -1
  2. package/src/todowrite.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trim21/personal-pi-extensions",
3
- "version": "0.0.189",
3
+ "version": "0.0.190",
4
4
  "type": "module",
5
5
  "description": "Custom pi coding-agent extensions: bwrap sandbox, workspace guard, opencode edit, and more",
6
6
  "keywords": [
package/src/todowrite.ts CHANGED
@@ -114,7 +114,7 @@ export function serializeTodos(todos: readonly TodoInfo[]): string {
114
114
 
115
115
  const STATUS_MARK: Record<TodoStatus, string> = {
116
116
  pending: " ",
117
- in_progress: ">",
117
+ in_progress: " ",
118
118
  completed: "x",
119
119
  cancelled: "-",
120
120
  };