maxsimcli 5.0.1 → 5.0.3

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 (39) hide show
  1. package/dist/assets/CHANGELOG.md +15 -0
  2. package/dist/assets/hooks/maxsim-sync-reminder.cjs +4 -77
  3. package/dist/assets/hooks/maxsim-sync-reminder.cjs.map +1 -1
  4. package/dist/assets/templates/agents/AGENTS.md +9 -8
  5. package/dist/assets/templates/agents/executor.md +1 -1
  6. package/dist/assets/templates/agents/planner.md +1 -1
  7. package/dist/assets/templates/agents/verifier.md +1 -1
  8. package/dist/assets/templates/commands/maxsim/execute.md +3 -3
  9. package/dist/assets/templates/commands/maxsim/go.md +2 -2
  10. package/dist/assets/templates/commands/maxsim/help.md +2 -2
  11. package/dist/assets/templates/commands/maxsim/init.md +7 -7
  12. package/dist/assets/templates/commands/maxsim/plan.md +3 -3
  13. package/dist/assets/templates/commands/maxsim/progress.md +2 -2
  14. package/dist/assets/templates/commands/maxsim/quick.md +2 -2
  15. package/dist/assets/templates/commands/maxsim/settings.md +2 -2
  16. package/dist/assets/templates/references/model-profile-resolution.md +1 -1
  17. package/dist/assets/templates/references/thinking-partner.md +1 -1
  18. package/dist/assets/templates/references/verification-patterns.md +1 -1
  19. package/dist/assets/templates/skills/github-tools-guide/SKILL.md +1 -1
  20. package/dist/assets/templates/templates/codebase/structure.md +1 -1
  21. package/dist/assets/templates/templates/phase-prompt.md +7 -7
  22. package/dist/assets/templates/templates/state.md +2 -3
  23. package/dist/assets/templates/workflows/discuss-phase.md +4 -4
  24. package/dist/assets/templates/workflows/execute-plan.md +1 -1
  25. package/dist/assets/templates/workflows/execute.md +5 -5
  26. package/dist/assets/templates/workflows/init-existing.md +2 -2
  27. package/dist/assets/templates/workflows/init.md +8 -8
  28. package/dist/assets/templates/workflows/new-project.md +2 -2
  29. package/dist/assets/templates/workflows/plan-discuss.md +1 -1
  30. package/dist/assets/templates/workflows/plan.md +6 -6
  31. package/dist/assets/templates/workflows/quick.md +8 -36
  32. package/dist/assets/templates/workflows/research-phase.md +2 -2
  33. package/dist/assets/templates/workflows/verify-phase.md +2 -2
  34. package/dist/assets/templates/workflows/verify-work.md +2 -2
  35. package/dist/cli.cjs +13601 -13801
  36. package/dist/cli.cjs.map +1 -1
  37. package/dist/core-D5zUr9cb.cjs.map +1 -1
  38. package/dist/skills-CjFWZIGM.cjs.map +1 -1
  39. package/package.json +1 -1
@@ -588,10 +588,9 @@ Ready for next task: /maxsim:quick
588
588
 
589
589
  ```bash
590
590
  INIT=$(node ~/.claude/maxsim/bin/maxsim-tools.cjs init todos)
591
- mkdir -p .planning/todos/pending .planning/todos/done
592
591
  ```
593
592
 
594
- Extract from init JSON: `todo_count`, `todos`, `pending_dir`, `date`, `timestamp`, `github_ready`.
593
+ Extract from init JSON: `todo_count`, `todos`, `date`, `timestamp`, `github_ready`.
595
594
 
596
595
  ---
597
596
 
@@ -646,38 +645,14 @@ If user provided a description:
646
645
 
647
646
  1. Parse priority from description (look for HIGH/MEDIUM/LOW keywords, default MEDIUM)
648
647
  2. Infer area from file paths mentioned or conversation context (default "general")
649
- 3. Generate slug: `slug=$(node ~/.claude/maxsim/bin/maxsim-tools.cjs generate-slug "$TITLE" --raw)`
650
- 4. Create todo file at `.planning/todos/pending/${date}-${slug}.md`:
651
-
652
- ```markdown
653
- ---
654
- created: [timestamp]
655
- title: [title]
656
- area: [area]
657
- priority: [HIGH/MEDIUM/LOW]
658
- mode: quick
659
- files: []
660
- ---
661
-
662
- ## Problem
663
-
664
- [description - enough context for future Claude to understand]
665
-
666
- ## Solution
667
-
668
- TBD
669
- ```
670
-
671
- 5. GitHub Issue creation (primary):
648
+ 3. Create GitHub Issue (primary action):
672
649
  - Run `github add-todo` with title, priority, area, and description to create a tracked GitHub Issue (label: "todo")
673
- - If GitHub is unavailable, fall back to local file only and warn user: "Todo saved locally. Run `/maxsim:init` to enable GitHub tracking."
650
+ - If GitHub is unavailable, warn user: "GitHub unavailable. Run `/maxsim:init` to enable GitHub tracking."
674
651
 
675
652
  ```bash
676
653
  node ~/.claude/maxsim/bin/maxsim-tools.cjs github add-todo --title "${TITLE}" --description "${DESCRIPTION}" --area "${AREA}"
677
654
  ```
678
- 6. Local file cache: also create the local todo file for offline access
679
- 7. Commit: `node ~/.claude/maxsim/bin/maxsim-tools.cjs commit "docs: capture todo - ${TITLE}" --files .planning/todos/pending/${date}-${slug}.md`
680
- 8. Confirm: "Saved: ${TITLE} (priority: ${PRIORITY}) — GitHub Issue #{number}"
655
+ 4. Confirm: "Saved: ${TITLE} (priority: ${PRIORITY}) GitHub Issue #{number}"
681
656
 
682
657
  Exit after confirm.
683
658
 
@@ -688,14 +663,12 @@ Exit after confirm.
688
663
  If user references an existing todo to complete:
689
664
 
690
665
  1. Parse identifier (number from list, or title fragment)
691
- 2. Close the corresponding GitHub Issue (primary): run `github close-issue` with the todo's issue number
666
+ 2. Close the corresponding GitHub Issue: run `github close-issue` with the todo's issue number
692
667
 
693
668
  ```bash
694
669
  node ~/.claude/maxsim/bin/maxsim-tools.cjs github close-issue N
695
670
  ```
696
- 3. Move local cache file: `mv ".planning/todos/pending/[filename]" ".planning/todos/done/"`
697
- 4. Commit: `node ~/.claude/maxsim/bin/maxsim-tools.cjs commit "docs: complete todo - ${TITLE}" --files .planning/todos/done/${filename}`
698
- 5. Confirm: "Completed: ${TITLE} — GitHub Issue closed"
671
+ 3. Confirm: "Completed: ${TITLE} GitHub Issue closed"
699
672
 
700
673
  Exit after confirm.
701
674
 
@@ -753,8 +726,7 @@ Exit after display.
753
726
  **Todo Mode:**
754
727
  - [ ] `--todo` flag or trigger words detected
755
728
  - [ ] Todo action determined (list/capture/complete/triage)
756
- - [ ] (capture) Todo file created with valid frontmatter
757
- - [ ] (capture) Best-effort GitHub Issue creation attempted
758
- - [ ] (complete) Todo moved from pending to done
729
+ - [ ] (capture) GitHub Issue created with todo label
730
+ - [ ] (complete) GitHub Issue closed
759
731
  - [ ] (triage) Prioritized view with phase context shown
760
732
  </success_criteria>
@@ -8,14 +8,14 @@ Standalone research command. For most workflows, use `/maxsim:plan` which integr
8
8
 
9
9
  ## Step 0: Resolve Model Profile
10
10
 
11
- @./references/model-profile-resolution.md
11
+ @~/.claude/maxsim/references/model-profile-resolution.md
12
12
 
13
13
  Resolve model for:
14
14
  - `researcher`
15
15
 
16
16
  ## Step 1: Normalize and Validate Phase
17
17
 
18
- @./references/phase-argument-parsing.md
18
+ @~/.claude/maxsim/references/phase-argument-parsing.md
19
19
 
20
20
  ```bash
21
21
  PHASE_INFO=$(node ~/.claude/maxsim/bin/maxsim-tools.cjs roadmap get-phase "${PHASE}")
@@ -24,8 +24,8 @@ Then verify each level against the actual codebase.
24
24
  </core_principle>
25
25
 
26
26
  <required_reading>
27
- @./references/verification-patterns.md
28
- @./templates/verification-report.md
27
+ @~/.claude/maxsim/references/verification-patterns.md
28
+ @~/.claude/maxsim/templates/verification-report.md
29
29
  </required_reading>
30
30
 
31
31
  <process>
@@ -18,7 +18,7 @@ No Pass/Fail buttons. No severity questions. Just: "Here's what should happen. D
18
18
  </required_reading>
19
19
 
20
20
  <template>
21
- @./templates/UAT.md
21
+ @~/.claude/maxsim/templates/UAT.md
22
22
  </template>
23
23
 
24
24
  <process>
@@ -337,7 +337,7 @@ Spawning parallel debug agents to investigate each issue.
337
337
  ```
338
338
 
339
339
  - Load diagnose-issues workflow
340
- - Follow @./workflows/diagnose-issues.md
340
+ - Follow @~/.claude/maxsim/workflows/diagnose-issues.md
341
341
  - Spawn parallel debug agents for each issue
342
342
  - Collect root causes
343
343
  - Update UAT.md with root causes